summaryrefslogtreecommitdiff
path: root/833/CH15/EX15.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /833/CH15/EX15.9
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 '833/CH15/EX15.9')
-rwxr-xr-x833/CH15/EX15.9/Ex15_9.sce22
-rwxr-xr-x833/CH15/EX15.9/Ex15_9.txt22
-rwxr-xr-x833/CH15/EX15.9/Result15_9.txt4
3 files changed, 48 insertions, 0 deletions
diff --git a/833/CH15/EX15.9/Ex15_9.sce b/833/CH15/EX15.9/Ex15_9.sce
new file mode 100755
index 000000000..6cc6f980a
--- /dev/null
+++ b/833/CH15/EX15.9/Ex15_9.sce
@@ -0,0 +1,22 @@
+//Caption:Find efficiency of machine
+//Exa:15.9
+clc;
+clear;
+close;
+P=50000//Power of alternator(in KVA)
+V=11//Voltage of alternator(in Kv)
+pf=0.8//Power factor
+r=0.01//Resistance of stator winding per phase(in ohms)
+Wc=150//Copper loss(in KW)
+Wf=100//Friction loss(in KW)
+Ww=250//Winding loss(in KW)
+Wco=200//Core loss(in KW)
+We=15//Excitor loss(in KW)
+Is=(P*1000)/(sqrt(3)*V*1000)
+Ps=(Is^2)*3*(r/1000)
+Ws=(0.5*Ps)
+Lt=Ps+Ws+Wc+Wf+Ww+Wco+We
+Po=P*pf
+Pi=Po+Lt
+e=Po*100/Pi
+disp(e,'Efficieny of machine(in %)=') \ No newline at end of file
diff --git a/833/CH15/EX15.9/Ex15_9.txt b/833/CH15/EX15.9/Ex15_9.txt
new file mode 100755
index 000000000..6cc6f980a
--- /dev/null
+++ b/833/CH15/EX15.9/Ex15_9.txt
@@ -0,0 +1,22 @@
+//Caption:Find efficiency of machine
+//Exa:15.9
+clc;
+clear;
+close;
+P=50000//Power of alternator(in KVA)
+V=11//Voltage of alternator(in Kv)
+pf=0.8//Power factor
+r=0.01//Resistance of stator winding per phase(in ohms)
+Wc=150//Copper loss(in KW)
+Wf=100//Friction loss(in KW)
+Ww=250//Winding loss(in KW)
+Wco=200//Core loss(in KW)
+We=15//Excitor loss(in KW)
+Is=(P*1000)/(sqrt(3)*V*1000)
+Ps=(Is^2)*3*(r/1000)
+Ws=(0.5*Ps)
+Lt=Ps+Ws+Wc+Wf+Ww+Wco+We
+Po=P*pf
+Pi=Po+Lt
+e=Po*100/Pi
+disp(e,'Efficieny of machine(in %)=') \ No newline at end of file
diff --git a/833/CH15/EX15.9/Result15_9.txt b/833/CH15/EX15.9/Result15_9.txt
new file mode 100755
index 000000000..1c16ea80b
--- /dev/null
+++ b/833/CH15/EX15.9/Result15_9.txt
@@ -0,0 +1,4 @@
+ Efficieny of machine(in %)=
+
+ 97.50172
+ \ No newline at end of file