diff options
Diffstat (limited to '147/CH14/EX14.8')
-rw-r--r-- | 147/CH14/EX14.8/Example14_8.sce | 15 | ||||
-rw-r--r-- | 147/CH14/EX14.8/Result14_8.txt | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/147/CH14/EX14.8/Example14_8.sce b/147/CH14/EX14.8/Example14_8.sce new file mode 100644 index 000000000..84d0e2f11 --- /dev/null +++ b/147/CH14/EX14.8/Example14_8.sce @@ -0,0 +1,15 @@ +//No of poles p, No of slots 'slots', Number of coil sides per slot cps
+//Number of turns in each coil nc
+close();
+clear;
+clc;
+p = 4;
+a = p;
+n = 720;
+phi = 0.020;
+slots = 144;
+cps = 2;
+nc = 2;
+z = slots*cps*nc;
+E = phi*n*z/60*(p/a);
+mprintf('Inductor Voltage E = %0.2f V',E);
\ No newline at end of file diff --git a/147/CH14/EX14.8/Result14_8.txt b/147/CH14/EX14.8/Result14_8.txt new file mode 100644 index 000000000..c44040c31 --- /dev/null +++ b/147/CH14/EX14.8/Result14_8.txt @@ -0,0 +1 @@ +Inductor Voltage E = 138.24 V
\ No newline at end of file |