summaryrefslogtreecommitdiff
path: root/1199/CH3/EX3.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1199/CH3/EX3.6
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 '1199/CH3/EX3.6')
-rwxr-xr-x1199/CH3/EX3.6/3_6.sci16
1 files changed, 16 insertions, 0 deletions
diff --git a/1199/CH3/EX3.6/3_6.sci b/1199/CH3/EX3.6/3_6.sci
new file mode 100755
index 000000000..0ae442952
--- /dev/null
+++ b/1199/CH3/EX3.6/3_6.sci
@@ -0,0 +1,16 @@
+// 3.6
+clc;
+EL=0.1;
+Zo=250*10^3;
+ZL=2.5*10^6;
+Eo=EL*(1+(Zo/ZL));
+B=0.1;
+l=50*10^-3;
+G=1000;
+v=Eo/(B*l*G);
+printf("Average flow rate=%.2f degree m/s",v)
+Zon=1.2*250*10^3;
+ELn=2*Eo/(1+(Zon/ZL));
+PDV=[(0.2-ELn)/0.2]*100;
+printf("Percentage decrease in voltage=%.2f degree m/s",PDV)
+