summaryrefslogtreecommitdiff
path: root/1938/CH2/EX2.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1938/CH2/EX2.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 '1938/CH2/EX2.8')
-rwxr-xr-x1938/CH2/EX2.8/2_8.jpgbin0 -> 20616 bytes
-rwxr-xr-x1938/CH2/EX2.8/2_8.sce16
2 files changed, 16 insertions, 0 deletions
diff --git a/1938/CH2/EX2.8/2_8.jpg b/1938/CH2/EX2.8/2_8.jpg
new file mode 100755
index 000000000..6cf199a23
--- /dev/null
+++ b/1938/CH2/EX2.8/2_8.jpg
Binary files differ
diff --git a/1938/CH2/EX2.8/2_8.sce b/1938/CH2/EX2.8/2_8.sce
new file mode 100755
index 000000000..ad9725647
--- /dev/null
+++ b/1938/CH2/EX2.8/2_8.sce
@@ -0,0 +1,16 @@
+clc,clear
+printf('Example 2.8\n\n')
+
+R_a=0.2, R_se =0.3 //Resistance of armature and series field winding
+//following variables correspond to load 1
+V=250
+N_1=800
+I_1=20, I_a1=I_1,I_se1= I_a1
+E_b1= V - I_a1*(R_a+R_se)
+//following variables correspond to load 2
+I_2=50, I_a2=I_2
+E_b2= V - I_a2*(R_a+R_se)
+
+//from speed equation it can be derived that,
+N_2 = N_1 * (E_b2/E_b1) * (I_a1/I_a2)
+printf('Speed on motor on no load is %.0f r.p.m',N_2)