Question

WRITE MATLAB CODE FOR IT.

Task 02: For the circuit shown in figure 12.2, the input voltage is Vi(t)-10 cos(2t) u(t) I. Plot the steady state output vol

0 0
Add a comment Improve this question Transcribed image text
Answer #1

ANs 0.5F 2 n 1A volb 1H Ca) Let selve for Vosrlti Laplace dmain 2.n S IIS Vols) ciruit Laplace domain 오 tel at Vo node,

Nod) eqjuatihg equaiomand equatin 5 오. 2 MI5) 35+45+4 Let selve or S) and Vosst) usihg MATLABMATLAB CODE:

clc
clear all
close all

syms t s

u(t) = heaviside(t);

Vit) = 10*cos(2*t)*u(t);

VI(s) = laplace(Vi(t),t,s);
H(s) = (s^2)/(3*s^2 + 4*s + 4); % Transfer function of the given circuit
Voss(s) = H(s)*VI(s);
Voss(t) = ilaplace(Voss(s),s,t); % Steady state output

fplot(t,Voss(t),[0,10])
xlabel('t')
title('Steady State Response')
grid on

OUTPUT:

Steady State Response 2 -2 -3 6 7 8 910 2 4(b) MATLAB CODE:

clc
clear all
close all

syms s
H(s) = (s^2)/(3*s^2 + 4*s + 4); % Transfer function of the given circuit
Poles = poles(H(s));
fprintf('Poles of the system are:\n')
disp(Poles)

OUTPUT:

Poles of the system are: (21(1/2) *2i)/3 - 2/3

Poles are located in left half of the s-plane,so that the given system is stable

Add a comment
Know the answer?
Add Answer to:
WRITE MATLAB CODE FOR IT. Task 02: For the circuit shown in figure 12.2, the input...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT