Guest User

Untitled

a guest
Dec 15th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. K_eqs = {i_C[t] - i_L[t] == 0, i_L[t] - i_R[t] == 0, -u[t] + u_C[t] + u_L[t] == 0};
  2. B_eqs = {u_C'[t] == 1/Cap * i_C[t], i_L'[t] == 1/Ind * u_L[t], i_R[t] == 1/R *y[t]};
  3.  
  4. Solve[K_eqs, i_L[t]];
  5. Solve::naqs: K_eqs is not a quantified system of equations and inequalities.
Add Comment
Please, Sign In to add comment