summaryrefslogtreecommitdiff
path: root/1319/CH8/EX8.16/8_16.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH8/EX8.16/8_16.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1319/CH8/EX8.16/8_16.sce')
-rw-r--r--1319/CH8/EX8.16/8_16.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/1319/CH8/EX8.16/8_16.sce b/1319/CH8/EX8.16/8_16.sce
new file mode 100644
index 000000000..1eb9e5832
--- /dev/null
+++ b/1319/CH8/EX8.16/8_16.sce
@@ -0,0 +1,36 @@
+// Motor parameters of a 6 pole motor with 40 hp mechanical power
+
+clc;
+clear;
+
+f=50;
+p=6;
+Pd=40*735.5; // Mechanical Power developed
+V=500;
+Nr=960;
+pf= 0.8; // Lag
+Pm=1500; // Mechanical Loss
+
+Ns=120*f/p;
+
+s=(Ns-Nr)/Ns;
+Ps=1800; // Stator Loss
+
+Po=Pd-Pm; // Power Output
+
+Pir=Pd/(1-s); // Power input to rotor
+
+Prc=s*Pir; // Copper Loss of the Rotor
+
+Pi=Pir+Ps; // Power input to the stator
+
+eff=Po*100/Pi;
+
+Il=Pi/(sqrt(3)*V*pf);// Line Current
+
+printf('For a 6 pole 3 phase motor at 500V with a power factor of 0.8 lag \n')
+printf('i) Rotor Copper Loss = %g W \n',Prc)
+printf('ii) Total input to stator if the stator loss is 1500W = %g W \n',Pi)
+printf('iii) The line Current = %g A \n',Il)
+printf('iv) Efficiency = %g percent \n',eff)
+