I am not been able to wrire a suitable code to solve the equation for pde
2 次查看(过去 30 天)
显示 更早的评论
L (∂^4 u)/(∂z^4 )+M (∂^2 u)/(∂z^2 )-S (∂^4 u)/(∂z^2 ∂t^2 )-X (∂^3 u)/(∂z^2 ∂t)+c ∂u/∂t+m (∂^2 u)/(∂t^2 )+P (∂^3 u)/(∂t^3 )+Q (∂^4 u)/(∂t^4 )+k_f u =f(z,t)
0 个评论
回答(1 个)
Aman
2024-2-6
Hi Tapobrata,
I understand that you want to solve the mentioned PDE using MATLAB and want to know how to do it.
The PDE mentioned can be represented in MATLAB using the below code.
syms u(z,t) L M S X c m P Q k_f f(z, t);
pde = L*diff(u, z, 4) + M*diff(u, z, 2) - S*diff(diff(u,t,2),z,2) - X*diff(diff(u,t,1),z,3) + c*diff(u,t,1) + m*diff(u,t,2) + P*diff(u,t,3) + Q*diff(u,t,4) + k_f*u - f(z,t);
pretty(pde);
As the PDE contains high-order derivatives and mixed spatial-temporal terms, it would be difficult to find a solution for it, as in order to solve it, we need to have information on the initial condition, boundry condition, coefficients, and the function "f(z,t)". Once we have all this information, we can try to use the "pdepe" function to find the solution, but note that the "pdepe" function is limited to parabolic and elliptic PDEs in one spatial dimension and time. Refer to the following link to learn more about the "pdepe" function.
I hope it helps!
2 个评论
Aman
2024-2-9
移动:John D'Errico
2024-2-9
Could you please share what you have tried? Additionally, let me know what the expected output should be in that case.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Boundary Conditions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!