summaryrefslogtreecommitdiff
path: root/3890/CH6/EX6.1/EX6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3890/CH6/EX6.1/EX6_1.sce')
-rw-r--r--3890/CH6/EX6.1/EX6_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3890/CH6/EX6.1/EX6_1.sce b/3890/CH6/EX6.1/EX6_1.sce
new file mode 100644
index 000000000..d93f1c654
--- /dev/null
+++ b/3890/CH6/EX6.1/EX6_1.sce
@@ -0,0 +1,16 @@
+//Electric machines and power systems by Syed A Nasar
+//Publisher:Tata McGraw Hill
+//Year: 2002 ; Edition - 7
+//Example 6.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+N=1750; //speed of the machine in rpm
+Z=728; //no of conductors
+f=25*10^(-3); //flux per pole
+
+E=f*N*Z/60; //since P=A
+
+printf('the voltage induced is %f V',E)