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

UNIVERSIDAD NACIONAL DE INGENIERÍA

FACULTAD DE INGENIERÍA MECÁNICA


Ubicación: Av. Túpac Amaru 210 - Rímac. Apartado 1301 Email: fim@uni.edu.pe

“CÁLCULO DE ESFUERZOS EN UNA PLACA


TRIANGULAR MEDIANTE ELEMENTOS FINITOS”

CURSO : CÁLCULO POR ELEMENTOS FINITOS ( MC516 )

SECCIÓN: F

DOCENTE: CUEVA PACHECO , RONALD

ALUMNO: GOICOCHEA BACON, JONATAN VLADIMIR

FECHA DE ENTREGA: 12 de septiembre de 2019


PRIMERA PRACTICA DE ELEMENTOS FINITOS

Hallar la reacción en el empotramiento y las deformaciones que experimenta la placa sometida a


compresión simple por el efecto de una carga P.

Datos :

El espesor de la placa es constante (e) : 150 mm

El módulo de Young del material (E) : 3*105 MPa

El peso específico del material (ɣ) : 8 gr-f/cm3

1000 mm P=60000 N

1000 mm

1000 mm

SOLUCIÓN
1) MODELADO
Se han tomado tres elementos(n=3) para la solución del modelo
(x)

(3) P=60000 N
(2)

(1)

CALCULO POR ELEMENTOS FINITOS-MC516 Goicochea Bacon , Jonatan Vladimir


20160263D
2) TABLA DE CONECTIVIDAD

Elemento NODOS locales NODOS globales


(1) (2) (1) (2)
1 1 2 1 2
2 2 3 2 3
3 3 4 3 4

DIAGRAMA DE FLUJO

Inicio

Ingresar datos : coord..


E, ɣ ,longitudes

Calculo de constantes
A,V, long. elementos

Formar matriz parcial


De cada elemento

Formar matriz global

Solución matriz de rigidez

Calculo deformación
Y esfuerzos

Fin

CALCULO POR ELEMENTOS FINITOS-MC516 Goicochea Bacon , Jonatan Vladimir


20160263D
3) CODIGO DE PROGRAMA – MATLAB

clc;
%**********INGRESO DE DATOS*******
e=150; %espesor
E=3*10^5; %modulo de young
P=60000; %carga
h=2000; %altura
b=1000; %base
w=8*9.81*10^-6; %peso especifico
% *****areas transversales*****
A1=1000*150;
A2=500*150;
A3=250*150;
h1=h/2;
h2=h/4;
h3=h/4;

%*******SOLUCION**********
b1=[1 -1 0 0;-1 1 0 0;0 0 0 0;0 0 0 0];
b2=[0 0 0 0;0 1 -1 0;0 -1 1 0;0 0 0 0];
b3=[0 0 0 0;0 0 0 0;0 0 1 -1;0 0 -1 1];
K=(A1*E/h1)*b1+(A2*E/h2)*b2+(A3*E/h3)*b3;

f1=(A1*h1/2)*w ;
f2=(A1*h1/2)*w +(A2*h2/2)*w + P ;
f3=(A2*h2/2)*w +(A3*h3/2)*w ;
f4=(A3*h3/2)*w ;
R=f1+f2+f3+f4 ;
FF=[f1+R;f2;f3;f4];

kk=[K(1,1) K(1,2) K(1,3) K(1,4);


K(2,1) K(2,2) K(2,3) K(3,4);
K(3,1) K(3,2) K(3,3) K(3,4);
K(4,1) K(4,2) K(4,3) K(4,4)];

Q=inv(kk)*FF
R
%ESFUERZOS

esf1 = (E / h1 ) * ([-1 1]*[Q(1);Q(2)])


esf2 = (E / h2 ) * ([-1 1]*[Q(2);Q(3)])
esf3 = (E / h3 ) * ([-1 1]*[Q(3);Q(4)])

CALCULO POR ELEMENTOS FINITOS-MC516 Goicochea Bacon , Jonatan Vladimir


20160263D
4) CORRIENDO EL PROGRAMA

CARACTERISTICAS FISICAS DEL MATERIAL

Módulo de Young : 3*10^5 N/mm2


Peso específico : 8*9.81*10^-6 N/mm3

CARACTERISTICAS GEOMETRICAS DEL MATERIAL

Altura h (mm) : 2000


Base b (mm) : 1000
Espesor e (mm) : 150
Empotramiento : 0 (rígido)

Numero de divisiones n=3

Fuerzas concentradas sobre el material


P=60000 N

b1 = K=
1 -1 0 0
-1 1 0 0 45000000 -45000000 0 0
0 0 0 0
-45000000 90000000 -45000000 -22500000
0 0 0 0
0 -45000000 67500000 -22500000
b2 =
0 0 -22500000 22500000
0 0 0 0
0 1 -1 0
0 -1 1 0
0 0 0 0 F=

82072.5
b3 =
0 0 0 0 67357.5
0 0 0 0 2207.25
0 0 1 -1
0 0 -1 1 735.75

Respuestas
Q= -0.0050
esf= -0.5472
-0.0069 R =76186.5
0.0392
-0.0068 Reacción en (N)
0.0196
-0.0068
Esfuerzos en (N/mm2)
desplazamientos en (mm)
CALCULO POR ELEMENTOS FINITOS-MC516 Goicochea Bacon , Jonatan Vladimir
20160263D
SIMULACION CON SOLIDWORKS

DESPLAZAMIENTOS

CONCLUSIONES

 Se puede apreciar que el punto donde habrá mayor desplazamiento será en Q(2)
ya que en este actúa directamente la carga.

 El calculó de la resultante será más preciso siempre y cuando el número de


elementos finitos sea mayor.

CALCULO POR ELEMENTOS FINITOS-MC516 Goicochea Bacon , Jonatan Vladimir


20160263D

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