diff options
Diffstat (limited to '147/CH14/EX14.5/Example14_5.sce')
-rw-r--r-- | 147/CH14/EX14.5/Example14_5.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/147/CH14/EX14.5/Example14_5.sce b/147/CH14/EX14.5/Example14_5.sce new file mode 100644 index 000000000..fcd28e990 --- /dev/null +++ b/147/CH14/EX14.5/Example14_5.sce @@ -0,0 +1,17 @@ +close();
+clear;
+clc;
+//from example 14.4
+//number of conductors 'n'
+z = 728;
+//rotating speed of armature 'N'
+N = 1800; //rpm
+//flux per pole 'phi'
+phi = 30*10^(-3); //Wb
+//number of poles 'p'
+p = 4;
+//for wave wound armature
+a = 2;
+//voltage induced in armature 'E'
+E = phi*N*z*p/(60*a); //V
+mprintf("Voltage induced in the armature, E = %0.1f V",E);
\ No newline at end of file |