summaryrefslogtreecommitdiff
path: root/147/CH14/EX14.22/Example14_22.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH14/EX14.22/Example14_22.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 '147/CH14/EX14.22/Example14_22.sce')
-rw-r--r--147/CH14/EX14.22/Example14_22.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/147/CH14/EX14.22/Example14_22.sce b/147/CH14/EX14.22/Example14_22.sce
new file mode 100644
index 000000000..74eda78c2
--- /dev/null
+++ b/147/CH14/EX14.22/Example14_22.sce
@@ -0,0 +1,14 @@
+//Stator copper loss Pcs, Mechanical loss Pr, Stator core loss Pms
+close();
+clear;
+clc;
+Pcs = 3;//kW
+Pr = 2;//kW
+Pms = 1.7;//kW
+//From previous question
+Pir = 120;//kW
+Pcr = 6;//kW
+Pom = Pir - Pcr - Pr;
+Pim = Pir + Pcs + Pms;
+n = Pom/Pim*100;
+mprintf('Motor Output = %0.0f kW\nMotor Input = %0.1f kW \nEfficency = %0.1f %%',Pom,Pim,n); \ No newline at end of file