summaryrefslogtreecommitdiff
path: root/431/CH2/EX2.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /431/CH2/EX2.6
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 '431/CH2/EX2.6')
-rwxr-xr-x431/CH2/EX2.6/EX2_6.sce14
-rwxr-xr-x431/CH2/EX2.6/resultEX2_6.txt2
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