diff options
Diffstat (limited to '3760/CH6/EX6.3/Ex6_3.sce')
-rw-r--r-- | 3760/CH6/EX6.3/Ex6_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3760/CH6/EX6.3/Ex6_3.sce b/3760/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..0861c8ed8 --- /dev/null +++ b/3760/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,11 @@ +
+clc;
+f=50; //frequency of stator
+P=6;
+NofO=90; //number of oscillation
+f2=NofO/60; //rotor frequency
+s=f2/f; //slip
+Ns=(120*f)/P; //synchronous speed
+Nr=Ns*(1-s); //rotor speed
+
+mprintf('The rotor speed is %f rpm',Nr);
|