简体   繁体   中英

How to solve these coupled differential equations in Matlab?

I have three partial differential equations (PDEs) and an analytical solution for a variable as shown. Using these equations I want to solve for \\phi(x,y,t), p(x,y,t), C_{a}(x,y,t) and C_{b}(x,y,t) ie in terms of space and time.

I know there is a function pdepe( ) in Matlab to solve initial-boundary value problems for parabolic-elliptic PDEs in 1-D. I would like to know how this function or some other in Matlab can be used to solve the problem described below which is 2-D and coupled.

PROBLEM:

Following two equations represent PDEs for two species a and b, respectively: 在此输入图像描述

Where D_{h} and q are given as:

在此输入图像描述

在此输入图像描述

Here, R_{a}=R_{b}=R, where R is given as:

在此输入图像描述

Finally, the last equation is given as:

在此输入图像描述

INITIAL AND BOUNDARY CONDITIONS:

在此输入图像描述

Total domain size is 10 cm x 5 cm and the width of the y-shaped subdomain is 0.5 cm. This subdomain has an initial \\phi of 0.50 while in the surrounding matrix \\phi= 0.26. Constant p of 1 Pa and 0 Pa are maintained at boundaries (1) and (2) respectively, corresponding to a gradient of approximately 10^-3 mm^-1. The p on boundaries (3) and (4) are determined by linear gradients between boundaries (1) and (2). Constant C of C_{a} = 2 mol m^-3 and C_{b} = 0.2302 mol m^-3 are maintained at boundary (3), while the concentrations at boundary (4) are set at C_{a} = 1 mol m^-3 and C_{b} = 0.4603 mol m^-3. The concentrations at boundary (1) are determined by constant gradients between boundaries (3) and (4), while an advective flux boundary condition $$(\\frac{\\partial C}{\\partial x} = 0)$$ is set at the outlet at (2).

This should be possible to implement in the FEATool Matlab FEM Toolbox. As 2D (as well as 1D and 3D) convection-diffusion-reaction PDE equations are already pre-defined and easy to couple, you would only need to input your diffusion, convection, and source terms. Although your exact problem isn't available as a tutorial , some of the other convection-diffusion example models might be a good starting point. (Also sorry for not being able to comment.)

Do you have the PDE toolbox?

If yes: pdetool appears to be the way to go (I don't have it, so I can't verify or experiment with any of it -- you'll have to do some experimenting there yourself).

If no: you might find this or this worth investigating. These are basically implementations of FDM for the 2D wave equations. You can take their kernels and transform them into a means to solve for coupled equations.

Perhaps easier: take a look here ; it's a pretty decent FEM toolkit which can be used with Matlab.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM