diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1938/CH2/EX2.6 | |
download | Scilab-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.6')
-rwxr-xr-x | 1938/CH2/EX2.6/2_6.jpg | bin | 0 -> 21202 bytes | |||
-rwxr-xr-x | 1938/CH2/EX2.6/2_6.sce | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/1938/CH2/EX2.6/2_6.jpg b/1938/CH2/EX2.6/2_6.jpg Binary files differnew file mode 100755 index 000000000..7ebed949c --- /dev/null +++ b/1938/CH2/EX2.6/2_6.jpg diff --git a/1938/CH2/EX2.6/2_6.sce b/1938/CH2/EX2.6/2_6.sce new file mode 100755 index 000000000..d6aa75283 --- /dev/null +++ b/1938/CH2/EX2.6/2_6.sce @@ -0,0 +1,11 @@ +clc,clear
+printf('Example 2.6\n\n')
+
+V=250
+I_L =20 //load current
+R_a=0.3, R_sh=200 //Armature and shunt field winding
+I_sh=V/R_sh //shunt current
+I_a=I_L-I_sh //armature current
+E_b= V - I_a*R_a //emf generated
+printf('Armature current is %.2f A\n',I_a)
+printf('Back e.m.f is %.3f V',E_b)
|