You are on page 1of 2

clc

X=[4 6 8 10 20 32];
umax=[1.458 0.498 0.302 0.297 0.125 0.046];
vmax=[1.605 0.399 0.268 0.174 0.165 0.016];
wmax=[-0.5383 -0.2141 -0.1242 -0.1213 -0.1214 -0.1215];
Ref=[-0.1145 -0.1145 -0.1145 -0.1145 -0.1145 -0.1145];
mmax=[0.853 0.645 0.500 0.499 0.209 0.110];

figure (1)
plot(X,umax,'r-*','linewidth',2);
hold on;
plot(X,vmax,'g','linewidth',3);
hold on;
grid on;
legend('umax(a^4.P)10','vmax(a^4.P)10')
xlabel('maillages')
ylabel('u,v')
title('VALEURS MAXIMALES DES DEPLACEMENTS')

figure(2)
%plot(X,m,'k','linewidth',2);
hold on;
grid on;
title('VALEURS MAXIMALES DES MOMENTS')
xlabel('maillages')
ylabel('m')

figure (3)
plot(X,wmax,'k','linewidth',4);
hold on;
plot(X,Ref,'r','linewidth',2);
hold on;
grid on;
legend('wmax(a^4.P)10','Ref(mm)')
xlabel('maillages')
ylabel('wmax')
title('VALEURS MAXIMALES DU DEPLACEMENT')

%plot(X,w,'k','linewidth',2);
%hold on;
%plot(X,Ref,'y','linewidth',2);
%hold on;
%grid on;
%hold on;
%xticks([4 6 8 10 20 32])
%xticklabels('4x4','6x6','8x8','10x10','20x20','32x32')

%plot(X,u,'r',X,v,'g');
% plot(X,Ref,'r',X,w,'g');

% plot(ma,m1c,'r',ma,m1v,'g');
%title('MOMENTS DANS LA PLAQUE POUR SOLLICITATION DE FLEXION SIMPLE-
COMPRESSION')

You might also like