how to give value stress from excel give color in my mesh thin cylinder

1 view (last 30 days)
hello sir. can you help me how to give value stress in cylinder. i have data excel value stress.
clear all;clc ; close all;
a = readtable('nodes.xlsx');
b = readtable('element.xlsx');
coordinates = table2array(a);
nodes = table2array(b);
PlotMesh(coordinates,nodes,1);
hold on
T = readtable('valuestress.xlsx');
stress = table2array(T);
x = coordinates(:,1);
y = coordinates(:,2);
z = coordinates(:,3);

Answers (1)

KSSV
KSSV on 9 Jul 2022
Edited: KSSV on 9 Jul 2022
You have extracted the stress at the mid point of the element. You need to extract the stress values at every node.
warning off
A = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059920/valuestress.xlsx') ;
t = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059925/element.xlsx') ;
p = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059930/nodes.xlsx') ;
%
A = table2array(A) ;
p = table2array(p) ;
t = table2array(t) ;
patch('faces',t,'vertices',p,'facevertexcdata',p(:,3),'facecolor','interp','edgecolor','k') ;
view(3) % if A is of size 176x1, use A instead of p(:,3), you will get the required plot
  6 Comments
KSSV
KSSV on 10 Jul 2022
You can interpolate the elemental stress to nodes and then plot. This is suggested to be done in Ansys itself.
Any ways, I am doing the same in MATLAB.
clear all;
warning off
A = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059920/valuestress.xlsx') ;
t = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059925/element.xlsx') ;
p = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1059930/nodes.xlsx') ;
%
A = table2array(A) ;
p = table2array(p) ;
t = table2array(t) ;
x = p(:,1); y = p(:,2) ; z = p(:,3) ;
X = x(t') ; Y = y(t') ; Z = z(t') ;
mX = mean(X) ;
mY = mean(Y) ;
mZ = mean(Z) ;
F = scatteredInterpolant(mX',mY',mZ',A) ;
AA = F(X,Y,Z) ;
fill3(X,Y,Z,AA)

Sign in to comment.

Categories

Find more on Stress and Strain in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!