フィルターのクリア

Create pde as structural dynamic problem

6 ビュー (過去 30 日間)
Jorge Garcia Garcia
Jorge Garcia Garcia 2023 年 6 月 5 日
回答済み: Raghav 2023 年 8 月 4 日
Hello all again:
I have a system of PDEs described as follows:
syms pres
syms u1(x,y,t) u2(x,y,t)
pdeeq = [-laplacian(u1,[x y])+u2; D*laplacian(u2,[x y])+ mass*diff(u1,t,t)-pres];
symcoeffs = pdeCoefficients(pdeeq,[u1,u2],'Symbolic',true);
c2=symcoeffs.c;
And as I need to apply Craig-Bampton reduction method, I was thinking whether it could be possible to define the model as model = createpde("structural","transient-plainstress");
REading the documentation, I think I have understood that the analysis of structural PDE follows the formulas o Linear elacticity : −∇·σ=f.
In that expression the laplacian is not used, so I guess I cannot express my problem in terms that will allow me to use the command: createpde("structural","transient-plainstress");
Is there any way of being able to use that command?
Thanks very much

採用された回答

Raghav
Raghav 2023 年 8 月 4 日
Hi Jorge,
The “createpde” function in MATLAB is primarily used for solving linear elasticity problems in the context of structural mechanics. The equation you have provided, which involves the Laplacian operator, does not directly fit into the framework of linear elasticity.
To use the “createpde” function with the "structural" option, you would need to express your problem in terms of the linear elasticity equation, which is of the form:
·σ = f
This equation represents the balance of linear momentum, where σ is the stress tensor and f is the body force.
There are other alternative approaches you can consider for solving your system of PDEs like Finite Element Method.
Please refer to the below documentation:
Hope it helps,
Best Regards,
Raghav Bansal
MathWorks Technical Support

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeneral PDEs についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by