summaryrefslogtreecommitdiff
path: root/431/CH4/EX4.12/EX4_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '431/CH4/EX4.12/EX4_12.sce')
-rwxr-xr-x431/CH4/EX4.12/EX4_12.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/431/CH4/EX4.12/EX4_12.sce b/431/CH4/EX4.12/EX4_12.sce
new file mode 100755
index 000000000..1425202d7
--- /dev/null
+++ b/431/CH4/EX4.12/EX4_12.sce
@@ -0,0 +1,23 @@
+//Calculate power developed and efficiency
+//Chapter 4
+//Example 4.12
+//page 308
+clear;
+clc;
+disp("Example 4.12")
+S=0.03; //slip
+SI=50; //stator input in kilowatts
+SL=2; //stator loss in kilowatts
+RI=SI-SL; //rotor input in kilowatts
+RIL=S*RI; //rotor I^2R loss
+//rotor core loss can be neglected at 3percent slip
+PDR=RI-RIL; //power developed by the rotor
+printf("Power developed by the rotor=%fkW",PDR);
+FWL=1; //friction and windage loss in kilowatt
+OP=PDR-FWL; //output power
+printf("\nOutput power=%fkW",OP);
+effi=(OP*100)/SI;
+printf("\nEfficiency of the motor=%f percent",effi)
+
+
+