From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1076/CH13/EX13.16/13_16.sce | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 1076/CH13/EX13.16/13_16.sce (limited to '1076/CH13/EX13.16/13_16.sce') diff --git a/1076/CH13/EX13.16/13_16.sce b/1076/CH13/EX13.16/13_16.sce new file mode 100755 index 000000000..fe4f6386e --- /dev/null +++ b/1076/CH13/EX13.16/13_16.sce @@ -0,0 +1,28 @@ +clear; +clc + +E=1.5 +V=1 +xg=1 +xm=1 + +xt1=.1 +xt2=.1 +x1=.4 +x2=.4 +xl=(x1*x2)/(x1+x2) +X1=xl+xg+xt1 +X2=xt2+xm +xL=.8 +xC=-.8 + + +X3=xC +X=((X1*X2) + (X2*X3) + (X1*X3))/X3 +P1=E*V/X +mprintf("\n(a) Steady State limit = %.3f", P1) + +X3=xL +X=((X1*X2) + (X2*X3) + (X1*X3))/X3 +P2=E*V/X +mprintf("\n(b) Steady State limit = %.3f", P2) -- cgit