diff options
Diffstat (limited to '2276/CH10/EX10.7')
-rwxr-xr-x | 2276/CH10/EX10.7/chapter10_ex7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2276/CH10/EX10.7/chapter10_ex7.sce b/2276/CH10/EX10.7/chapter10_ex7.sce new file mode 100755 index 000000000..60a1bd4e0 --- /dev/null +++ b/2276/CH10/EX10.7/chapter10_ex7.sce @@ -0,0 +1,17 @@ +clc
+clear
+
+//input
+p=6;//number of poles
+n=3;//number of phases
+f=50;//frequency in hertz
+s=0.03;//slip in per units
+
+//calculations
+w=(2*%pi*f*60)/(n*2*%pi);//synchronous speed in rev/min
+ws=s*w;//slip speed in rev/min
+wr=w-ws;//rotor speed in rev/min
+fs=(ws*n)/60;//frequency of rotor currents in amperes
+
+//output
+mprintf('the rotor speed will be %3.0f rev/min and the frequency of rotor currents will be%3.1f Hz',wr,fs)
|