diff options
Diffstat (limited to '1892/CH1/EX1.73/Example1_73.sce')
-rwxr-xr-x | 1892/CH1/EX1.73/Example1_73.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1892/CH1/EX1.73/Example1_73.sce b/1892/CH1/EX1.73/Example1_73.sce new file mode 100755 index 000000000..9a2fd6803 --- /dev/null +++ b/1892/CH1/EX1.73/Example1_73.sce @@ -0,0 +1,18 @@ +// Example 1.73
+
+clc;clear;close;
+
+// Given data
+format('v',6);
+StatorLoss=2;//in KW
+StatorInput=90;//stator input in KW
+S=4;//in %
+
+//calculations
+S=S/100;//slip
+StatorOutput=StatorInput-StatorLoss;//in KW
+Pri=StatorOutput;//rotor input in KW
+Pcr=S*Pri;//in KW
+disp(Pcr,"Rotor Copper Loss in KW : ");
+Pm=Pri-Pcr;//in KW
+disp(Pm,"Rotor mechanical power developed in KW : ");
|