Create pde as structural dynamic problem
이전 댓글 표시
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
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Structural Mechanics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!