Skip to content

Latest commit

 

History

History
78 lines (51 loc) · 5.19 KB

File metadata and controls

78 lines (51 loc) · 5.19 KB
layout about
title About
permalink /about/
thumbnail /assets/images/question-marks.webp
extract What is VisualPDE, where did it come from and who is behind it?

Getting started

You can explore the examples, create simulations and share them with a URL, or even copy the code on GitHub to design your own version of VisualPDE. Check out our detailed documentation to dive under the hood.

If you use VisualPDE in your research, we'd be grateful if you could cite our article about the context, design, and applications of VisualPDE in the Bulletin of Mathematical Biology.

Is it free?

Everyone is free to use VisualPDE. For specifics of industrial use, see our licence.

VisualPDE in the wild

VisualPDE is used around the world to teach, engage and interact with mathematics and science. Here are some examples of VisualPDE in action:

The team

VisualPDE is a team effort, written and maintained by Benjamin Walker, Adam Townsend and Andrew Krause. We are grateful for the contributions of Alex Chudasama and Xietao Wang Lin.

<script type="text/javascript"> async function fetchCitingArticlesCount() { const response = await fetch('https://api.semanticscholar.org/graph/v1/paper/10.1007/s11538-023-01218-4?fields=citationCount'); const data = await response.json(); if (!response.ok) { console.error('Error fetching citation count:', data); return 'N/A'; } return data.citationCount; } fetchCitingArticlesCount().then(count => { if (count === 'N/A') return; document.getElementById('citing-articles').textContent = count; }); </script>