How to Plot Stress Contour??
이전 댓글 표시
I am a beginner , My doubt is that I have to Plot Stress Contour of tapered cantilever beam analysed using FEA now I have the value of element Stresses like sigmax , sigmay , tauxy ? How to proceed ?? Please Help..
댓글 수: 11
darova
2020년 6월 29일
Can you show/attach the data?
Shubhang Jain
2020년 6월 29일
편집: darova
2020년 6월 29일
darova
2020년 6월 29일
DO you have deformations or stresses in each point?
Shubhang Jain
2020년 6월 29일
darova
2020년 6월 30일
Can you show what elements are?

Did you try patch?
Shubhang Jain
2020년 6월 30일
darova
2020년 6월 30일
did you try surf?
Shubhang Jain
2020년 6월 30일
darova
2020년 7월 1일
Can you explain what those values represent?
Here is an example using pcolor
[x,y] = meshgrid(-2:0.1:2);
stress = x.^2+y.^2;
pcolor(x,y,stress)
Shubhang Jain
2020년 7월 1일
답변 (1개)
darova
2020년 7월 1일
Reshape your data to create a matrix
stress = reshape(Sigma_X,6,3);
And use pcolor
[x,y] = meshgrid(1:3,1:6);
Sigma_X = 1.0e+03 * [-4299.57587958638 -3965.44553517593 -3204.63754334495 -2292.69609509300 -1230.97384069952 -654.515387137445 7.73070496506989e-12 8.64019966684282e-12 1.11413100967184e-11 1.02318153949454e-11 2.84217094304040e-12 -1.93267624126747e-12 4299.57587958640 3965.44553517595 3204.63754334497 2292.69609509302 1230.97384069952 654.515387137441];
Sigma_Y = [-321.901962451787 -171.276004860075 -78.8000793342068 -101.167806049306 -108.580704946648 -151.775909194735 -43.0911561819484 -52.5066078518920 -96.8460482931672 -92.9813362559606 -169.657107326625 -285.121579205828 235.719650087890 66.2627891562907 -114.892017252128 -84.7948664626148 -230.733509706602 -418.467249216922];
Tau_XY =[ -795.818460340878 -847.839977192489 -889.271783271534 -792.615142694200 -700.220084886960 -693.891956884487 -669.856459330285 -655.783844638485 -684.491978609799 -643.356643356871 -610.298792117163 -661.157024793497 -543.894458319692 -463.727712084480 -479.712173948064 -494.098144019542 -520.377499347365 -628.422092702508] ;
stress = reshape(Sigma_X,6,3);
pcolor(x,y,stress)
카테고리
도움말 센터 및 File Exchange에서 Stress and Strain에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

