summaryrefslogtreecommitdiff
path: root/380/CH5/EX5.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /380/CH5/EX5.7
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 '380/CH5/EX5.7')
-rwxr-xr-x380/CH5/EX5.7/5_7.txt17
-rwxr-xr-x380/CH5/EX5.7/5_7_R.txt3
-rwxr-xr-x380/CH5/EX5.7/Ex5_7.sce17
3 files changed, 37 insertions, 0 deletions
diff --git a/380/CH5/EX5.7/5_7.txt b/380/CH5/EX5.7/5_7.txt
new file mode 100755
index 000000000..980464300
--- /dev/null
+++ b/380/CH5/EX5.7/5_7.txt
@@ -0,0 +1,17 @@
+//Caption:Find the voltage between far end of feeder and bus bar
+//Exa:5.7
+clc;
+clear;
+close;
+V_o=240;//bus bar voltage (in Volts)
+I_d=0;
+I_s=300;//current in series winding (in Amperes)
+R_s=0.03;//resistance of series feild winding(in ohms)
+R_a=0.02;//resistance of armature winding(in ohms)
+R_fe=0.25;//resistance of feeder (in ohms)
+//Refer to eqn:5.33
+I_a=I_s;
+E_a=0.4*I_s;//induced emf
+V_d=I_s*(R_s+R_a+R_fe);//voltage drop (in Volts)
+V_t=V_o+E_a-V_d;
+disp(V_t,' voltage between far end of feeder and bus bar (in Volts)=') \ No newline at end of file
diff --git a/380/CH5/EX5.7/5_7_R.txt b/380/CH5/EX5.7/5_7_R.txt
new file mode 100755
index 000000000..e35bec9ea
--- /dev/null
+++ b/380/CH5/EX5.7/5_7_R.txt
@@ -0,0 +1,3 @@
+ voltage between far end of feeder and bus bar (in Volts)=
+
+ 270. \ No newline at end of file
diff --git a/380/CH5/EX5.7/Ex5_7.sce b/380/CH5/EX5.7/Ex5_7.sce
new file mode 100755
index 000000000..980464300
--- /dev/null
+++ b/380/CH5/EX5.7/Ex5_7.sce
@@ -0,0 +1,17 @@
+//Caption:Find the voltage between far end of feeder and bus bar
+//Exa:5.7
+clc;
+clear;
+close;
+V_o=240;//bus bar voltage (in Volts)
+I_d=0;
+I_s=300;//current in series winding (in Amperes)
+R_s=0.03;//resistance of series feild winding(in ohms)
+R_a=0.02;//resistance of armature winding(in ohms)
+R_fe=0.25;//resistance of feeder (in ohms)
+//Refer to eqn:5.33
+I_a=I_s;
+E_a=0.4*I_s;//induced emf
+V_d=I_s*(R_s+R_a+R_fe);//voltage drop (in Volts)
+V_t=V_o+E_a-V_d;
+disp(V_t,' voltage between far end of feeder and bus bar (in Volts)=') \ No newline at end of file