# 2Eva_IT2012_T2 Modelo de clima# MATG1013 Análisis Numéricoimport numpy as np
import matplotlib.pyplot as plt
defrungekutta2_fg(f,g,j,t0,x0,y0,z0,h,muestras):
tamano = muestras + 1
estimado = np.zeros(shape=(tamano,4),dtype=float)
# incluye el punto [t0,x0,y0,z0]
estimado[0] = [t0,x0,y0,z0]
ti = t0
xi = x0
yi = y0
zi = z0
for i inrange(1,tamano,1):
K1x = h * f(ti,xi,yi,zi)
K1y = h * g(ti,xi,yi,zi)
K1z = h * j(ti,xi,yi,zi)
K2x = h * f(ti+h,xi + K1x, yi + K1y, zi + K1z)
K2y = h * g(ti+h,xi + K1x, yi + K1y, zi + K1z)
K2z = h * j(ti+h,xi + K1x, yi + K1y, zi + K1z)
xi = xi + (K1x+K2x)/2
yi = yi + (K1y+K2y)/2
zi = zi + (K1z+K2z)/2
ti = ti + h
estimado[i] = [ti,xi,yi,zi]
return(estimado)
#INGRESO
to = 0
xo = 10
yo = 7
zo = 7
f = lambda t,x,y,z: 10*(y-x)
g = lambda t,x,y,z: x*(28-z) - y
j = lambda t,x,y,z: -(8/3)*z + (x*y)
h = 0.0025
muestras = 10000
#PROCEDIMIENTO#Rugen-Kutta 2_orden
tabla = rungekutta2_fg(f,g,j,to,xo,yo,zo,h,muestras)
#SALIDA
np.set_printoptions(precision=4)
print(' [ ti, xi, yi, zi]')
print(tabla)
# Gráficafrom mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.plot(tabla[:,1], tabla[:,2], tabla[:,3])
plt.show()
Las instrucciones en Python obtener los resultados:
# 2Eva_IT2015_T2 Deflexión de mástil# solución propuesta: edelros@espol.edu.ecimport numpy as np
defrungekutta2fg(fx,gx,x0,y0,z0,h,muestras):
tamano = muestras + 1
estimado = np.zeros(shape=(tamano,3),dtype=float)
# incluye el punto [x0,y0]
estimado[0] = [x0,y0,z0]
xi = x0
yi = y0
zi = z0
for i inrange(1,tamano,1):
K1y = h * fx(xi,yi,zi)
K1z = h * gx(xi,yi,zi)
K2y = h * fx(xi+h, yi + K1y, zi + K1z)
K2z = h * gx(xi+h, yi + K1y, zi + K1z)
yi = yi + (K1y+K2y)/2
zi = zi + (K1z+K2z)/2
xi = xi + h
estimado[i] = [xi,yi,zi]
return(estimado)
defrungekutta4fg(fx,gx,x0,y0,z0,h,muestras):
tamano = muestras + 1
estimado = np.zeros(shape=(tamano,3),dtype=float)
# incluye el punto [x0,y0]
estimado[0] = [x0,y0,z0]
xi = x0
yi = y0
zi = z0
for i inrange(1,tamano,1):
K1y = h * fx(xi,yi,zi)
K1z = h * gx(xi,yi,zi)
K2y = h * fx(xi+h/2, yi + K1y/2, zi + K1z/2)
K2z = h * gx(xi+h/2, yi + K1y/2, zi + K1z/2)
K3y = h * fx(xi+h/2, yi + K2y/2, zi + K2z/2)
K3z = h * gx(xi+h/2, yi + K2y/2, zi + K2z/2)
K4y = h * fx(xi+h, yi + K3y, zi + K3z)
K4z = h * gx(xi+h, yi + K3y, zi + K3z)
yi = yi + (K1y+2*K2y+2*K3y+K4y)/6
zi = zi + (K1z+2*K2z+2*K3z+K4z)/6
xi = xi + h
estimado[i] = [xi,yi,zi]
return(estimado)
# INGRESO
f = 60
L = 30
E = 1.25e8
I = 0.05
x0 = 0
y0 = 0
z0 = 0
tramos = 30
fx = lambda x,y,z: z
gx = lambda x,y,z: (f/(2*E*I))*(L-x)**2
# PROCEDIMIENTO
muestras = tramos + 1
h = L/tramos
tabla2 = rungekutta2fg(fx,gx,x0,y0,z0,h,muestras)
xi2 = tabla2[:,0]
yi2 = tabla2[:,1]
zi2 = tabla2[:,2]
tabla4 = rungekutta4fg(fx,gx,x0,y0,z0,h,muestras)
xi4 = tabla4[:,0]
yi4 = tabla4[:,1]
zi4 = tabla4[:,2]
# SALIDAprint('Runge Kutta 2do Orden')
print(' [x, y, z]')
print(tabla2)
print('Runge Kutta 4do Orden')
print(' [x, y, z]')
print(tabla4)
# GRAFICAimport matplotlib.pyplot as plt
plt.plot(xi2,yi2, label='Runge-Kutta 2do Orden')
plt.plot(xi4,yi4, label='Runge-Kutta 4do Orden')
plt.title('Deflexión de mástil')
plt.xlabel('x')
plt.ylabel('y: deflexión')
plt.legend()
plt.grid()
plt.show()