How to Couple Advection Diffusion Reaction PDEs with FiPy
问题 I tried to solve 1D coupled PDEs for an advection-diffusion-reaction problem with the Matlab function Pdepe (https://www.mathworks.com/help/matlab/ref/pdepe.html). This function is not working properly in my case of a high advection term as compared to the diffusion term. Therefore, I searched and found this option of using the Python library FiPy to solve my PDEs system. My initial conditions are u1=1 for 4*L/10 My coupled equations are of the following form: du1/dt = d/dx(D1 * du1/dx) + g *