summaryrefslogtreecommitdiff
path: root/431/CH4/EX4.30/EX4_30.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /431/CH4/EX4.30/EX4_30.sce
downloadScilab-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.30/EX4_30.sce')
-rwxr-xr-x431/CH4/EX4.30/EX4_30.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/431/CH4/EX4.30/EX4_30.sce b/431/CH4/EX4.30/EX4_30.sce
new file mode 100755
index 000000000..de6765011
--- /dev/null
+++ b/431/CH4/EX4.30/EX4_30.sce
@@ -0,0 +1,27 @@
+//Calculate full load rotor loss and rotor input and output torque
+//Chapter 4
+//Example 4.30
+//page 345
+clear;
+clc;
+disp("Example 4.30")
+hp=20; //power in horsepower
+f=50; //frequency in hertz
+P=4; //number of poles
+Ns=(120*f)/P; //synchronous speed
+printf("Synchronous speed,Ns=%drpm",Ns);
+S=0.04; //slip
+Nr=Ns*(1-S);
+OP=hp*735.5;
+printf("\nOutput power=%fW",OP);
+OT=OP/(2*3.14*(Nr/60));
+printf("\nOutput torque=%fNm",OT);
+FL=0.02*OP; //Friction and windage loss
+PD=OP+FL;
+printf("\nPower developed by the rotor=%fW",PD);
+//from relation, (rotor I^2R-loss=S*Rotor input) we get following relation
+RL=(S*PD)/(1-S);
+printf("\nRotor I^2R-loss=%fW",RL);
+RI=RL/S;
+printf("\nRotor input=%dW",RI)
+