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 /431/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 '431/CH2/EX2.6')
-rwxr-xr-x | 431/CH2/EX2.6/EX2_6.sce | 14 | ||||
-rwxr-xr-x | 431/CH2/EX2.6/resultEX2_6.txt | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/431/CH2/EX2.6/EX2_6.sce b/431/CH2/EX2.6/EX2_6.sce new file mode 100755 index 000000000..26993d5db --- /dev/null +++ b/431/CH2/EX2.6/EX2_6.sce @@ -0,0 +1,14 @@ +//Calculating emf generated onopen circuit condition
+//Chapter 2
+//Example 2.6
+//page 93
+clear;
+clc;
+disp("example 2.5")
+P=8 //number of poles
+A=8 //number of parallel paths in the armature
+Z=960 //number of conductors
+N=400 //speed in rpm
+phi=0.04 //flux per pole
+E=(phi*Z*N*P)/(60*A) //emf generated onopen circuit condition
+printf("emf generated on open circuit condition, E=%d volts",E)
\ No newline at end of file diff --git a/431/CH2/EX2.6/resultEX2_6.txt b/431/CH2/EX2.6/resultEX2_6.txt new file mode 100755 index 000000000..d729cb5d4 --- /dev/null +++ b/431/CH2/EX2.6/resultEX2_6.txt @@ -0,0 +1,2 @@ +example 2.5
+emf generated on open circuit condition, E=256 volts
\ No newline at end of file |