- #1
exidez
- 44
- 0
Homework Statement
I need to use MATLAB to solve these problems.
http://users.bigpond.net.au/exidez/IVDP.jpg
Homework Equations
MATLAB
The Attempt at a Solution
a)
R1=3.6;
R2=R1;
C1=33*10^-6;
C2=22*10^-6;
% defining the polynomial constants
Vs=[R1*R2*C1*C2 (2*R2*C2)+(R1*C1) 1];
'the roots of the equation are';
roots(Vs)
ans =
-25253
-4209
b) Largest time constant:
numf=1;
denf=Vs;
%Converting to Partial fraction to find the inverse Laplace transform
[r,p,k]=residue(numf,denf)
r =
1.0e+003 *
-5.0505
5.0505
p =
1.0e+004 *
-2.5253
-0.4209
Transfer function:
[tex]\frac{-5051}{s + 25253} + \frac{5051}{s + 4209}[/tex]
Based on the inverse Laplace of the partial fractions, the eqn then looks like below:
Vo(t) = r(2)*exp(p(2)*t) +r(1)*exp(p(1)*t)
Vo(t) = 5051e^(-4209t)-5051e^(-25253t)
I believe that is my natural response?
c) obtain and plot the natural response function versus time (use the first 1ms) for an initial constant Vs(t=0) = 5V
I have no idea, this is all new to me. The initial constant has me fooled and i don't know how to do it with the roots from part a. Can someone help me out with part c please
Last edited by a moderator: