Вы находитесь на странице: 1из 19

ELEMENTOS FINITOS

MAESTRIA INGENIERIA ESTRUCTURAL Y SISMICA

ASIGNATURA: Elementos Finitos.

TAREA: Practica 3.

INSTRUCTOR: Ing. Nelson Lafontaine, PhD.

REALIZADO POR:

FECHA DE ENTREGA: 25 de Noviembre de 2017.

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

RESUMEN EJECUTIVO
Seccin
Aproximaciones cuadrticas.
Formulacin Isoparamtricas.
Prctica 2
REALIZAR LOS EJECICIOS 4 Y 5 DE LA PRACTICA 1 USANDO
FORMULACION ISOPARAMTRICA CON INTERPOLACION CUADRTICA

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

EJERCICIOS PRACTICA 3
EJERCICIO 1

EJERCICIO 2

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

RESULTADOS Y CONCLUSIONES
Ejercicio 1
2
+ 2 = (0 < < 1)
2

La lnea azul corresponde a la solucin exacta y la lnea verde a la aproximada.


Las lneas punteadas solo representan las funciones de formas fsicas.
Podemos observar, con este mtodo la aproximacin a los datos exactos es ms
preciso, debido que se observa valga la redundancia menos error que los otros
mtodos, al mismo tiempo verificamos cmo se suaviza la curva a la suavidad de la
solucin exacta, debido a la interpolacin cuadrtica. Y realizamos su comparativa
con los resultados de una interpolacin lineal (a la derecha), para el mismo ejercicio
con el mtodo de Galerkin, tambin discretizada con tres elementos de la tarea 1.
Dando como conclusin que el comportamiento es mucho mejor utilizando la
formulacin isoparamtrica con interpolacin cuadrtica.
U1 = 0
U2 = 0.1547
U3 = 0.2978
U4 = 0.4430
U5 = 0.6015
U6 = 0.7839
U7 = 1

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

Ejercicio 2
A lo mismo nos podremos referir con el segundo ejercicio.
2
2

2
+ 2 2= (0 < < 1)

U=

0.6612
1.2454
1.5117
1.6645
1.7837
1.8920
2.0000

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

RESUMEN TECNICO

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

EJERCICIO 1
2
+ 2 = (0 < < 1)
2

En la prctica 1 se haba determinado la forma dbil de la ecuacin, la cual


se introdujo en Matlab por parte enumerada por la secuencia en la misma.
1 1
1
(( ) 2) = |
0 0 0

SCRIPT en Matlab para resolver el ejercicio.


Script Prac3Ejerc4_3Elemento_Cuadrtica
EDITOR MATLAB:
% EJERCICIO 4 CON TRES ELEMENTOS
% e1=(0,1/6,1/3) , e2=(1/3,1/2,2/3) , e3=(2/3,5/6,1)
clc;
clear;

%% SOLUCION EXACTA DE LA ECUACION DIFERENCIAL


syms x Chi Du_dx u11 u12 u13 u21 u22 u23 u31 u32 u33

xii=0:0.001:1;
ua=dsolve('D2u+Du-2*u=x','u(0)=0,u(1)=1','x');
uap=double(subs(ua,x,xii));

%% FACTORES DE FORMAS EN FUNCION DE Chi (COORD. INTRINSECAS)


N1 = 0.5*Chi*(Chi-1);
N2 = (Chi+1)*(1-Chi);
N3 = 0.5*Chi*(Chi+1);

%% VALOR DE X
xi=0:1/6:1;

%% X EN FUNCION DE Chi
x_Chi1 = N1*xi(1) + N2*xi(2) + N3*xi(3);
x_Chi2 = N1*xi(3) + N2*xi(4) + N3*xi(5);
x_Chi3 = N1*xi(5) + N2*xi(6) + N3*xi(7);

%% DERIVADA DE Chi CON RESPECTO A x


dChi_dx1 = 2/(xi(3)-xi(1));
dChi_dx2 = 2/(xi(5)-xi(3));
dChi_dx3 = 2/(xi(7)-xi(5));
%% VALOR DE dx
dx1 = (xi(3)-xi(1))/2; %*dChi
dx2 = (xi(5)-xi(3))/2; %*dChi
dx3 = (xi(7)-xi(5))/2; %*dChi

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

%% FUNCION DE PESO
W = [N1 N2 N3]';

%% FUNCION DE DESPLAZAMIENTOS
u_Chi1 = N1*u11 + N2*u12 + N3*u13;
u_Chi2 = N1*u21 + N2*u22 + N3*u23;
u_Chi3 = N1*u31 + N2*u32 + N3*u33;

%% DERIVADA DE LA FUNCION DE PESO CON RESPECTO A x


dw_dx1 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx1;
dw_dx2 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx2;
dw_dx3 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx3;

%% DERIVADA DE LAS FUNCIONES DE PESOS CON RESPECTO A x


du_dx1 = dChi_dx1*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u11;u12;u13];
du_dx2 = dChi_dx2*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u21;u22;u23];
du_dx3 = dChi_dx3*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u31;u32;u33];

%% ECUACION DIFERENCIAL EN SU FORMA DEBIL


%% PRIMERA PARTE (INT((W-DW/DX)*DU/DX-2*W*U)*DX)
disp('SOLUCIN DE LA PRIMERA PARTE DE LA FORMA DEBIL DE LA ECUACIN')

I11 = int(((W-dw_dx1).*du_dx1-2.*W*u_Chi1)*dx1,Chi,-1,1)
I12 = int(((W-dw_dx2).*du_dx2-2.*W*u_Chi2)*dx2,Chi,-1,1)
I13 = int(((W-dw_dx3).*du_dx3-2.*W*u_Chi3)*dx3,Chi,-1,1)

%% TERCERA PARTE (INT(W*(2-X)DX))


disp('SOLUCIN DE LA SEGUNDA PARTE DE LA FORMA DEBIL DE LA ECUACIN')
I21 = int(W*x_Chi1*dx1,Chi,[-1;1])
I22 = int(W*x_Chi2*dx2,Chi,[-1;1])
I23 = int(W*x_Chi3*dx3,Chi,[-1;1])

%% TERCERA PARTE (W*DU/DX,-1,1)


disp('SOLUCIN DE LA TERCERA PARTE DE LA FORMA DEBIL DE LA ECUACIN')
Parte_2= -W*Du_dx;
I311=subs(Parte_2,Chi,1);
I312=subs(Parte_2,Chi,-1);
I31 = I311-I312

Part_2= -W*Du_dx;
I321=subs(Part_2,Chi,1);
I322=subs(Part_2,Chi,-1);
I32 = I321-I322

Par_2= -W*Du_dx;
I331=subs(Par_2,Chi,1);
I332=subs(Par_2,Chi,-1);
I33 = I331-I332

%Nota: El ensamble de la Matriz Global fue realizada a mano

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

%% LA MATRIZ FUE ENSAMBLADA A MANO


K=[-736/45 388/45 0 0 0;
328/45 -638/45 388/45 -103/90 0;
0 328/45 -736/45 388/45 0;
0 -73/90 328/45 -638/45 388/45;
0 0 0 328/45 -736/45];

f=[1/27;1/27;1/9;329/270;-1139/135];

%% CALCULOS DE LOS DESPLAZAMIENTOS


U = K^-1*f
u1 = 0;
u2 = U(1);
u3 = U(2);
u4 = U(3);
u5 = U(4);
u6 = U(5);
u7 = 1;

x1=xi(1):0.01:xi(3);
x2=xi(3):0.01:xi(5);
x3=xi(5):0.01:xi(7);

%% FUNCIONES DE FORMAS EN COORD. FISICAS


N11=(6.*x1-1).*(3.*x1-1);
N12=(6.*x1).*(2-6.*x1);
N13=(6.*x1-1).*(3.*x1);
N21=(3-6.*x2).*(2-3.*x2);
N22=(6.*x2-4).*(2-6.*x2);
N23=(6.*x2-3).*(3.*x2-1);
N31=(3-3.*x3).*(5-6.*x3);
N32=(6-6.*x3).*(6.*x3-4);
N33=(5-6.*x3).*(2-3*x3);

uh1=[N11*u1+N12*u2+N13*u3];
uh2=[N21*u3+N22*u4+N23*u5];
uh3=[N31*u5+N32*u6+N33*u7];

plot(xii,uap,'b','lineWidth',2.5)
title('\bf SOLUCION CUADRTICA DE LOS VALORES DISCRETOS')
set(gcf,'color','white')
grid on
hold on

plot(x1,N11*u1,'--m'...
,x1,N12*u2,'--m'...
,x1,N13*u3,'--m'...
,x2,N21*u3,'--m'...
,x2,N22*u4,'--m'...
,x2,N23*u5,'--m'...
,x3,N31*u5,'--m'...
,x3,N32*u6,'--m'...
,x3,N33*u7,'--m','lineWidth',0.5)
plot(x1,uh1,'g'...
,x2,uh2,'g'...
,x3,uh3,'g','lineWidth',1.5)

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

Las funciones de formas fsicas anlogas a las funciones intrnsecas que cumplen
con las condiciones de fronteras son:

N11 = (6x1 - 1)*(3x1 - 1);


N12 = (6x1)*(2 - 6x1);
N13 = (6x - 1)*(3x1);
N21 = (3 - 6x2)*(2 - 3x);
N22 = (6x2 - 4)*(2 - 6x2);
N23 = (6x2 - 3)*(3x2 - 1);
N31 = (3 - 3x3)*(5 - 6x3);
N32 = (6 - 6x3)*(6x3 - 4);
N33 = (5 - 6x3)*(2 - 3x3);

Donde; x1, x2 y x3 son las longitudes de los elementos 1, 2 y 3 respectivamente

COMMAND WINDOW MATLAB


Resultados de las integrales y de la parte a evaluar de la forma dbil de la
ecuacin.

SOLUCIN DE LA PRIMERA PARTE DE LA FORMA DEBIL DE LA ECUACIN


I11 =
(388*u12)/45 - (683*u11)/90 - (103*u13)/90
(328*u11)/45 - (736*u12)/45 + (388*u13)/45
(328*u12)/45 - (73*u11)/90 - (593*u13)/90

I12 =
(388*u22)/45 - (683*u21)/90 - (103*u23)/90
(328*u21)/45 - (736*u22)/45 + (388*u23)/45
(328*u22)/45 - (73*u21)/90 - (593*u23)/90

I13 =
(388*u32)/45 - (683*u31)/90 - (103*u33)/90
(328*u31)/45 - (736*u32)/45 + (388*u33)/45
(328*u32)/45 - (73*u31)/90 - (593*u33)/90

SOLUCIN DE LA SEGUNDA PARTE DE LA FORMA DEBIL DE LA ECUACIN


I21 = I22 = I23 =
0 1/54 1/27
1/27 1/9 5/27
1/54 1/27 1/18

SOLUCIN DE LA TERCERA PARTE DE LA FORMA DEBIL DE LA ECUACIN

I31 = I32 = I33 =


Du_dx Du_dx Du_dx
0 0 0
-Du_dx -Du_dx -Du_dx

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

Nota: Con estos resultados formamos las contribuciones de cada elemento.


La mayora de los clculos se realizaron en Matlab.
Contribucin del Elemento 1

683/90 388/45 103/90 11 0 (1)


K = [ 328/45 736/45 388/45 ] [12] = [1/27] + [ 0 ]
1
73/90 328/45 593/90 13 1/54 ( )
3
Contribucin del Elemento 2
1
683/90 388/45 103/90 11 0 ( )
3
K = [ 328/45 736/45 388/45 ] [12] = [1/27] + 0
73/90 328/45 593/90 13 1/54 2
[(3)]
Contribucin del Elemento 3
2
683/90 388/45 103/90 11 0 ( )
K = [ 328/45 736/45 388/45 ] [12] = [1/27] + [ 3 ]
0
73/90 328/45 593/90 13 1/54
(1)
Ensamble de la Matriz global y del sistema global

683 388 103



90 45 90
328 736 388

45 45 45 (0)
73 328 593 683 388 103 1 1/27

90 45 90 90 45 90 2 1/27
328 736 388 3 1/9
4 =
45 45 45 5 2/27
73 328 593 683 388 103 6 5/27
1
90 45 90 90 45 90 7
328 736 388 [18 (1)]

45 45 90
73 328 593

[ 90 45 90 ]

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

736 388 1

45 45 27
328 638 388 103 1 328 0
2 45 0
45 45 45 90 27
3 73 0
328 736 388 1
4 = 90 0 103 1
45 45 45 5 9 90
328 638 388 2 0
73 6 0 388

90 45 45 45 27 [ 0 ] [ 45 ]
328 736 5
[27]
[ 45 45 ]
736 388 1

45 45 27
328 638 388 103 1
2
45 45 45 90 27
328 736 388 3 1
4 =
45 45 45 5 9
73 328 638 388 6 329

90 45 45 45 270
328 736 1139
[
[ 135 ]
45 45 ]
Nota: Este sistema fue introducido en Matlab para obtener los resultados
del vector u
U2 = 0.1547
U3 = 0.2978
U4 = 0.4430
U5 = 0.6015
U6 = 0.7839
U1 y U7 se definen de las condiciones iniciales: U1 = 0, U7 = 1.0
CON ESTO Y HACIENDO USO DEL SCRIPT EN MATLAB GRAFICAMOS

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

La lnea azul corresponde a la solucin exacta y la lnea verde a la aproximada.


Las lneas punteadas solo representan las funciones de formas fsicas.
Ejercicio 2

2
2
+ 2 2= (1 < < 4)
2
Forma dbil de la ecuacin diferencial.

SCRIPT en Matlab para resolver el ejercicio.


Script Prac3Ejerc5_3Elemento_Cuadrtica
EDITOR MATLAB:
%% EJERCICIO 5 CON TRES ELEMENTOS
% e1=(1,1.5,2) , e2=(2,2.5,3) , e3=(3,3.5,4)
clc;
clear;

%% SOLUCION EXACTA DE LA ECUACION DIFERENCIAL


syms x Chi u11 u12 u13 u21 u22 u23 u31 u32 u33 Du_dx

xii=1:0.01:4;
ua=dsolve('x^2*D2u+2*x*Du+2=x','Du(1)=2,u(4)=2','x');
uap=double(subs(ua,x,xii));

%% FACTORES DE FORMAS EN FUNCION DE Chi (COORD. INTRINSECAS)


N1 = 0.5*Chi*(Chi-1);
N2 = (Chi+1)*(1-Chi);
N3 = 0.5*Chi*(Chi+1);

%% VALOR DE X
xi=1:0.5:4;

%% X EN FUNCION DE Chi
x_Chi1 = N1*xi(1) + N2*xi(2) + N3*xi(3);
x_Chi2 = N1*xi(3) + N2*xi(4) + N3*xi(5);
x_Chi3 = N1*xi(5) + N2*xi(6) + N3*xi(7);

%% DERIVADA DE Chi CON RESPECTO A x


dChi_dx1 = 2/(xi(3)-xi(1));
dChi_dx2 = 2/(xi(5)-xi(3));
dChi_dx3 = 2/(xi(7)-xi(5));

%% VALOR DE dx
dx1 = (xi(3)-xi(1))/2; %*dChi
dx2 = (xi(5)-xi(3))/2; %*dChi
dx3 = (xi(7)-xi(5))/2; %*dChi

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

%% FUNCION DE PESO
W = [N1 N2 N3]';

%% DERIVADA DE LA FUNCION DE PESO CON RESPECTO A x


dw_dx1 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx1;
dw_dx2 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx2;
dw_dx3 = [diff(N1,Chi), diff(N2,Chi), diff(N3,Chi)]'*dChi_dx3;

%% DERIVADA DE LAS FUNCIONES DE PESOS CON RESPECTO A x


du_dx1 = dChi_dx1*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u11;u12;u13];
du_dx2 = dChi_dx2*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u21;u22;u23];
du_dx3 = dChi_dx3*[diff(N1,Chi), diff(N2,Chi),
diff(N3,Chi)]*[u31;u32;u33];

%% ECUACION DIFERENCIAL EN SU FORMA DEBIL


%% PRIMERA PARTE (INT(X^2*DW/DX*DU/DX*DX))
disp('SOLUCIN DE LA PRIMERA PARTE DE LA FORMA DEBIL DE LA ECUACIN')

I11 = int(x_Chi1^2*dw_dx1*du_dx1*dx1,Chi,-1,1)
I12 = int(x_Chi2^2*dw_dx2*du_dx2*dx2,Chi,-1,1)
I13 = int(x_Chi3^2*dw_dx3*du_dx3*dx3,Chi,-1,1)

%% SEGUNDA PARTE (W*X^2*DU/DX,-1,1)


disp('SOLUCIN DE LA SEGUNDA PARTE DE LA FORMA DEBIL DE LA ECUACIN')
Parte_2= W*x_Chi1^2*Du_dx;
I121=subs(Parte_2,Chi,1);
I221=subs(Parte_2,Chi,-1);
I21 = I121-I221

Part_2= W*x_Chi2^2*Du_dx;
I122=subs(Part_2,Chi,1);
I222=subs(Part_2,Chi,-1);
I22 = I122-I222

Par_2= W*x_Chi3^2*Du_dx;
I123=subs(Par_2,Chi,1);
I223=subs(Par_2,Chi,-1);
I23 = I123-I223

%% TERCERA PARTE (INT(W*(2-X)DX))


disp('SOLUCIN DE LA TERCERA PARTE DE LA FORMA DEBIL DE LA ECUACIN')
I31 = int(W*(2-x_Chi1)*dx1,Chi,[-1;1])
I32 = int(W*(2-x_Chi2)*dx2,Chi,[-1;1])
I33 = int(W*(2-x_Chi3)*dx3,Chi,[-1;1])

%Nota: El ensamble de la Matriz Global fue realizada a mano


%% LA MATRIZ FUE ENSAMBLADA A MANO
K=[53/15 -22/5 13/15 0 0 0;
-22/5 64/5 -42/5 0 0 0;
13/15 -42/5 286/15 -206/15 11/5 0;
0 0 -206/15 512/15 -102/5 0;
0 0 11/5 -102/5 212/5 -142/5;
0 0 0 0 -142/5 992/15];

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

f=[-11/6;1/3;0;-1/3;-131/15;1117/15];

%% CALCULOS DE LOS DESPLAZAMIENTOS


U = K^-1*f

u1 = U(1);
u2 = U(2);
u3 = U(3);
u4 = U(4);
u5 = U(5);
u6 = U(6);
u7 = 2;

x1=xi(1):0.01:xi(3);
x2=xi(3):0.01:xi(5);
x3=xi(5):0.01:xi(7);

%% FUNCIONES DE FORMAS EN COORD. FISICAS


N11=(2-x1).*(3-2.*x1);
N12=(x1-2).*(4-4.*x1);
N13=(1-x1).*(3-2.*x1);
N21=(3-x2).*(5-2.*x2);
N22=(x2-3).*(8-4.*x2);
N23=(2-x2).*(5-2.*x2);
N31=(4-x3).*(7-2.*x3);
N32=(x3-4).*(12-4.*x3);
N33=(3-x3).*(7-2*x3);

uh1=[N11*u1+N12*u2+N13*u3];
uh2=[N21*u3+N22*u4+N23*u5];
uh3=[N31*u5+N32*u6+N33*u7];

plot(xii,uap,'b','lineWidth',2)
title('\bf SOLUCION CUADRTICA DE LOS VALORES DISCRETOS')
set(gcf,'color','white')
grid on
hold on

plot(x1,N11*u1,'--m'...
,x1,N12*u2,'--m'...
,x1,N13*u3,'--m'...
,x2,N21*u3,'--m'...
,x2,N22*u4,'--m'...
,x2,N23*u5,'--m'...
,x3,N31*u5,'--m'...
,x3,N32*u6,'--m'...
,x3,N33*u7,'--m','lineWidth',0.5)

plot(x1,uh1,'g'...
,x2,uh2,'g'...
,x3,uh3,'g','lineWidth',1.5)

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

Las funciones de formas fsicas, que cumplieron con las condiciones de fronteras
anlogas a las funciones intrnsecas son:
N11 = (2 - x1)*(3 - 2x1);
N12 = (x1 - 2)*(4 - 4x1);
N13 = (1 - x1)*(3 - 2x1);
N21 = (3 - x2)*(5 - 2x2);
N22 = (x2 - 3)*(8 - 4x2);
N23 = (2 - x2)*(5 - 2x2);
N31 = (4 - x3)*(7 - 2x3);
N32 = (x3 - 4)*(12 - 4x3);
N33 = (3 - x3)*(7 - 2x3);

COMMAND WINDOW EN MATLAB


SOLUCIN DE LA PRIMERA PARTE DE LA FORMA DEBIL DE LA ECUACIN
I11 =
(53*u11)/15 - (22*u12)/5 + (13*u13)/15
(64*u12)/5 - (22*u11)/5 - (42*u13)/5
(13*u11)/15 - (42*u12)/5 + (113*u13)/15
I12 =
(173*u21)/15 - (206*u22)/15 + (11*u23)/5
(512*u22)/15 - (206*u21)/15 - (102*u23)/5
(11*u21)/5 - (102*u22)/5 + (91*u23)/5
I13 =
(121*u31)/5 - (142*u32)/5 + (21*u33)/5
(992*u32)/15 - (142*u31)/5 - (566*u33)/15
(21*u31)/5 - (566*u32)/15 + (503*u33)/15

SOLUCIN DE LA SEGUNDA PARTE DE LA FORMA DEBIL DE LA ECUACIN

I21 = I22 = I23 =


-Du_dx -4*Du_dx -9*Du_dx
0 0 0
4*Du_dx 9*Du_dx 16*Du_dx

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

SOLUCIN DE LA TERCERA PARTE DE LA FORMA DEBIL DE LA ECUACIN


I31 = I32 = I33 =
1/6 0 -1/6
1/3 -1/3 -1
0 -1/6 -1/3
Nota: Con estos resultados formamos las contribuciones de cada elemento.
Contribucin del Elemento 1
53/15 22/5 13/15 11 1/6 (1)
K1 = [ 22/5 64/5 42/5 ] [12] = [1/3] + [ 0 ]
13/15 42/5 113/15 13 0 4(2)
Contribucin del Elemento 2
173/10 206/15 11/5 21 0 4(2)
K2 = [206/15 512/15 102/5] [22] = [1/3] + [ 0 ]
11/5 102/5 91/5 23 1/6 9(3)
Contribucin del Elemento 3
121/5 142/5 21/5 31 1/6 9(3)
K3 = [142/5 992/15 566/15] [32] = [ 1 ] + [ 0 ]
21/5 566/15 503/15 33 1/3 16(4)
Ensamble de la Matriz global y del sistema global

53 22 13

15 5 15
22 64 42

5 5 5 (1) + 1/6
13 42 113 173 206 11 1
+ 1/3
15 5 15 15 15 5 2 0
206 512 102 3 1/3
4 =
15 15 5 5 2/6
11 102 91 121 142 21 6 1
+ 1
5 5 5 5 5 5 7 (4)
142 992 566 [ 16 ]
3

5 15 15
21 566 503

[ 5 15 15 ]

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

53 22 13

15 5 15 11
22 64 42
6 0
5 5 5 1 1 0
13 42 632 206 11 2 3 0
0
15 15 3
15 5 5 = 0 21 2
206 512 102 4 1
5 5
15 15 5 3
102 212 6 2 566
11 142
[ 15 ]
5 5 5 5 6
142 992 [ 1 ]
[
5 15 ]

53 22 13
11
15 5 15
22 64 42 6
1
5 5 5 1
13 42 632 206 11 3
2 0
15 5 15 15 5 3 1
=
206 512 102 4
5 3
15 15 5 131
11 102 212 142 6
15
5 5 5 5 1117
142 992 [ 15 ]
[
5 15 ]
Desplazamientos (Estos fueron calculados en Matlab en el mismo Script)

Dr. Nelson Lafontaine


ELEMENTOS FINITOS

U=

0.6612
1.2454
1.5117
1.6645
1.7837
1.8920
2.0000

Dr. Nelson Lafontaine

Вам также может понравиться