solve not working for symbolic equation
Mostrar comentarios más antiguos
I'm trying to solve a symbolic eqution for a circuit´s angle but i keep getting the ame error
syms t;
Vsrms=120;
Vm=Vsrms*sqrt(2);
Vdc=100;
f=60;
R=2;
L=20e-3;
w=2*pi*f;
z=sqrt(R^2+(w*L)^2);
tau=L/R;
alpha=asin(Vdc/Vm);
theta=atan(w*L/R);
ifo=Vm/z*sin(w*t-theta)-Vdc/R;
A=(-Vm/z*sin(alpha-theta)+Vdc/R)*exp(alpha/(w*tau));
in=A*exp(-t/tau);
i=ifo+in;
ib=ifo-in;
assume(t>0 & t<2*pi);
beta=vpasolve(ib==0,t)
i get this result

Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Calculus en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

