Está en la página 1de 5

Circuitos II - Circuitos Acoplados Magnéticamente (Taller 16)

Julián Vásquez Moya

juvasquezmo@unal.edu.co

Tabla de Contenido
Punto 1.....................................................................................................................................................................1
Punto 2.....................................................................................................................................................................1
Fracciones parciales método simbólico...............................................................................................................3
Fracciones parciales método no simbólico..........................................................................................................3
Respuesta en el tiempo.......................................................................................................................................3
Punto 3.....................................................................................................................................................................3

Punto 1
En el transformador ideal,

• jwL2 < < ZL


• jwL2 >> ZL
• k=1
• k<1
• Zi = ZL/a^2
• Otro

R\ jwL2 >> ZL; k = 1; Zi = ZL/a^2

Punto 2
Hallar i1(t) para el circuito mostrado, condiciones iniciales cero. Vi(t) = u(t), R1 = R2 = 4.0 Ohm, L1 = L2 = 1 H,
C = 0.5 F.

• i1(t) = 1/8 - (1/8).exp(-4t) - (1/2).t.exp(-2t) A, t >= 0.


• i1(t) = 1/8 - (1/8).exp(-4t) - (1/2).t.exp(-4t) A, t >= 0.
• i1(t) = 1/8 - (1/8).exp(-4t) - (1/2).exp(-2t) A, t >= 0.

1
• i1(t) = 1/8 - (1/8).exp(-2t) - (1/2).t.exp(-2t) A, t >= 0.

VI=1;
R_1=4;
R_2=4;
L_1=1;
L_2=1;
C_1=0.5;
syms Vi R1 R2 RL L1 L2 C I1 I2 s
Eq1=[Vi==(R1+s*L1+(1/(s*C)))*I1-((1/(s*C))*I2)]

Eq1 =

Eq2=[0==(s*L2+R2+(1/(s*C)))*I2-(1/(s*C))*I1]

Eq2 =

i2_1=solve(Eq1,I2)

i2_1 =

i2_2=solve(Eq2,I2)

i2_2 =

Corriente1=expand(solve(i2_2==i2_1,I1))

Corriente1 =

Corriente1=subs(Corriente1,Vi,VI/s);
Corriente1=subs(Corriente1,C,C_1);
Corriente1=subs(Corriente1,L1,L_1);
Corriente1=subs(Corriente1,L2,L_2);

2
Corriente1=subs(Corriente1,R1,R_1);
Corriente1=simplify(subs(Corriente1,R2,R_2))

Corriente1 =

Fracciones parciales método simbólico


Corriente1=partfrac(Corriente1)

Corriente1 =

Fracciones parciales método no simbólico


denSym=expand(s*(s+2)^2*(s+4))

denSym =

num=[1 4 2];
den=[1 8 20 16 0];
[r,p,k]=residue(num,den)

r = 4×1
-0.1250
0.0000
0.5000
0.1250
p = 4×1
-4.0000
-2.0000
-2.0000
0
k =

[]

Respuesta en el tiempo
Corrientetiempo=ilaplace(Corriente1)

Corrientetiempo =

R\ a) i1(t) = 1/8 - (1/8).exp(-4t) + (1/2).t.exp(-2t) A, t >= 0.

Punto 3
Hallar la impedancia de entrada para el circuito mostrado si w = 10000 r/s. Elementos: L1 = 2 mH, L2 = 4 mH,
M = 2.5 mH, C = 10 uF, R1 = 8 Ohm, R2 = 6 Ohm.

3
• Z(jw) = 33.3 < -41.6° Ohm
• Z(jw) = 22.3 < -61.6° Ohm
• Z(jw) = 22.3 < -41.6° Ohm
• Z(jw) = 33.3 < -61.6° Ohm

w=10000;
R_12=8;
R_22=6;
L_12=0.002;
L_22=0.004;
C_12=10e-6;
Mutua=0.0025;
syms M
Eq12=[Vi==(R1+s*L1+(1/(s*C)))*I1+(s*M-(1/(s*C)))*I2]

Eq12 =

Eq22=[0==(s*L2+R2+(1/(s*C)))*I2+(s*M-(1/(s*C)))*I1]

Eq22 =

i2_12=solve(Eq12,I2);
i2_22=solve(Eq22,I2);
Corriente12=solve(i2_22==i2_12,I1)

Corriente12 =

4
Corriente12=subs(Corriente12,s,j*w);
Corriente12=subs(Corriente12,M,Mutua);
Corriente12=subs(Corriente12,C,C_12);
Corriente12=subs(Corriente12,L1,L_12);
Corriente12=subs(Corriente12,L2,L_22);
Corriente12=subs(Corriente12,R1,R_12);
Corriente12=subs(Corriente12,R2,R_22);
Impedancia=Vi/Corriente12

Impedancia =

MagnitudZ=double(abs(Impedancia))

MagnitudZ = 33.2809

AnguloZ=rad2deg(double(angle(Impedancia)))

AnguloZ = -61.5542

R\ d) Z(jw) = 33.3 < -61.6° Ohm

También podría gustarte