Lab - 02 - Modelamiento - Revisar Tiene Errores
Lab - 02 - Modelamiento - Revisar Tiene Errores
Lab - 02 - Modelamiento - Revisar Tiene Errores
V.- PROCEDIMIENTO:
[1 − 𝑦(𝑡)]
𝑦̇ =
2
Hallar la solución por el método que usted considere apropiado, también debe graficar la
solución.
//Archivo RK4
function[ydot]=edo1(y);
ydot=(1-y)/2;
//Archivo solucion_runge
x(1)=0;
tf=10
y(1)=0;
ye(1)=0;
h=0.5;
n=round(tf/h);
for i=1:n;
k1=2*(1-y(i))/2;
k2=(1-y(i)-h/2*k1)/2;
k3=(1-y(i)-h/2*k2)/2;
k4=(1-y(i)-h*k3)/2; y(i+1)=y(i)
+h/6*(k1+2*k2+2*k3+k4);
x(i+1)=x(i)+h;
ye(i+1)=1-exp(-x(i+1)/2);
end
ydot(n+1)=RK4(y(n+1));
plot(x,y,x,ye,'r:');
legend('Solución numérica-RK4','SOLUCION EXACTA');
title('Comparación entre la solución exacta y la solución
numérica')
xlabel('Tiempo(s)')
ylabel('Amplitud')
function[ydot]=edol(y)
ydot=(1-y)/2;
// h=0.5
//h=1
Figura 1 Circuito RC
Por Kirchhoff: Ve = Vc
-I +I2 + I1 = 0
Ic=I2
𝑑𝑉𝐶
𝐼𝐶 = 𝑐 𝑑𝑡
IR=I1
𝑉𝑅 𝑉𝐶
𝐼𝑅 =
𝑅
𝑅
=
Ecuación diferencial:
𝑉𝐶
𝑑𝑉𝐶
𝐼 = +𝑐 +
𝑑𝑡 𝑅
𝑖1(𝑠) 𝑖2 (𝑠)
b) De la figura, hallar las funciones de transferencia, 𝑖(𝑠)
, , y representarlas en
𝑒(𝑠)′ 𝑒(𝑠)′ 𝑒(𝑠)′
diagrama de bloques.
c) De la figura, hallar las funciones de transferencia pedidas, mediante diagramas de
flujo
de señal.
Ve VC
1/CS
𝒆(𝒕) 𝒅𝒆(𝒕)
𝒊(𝒕) = +
𝑹 𝑪 𝒅𝒕
>> dsolve('De*C(i)-(e/R)')
Donde:
M = masa del objeto
b = coeficiente de amortiguamiento
viscoso K = constante de elasticidad del
resorte F(s) =entrada
a) Hallar la ecuación diferencial que lo representa.
∑ 𝐹=0
𝐹 − 𝑚𝑥′′ − 𝑏𝑥′ − 𝑘𝑥 = 0
𝑚𝑥′′ + 𝑏𝑥′ − 𝑘𝑥 = 𝐹
𝑋(𝑠) 1
=
𝐹(𝑠) 𝑚𝑠2 + 𝑏𝑠 + 𝑘
𝐹 = 𝑚𝑥′′ + 𝑏𝑥′ − 𝑘𝑥
𝑋(𝑠) 1
=
𝐹(𝑠) 𝑚𝑠2 + 𝑏𝑠 + 𝑘
G1
+ + +
R G2 C
-
H
Solución:
+ +
+ C
R G2
-
R C
R C
𝐶 = 𝐺1 ∗ (𝑅 − 𝑀) + 𝐺2 ∗ (𝑅 − 𝑀) (2)
Hallamos M:
𝑀 = 𝐻 ∗ 𝐺2 ∗ (𝑅 − 𝑀)
𝑀 = 𝐻 ∗ 𝐺2 ∗ 𝑅 − 𝐻 ∗ 𝐺2
∗𝑀
𝑀 + 𝐻 ∗ 𝐺2 ∗ 𝑀 = 𝐻 ∗ 𝐺2
∗𝑅
𝑀(1 + 𝐻 ∗ 𝐺2) = 𝐻 ∗ 𝐺2 ∗
𝑅
𝐻 ∗ 𝐺2 ∗ 𝑅
𝑀=
1 + 𝐻 ∗ 𝐺2
Reemplazando en la ecuación 2:
𝐻 ∗ 𝐺2 𝐻 ∗ 𝐺2 ∗ 𝑅
∗𝑅
𝐶 = 𝐺1 ∗ (𝑅 − ) + 𝐺2 ∗ (𝑅 − )
1 + 𝐻 ∗ 𝐺2 𝐻 ∗ 𝐺21 + 𝐻 ∗ 𝐺2
𝐶 = (𝐺1 + 𝐺2) ∗ 𝑅 ∗ (
(1 −
𝐶 = 𝑅 ∗ (𝐺1 + 𝐺2) ∗
) 1
1 + 𝐻 ∗ 𝐺2 )
1 + 𝐻 ∗ 𝐺2
Expresamos la función de transferencia entre C y R:
𝐶 1
= (𝐺1 + 𝐺2) )
∗( 1 + 𝐻 ∗ 𝐺2
𝑅
VII.- CUESTIONARIO:
7.1.1.- El circuito eléctrico del ítem 6.1 es un sistema de lazo cerrado o abierto,
explique y sustente su respuesta
7.1.2.- El sistema masa, resorte, amortiguador del ítem 6.2 es un sistema de lazo
cerrado o abierto, explique y sustente su respuesta