summaryrefslogtreecommitdiff
path: root/1076/CH13/EX13.5/13_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1076/CH13/EX13.5/13_5.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1076/CH13/EX13.5/13_5.sce')
-rwxr-xr-x1076/CH13/EX13.5/13_5.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/1076/CH13/EX13.5/13_5.sce b/1076/CH13/EX13.5/13_5.sce
new file mode 100755
index 000000000..9eae00b26
--- /dev/null
+++ b/1076/CH13/EX13.5/13_5.sce
@@ -0,0 +1,32 @@
+clear;
+clc
+
+E=1.1
+V=1
+xg=.7
+xt=.1
+x1=.2
+X1=x1+xg+xt
+X2=.2
+xL=.5
+xC=-.5
+
+
+X=X1+X2
+P1=E*V/X
+mprintf("\n(a) Steady State limit = %.4f", P1)
+
+X3=xL
+X=((X1*X2) + (X2*X3) + (X1*X3))/X3
+P2=E*V/X
+mprintf("\n(b) Steady State limit = %.4f", P2)
+
+X3=xC
+X=((X1*X2) + (X2*X3) + (X1*X3))/X3
+P3=E*V/X
+mprintf("\n(c) Steady State limit = %.3f", P3)
+
+X=X1+xC+X2
+P4=E*V/X
+mprintf("\n(d) Steady State limit = %.2f", P4)
+