diff options
Diffstat (limited to '3760/CH6/EX6.1')
-rw-r--r-- | 3760/CH6/EX6.1/Ex6_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3760/CH6/EX6.1/Ex6_1.sce b/3760/CH6/EX6.1/Ex6_1.sce new file mode 100644 index 000000000..d8590e025 --- /dev/null +++ b/3760/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,14 @@ +clc;
+// after changing dc supply terminals from phase a to phase b
+disp('case a');
+P=2; // number of poles
+te=(2/P)*120;
+printf('Number of mechanical degrees through which rotor moves is %d degrees\n',te);
+disp('case b');
+P=4; // number of poles
+te=(2/P)*120;
+printf('Number of mechanical degrees through which rotor moves is %d degrees\n',te);
+disp('case c');
+P=6; // number of poles
+te=(2/P)*120;
+printf('Number of mechanical degrees through which rotor moves is %d degrees\n',te);
|