In this project, we aim to solve transport equations using the Semi-Lagrangian implementing a scheme and analyze its convergence and accuracy compared to the exact solution. This project is supervised by Emmanuel Franck and Laurent Navoret from the French National Institute for Research in Computer Science and Control (INRIA) and the University of Strasbourg.
The primary goal of this project is to enhance the accuracy of the current resolution method by incorporating deep learning techniques while maintaining convergence properties. We will implement a Semi-Lagrangian scheme then we will apply deep interpolation techniques and compare the results with traditional methods.
We focus on solving the transport equation with a given velocity and initial condition.
The semi-Lagrangian method is a numerical technique that tracks fluid particles through time and space. We will use this scheme to approximate the solution by interpolating the values from the previous time step.
We implemented this scheme with the Lagrange interpolation and the Deep Lagrange interpolation and with the function:
We first calculated the solution using the lagrange interpolation operator on a small mesh with nx = 40, nt = 50, a=1 and we obtained:
And the error that increases at each time step:
Adding more points nx_bis= 100, nt_bis = 200, a_bis = 1 we obtained:
Now implementing the Deep Lagrange interpolator we obtained:
Here we can see that the solution u_deep is closer to our exact solution, because the error is relatively small:
Adding a small perturbation to our exact solution we get:
As expected the error has grown and our solution is less accurate:
For the different measurement of convergence we obtained:
Our findings demonstrate that the Semi-Lagrangian scheme combined with the deep interpolation operator shows promise in improving the accuracy of transport equation solutions. However, there is still further research to be done, with implementation of the deep Lagrange interpolation with PINNs to optimize the deep learning models and explore their full potential in solving more complex transport equations.