diff options
Diffstat (limited to '3835/CH8/EX8.1/Ex8_1.sce')
-rw-r--r-- | 3835/CH8/EX8.1/Ex8_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3835/CH8/EX8.1/Ex8_1.sce b/3835/CH8/EX8.1/Ex8_1.sce new file mode 100644 index 000000000..4da4a98fa --- /dev/null +++ b/3835/CH8/EX8.1/Ex8_1.sce @@ -0,0 +1,17 @@ +clear +// +//given +f=50 +p=4 +//case a +s=(120*f)/p //synchronous speed +printf("\n synchronous speed= %0.0f rpm",s) +//case b +slip=0.03 +r=s-s*slip //rotor speed +printf("\n rotor speed= %0.0f rpm",r) +//case c +r=900 //given speed of rotor +slip=(s-r)/s //per unit slip +rf=slip*f +printf("\n rotor frequency= %0.0f Hz",rf) |