summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.70/Example1_70.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1892/CH1/EX1.70/Example1_70.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 '1892/CH1/EX1.70/Example1_70.sce')
-rwxr-xr-x1892/CH1/EX1.70/Example1_70.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/1892/CH1/EX1.70/Example1_70.sce b/1892/CH1/EX1.70/Example1_70.sce
new file mode 100755
index 000000000..ca20faf58
--- /dev/null
+++ b/1892/CH1/EX1.70/Example1_70.sce
@@ -0,0 +1,30 @@
+// Example 1.70
+
+clc;clear;close;
+
+// Given data
+format('v',6);
+V=440;//in Volt
+f=50;//in Hz
+phase=3;//no. of phase
+P=6;//no. of poles
+Pin=80;//rotor input in KW
+f1=50;//in Hz
+f2=100;//in rotation/min
+I=65;//rotor current in Ampere
+
+//calculations
+f2=f2/60;//in Hz
+S=f2/f1;//slip
+disp(S,"Slip(p.u) : ");
+Ns=120*f/P;//in rpm
+Nr=Ns*(1-S);//in rpm
+disp(Nr,"Rotor speed in rpm : ");
+RotorCuLoss=S*Pin*1000;//in Watts
+Pmd=Pin*1000-RotorCuLoss;//Mechanical powre developed /in watts
+Pmd=Pmd/746;//in HP
+disp(Pmd,"Mechanical power developed in HP : ");
+RotorCuLoss_phase=RotorCuLoss/phase;//in watts/phase
+disp(RotorCuLoss_phase,"Rotor Coopper Loss per phase in watts : ");
+R2=RotorCuLoss_phase/I^2;//in ohm
+disp(R2,"Rotor resistance per phase in ohm : ");