plot the deformed shape
이전 댓글 표시
Dear all,
I am trying to plot a deformed shape of a 3d object using pdeplot3d, inputing a structured array consisting of ux,uy,uz.
g = pdeplot3D(model,'ColorMapData',structuralresults.Displacement.uy)
The function plots the undeformed shape of the object, however it seems to ignore the 'Deformation' input.
Any ideas of how to deal with this?
채택된 답변
추가 답변 (1개)
Balázs Dura-Kovács
2022년 6월 19일
I had a similar issue with pdeplot3D eithor not plotting deformations or plotting unrealistic deformations. Turned out that the issue was that I wasn't using the DeformationScaleFactor parameter, so Matlab just picked something automatically.
This is how to plot the deformed shape properly:
figure
pdeplot3D(model,"Deformation",structuralresults.Displacement,"DeformationScaleFactor",1)
axis equal
axis on
카테고리
도움말 센터 및 File Exchange에서 Structural Mechanics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!