diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /431/CH4/EX4.15 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '431/CH4/EX4.15')
-rwxr-xr-x | 431/CH4/EX4.15/EX4_15.sce | 22 | ||||
-rwxr-xr-x | 431/CH4/EX4.15/resultEX4_15.txt | 6 |
2 files changed, 28 insertions, 0 deletions
diff --git a/431/CH4/EX4.15/EX4_15.sce b/431/CH4/EX4.15/EX4_15.sce new file mode 100755 index 000000000..b68ae1786 --- /dev/null +++ b/431/CH4/EX4.15/EX4_15.sce @@ -0,0 +1,22 @@ +//Calculating new full load speed
+//Chapter 4
+//Example 4.15
+//page 310
+clear;
+clc;
+disp("Example 4.15")
+f=50;.....................//frequency of induction motor in hertz
+P=4; //number of poles
+Nr=1440; //rotor speed in rpm
+R2=0.1; //rotor resistance in ohms
+X20=0.6; //rotor standstill resistance in ohms
+Ns=(120*f)/P;
+printf("Synchronous speed=%drpm",Ns);
+S1=(Ns-Nr)*(100/Ns);
+printf("Full-load slip with rotor resistance,R2 i.e. S1=%f",S1);
+disp("on adding extra resistance o.1ohm")
+//on solving we get S2=0.08
+S2=0.08;
+Nr2=Ns*(1-S2);
+printf("\nNew rotor speed=%drpm",Nr2);
+
diff --git a/431/CH4/EX4.15/resultEX4_15.txt b/431/CH4/EX4.15/resultEX4_15.txt new file mode 100755 index 000000000..554975d31 --- /dev/null +++ b/431/CH4/EX4.15/resultEX4_15.txt @@ -0,0 +1,6 @@ +
+ Example 4.15
+Synchronous speed=1500rpmFull-load slip with rotor resistance,R2 i.e. S1=4.000000
+ on adding extra resistance o.1ohm
+
+New rotor speed=1380rpm
\ No newline at end of file |