summaryrefslogtreecommitdiff
path: root/269/CH7/EX7.12/example12.sce
diff options
context:
space:
mode:
Diffstat (limited to '269/CH7/EX7.12/example12.sce')
-rw-r--r--269/CH7/EX7.12/example12.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/269/CH7/EX7.12/example12.sce b/269/CH7/EX7.12/example12.sce
new file mode 100644
index 000000000..88982695f
--- /dev/null
+++ b/269/CH7/EX7.12/example12.sce
@@ -0,0 +1,10 @@
+Syms t,s
+//on applying KVL we get the laplace transformed current as
+disp(' the laplace transformed current equation is i(s)=s^2+6s+5/(s*(s^2+4s+5))')
+//by partial fraction method
+[A]=pfss(s^2+6*s+5/((s)*(s^2+4*s+5)))
+b=ilt(A (1),s,t)
+c=ilt(A(2),s,t)
+d=b+c
+disp('the time domain expression is')
+disp(d)