From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 269/CH8/EX8.1/example1.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 269/CH8/EX8.1/example1.sce (limited to '269/CH8/EX8.1/example1.sce') diff --git a/269/CH8/EX8.1/example1.sce b/269/CH8/EX8.1/example1.sce new file mode 100644 index 000000000..4b3ebb865 --- /dev/null +++ b/269/CH8/EX8.1/example1.sce @@ -0,0 +1,18 @@ +Syms t,s +disp('applyin kvl and solving we get') +disp('i(s)=1-e^-as/s(s+1) where a is a constant') +// This can be modified and written as +a=1 +//by partial fraction +[A]=pfss((1*s^0+0)/s*(s+1)) +b=ilt(A(1),s,t) +disp(b) +d=exp(1*a)//inverse laplace of exp(-sa) +disp(d) +//z=ilaplace((%e^-),s,t) +//disp(z) +e=ilt((1*s^0+0)/(s+1),s,t) +f=ilt((d*s^0)/s,s,t) +g=ilt((d*s^0)/(s+1)) +h=b*d*e*g*f; +disp(h) -- cgit