summaryrefslogtreecommitdiff
path: root/2384/CH10/EX10.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2384/CH10/EX10.8
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 '2384/CH10/EX10.8')
-rwxr-xr-x2384/CH10/EX10.8/ex10_8.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/2384/CH10/EX10.8/ex10_8.sce b/2384/CH10/EX10.8/ex10_8.sce
new file mode 100755
index 000000000..cf3b5c360
--- /dev/null
+++ b/2384/CH10/EX10.8/ex10_8.sce
@@ -0,0 +1,21 @@
+// Exa 10.8
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+V = 440;// in V
+I_L =40;// in A
+Rse = 1;// in ohm
+Rsh = 200;// in ohm
+Ra = 0.5;// in ohm
+Ish = V/Rsh;// in A
+Ia = I_L+Ish;// in A
+Eg = V + (Ia*(Ra+Rse));// in V
+disp(Eg,"The generated voltage for long shunt in V is");
+//Voltage across shunt field, Vsh = V + Ise*Rse = V + (I_L*Rse);
+Vsh = V+(I_L*Rse);// in V
+Ish = Vsh/Rsh;// in A
+Ia =I_L+Ia;// in A
+Eg = V + (I_L*Rse) + (Ia*Ra);// in V
+disp(Eg,"The generated voltage for short shunt in V is");