diff options
Diffstat (limited to '147/CH14/EX14.15')
-rw-r--r-- | 147/CH14/EX14.15/Example14_15.sce | 28 | ||||
-rw-r--r-- | 147/CH14/EX14.15/Result14_15.txt | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/147/CH14/EX14.15/Example14_15.sce b/147/CH14/EX14.15/Example14_15.sce new file mode 100644 index 000000000..757a86dd0 --- /dev/null +++ b/147/CH14/EX14.15/Example14_15.sce @@ -0,0 +1,28 @@ +close();
+clear;
+clc;
+//power of shunt motor 'P', full load line current 'I', armature resistance 'Ra', field resistance 'Rf', brush contant drop 'Vb', core and friction loss 'Pc'
+Vb = 2; //V
+Ra = 0.25; //ohm
+Rf = 230; //ohm
+P = 10; //hp
+V = 230; //V
+I = 40; //A
+Pc = 380; //W
+//input power 'Pi'
+Pi = I*V; //W
+//field-resistance loss 'Pf'
+Pf = (V/Rf)^2 * Rf; //W
+//armature resistance loss 'Pa'
+Pa = (I-1)^2*Ra; //W
+//stray-load loss 'Ps'
+Ps = (1/100)*P*746; //W
+//brush-contact losses 'Pb'
+Pb = Vb*(I-1); //W
+//total loss 'loss'
+loss = Pf+Pa+Ps+Pb+Pc;
+//output power 'Po'
+Po = Pi-loss; //W
+//efficiency 'n'
+n = Po/Pi;
+mprintf("Efficiency of motor, n = %0.1f %%",n*100);
\ No newline at end of file diff --git a/147/CH14/EX14.15/Result14_15.txt b/147/CH14/EX14.15/Result14_15.txt new file mode 100644 index 000000000..3c185eae4 --- /dev/null +++ b/147/CH14/EX14.15/Result14_15.txt @@ -0,0 +1 @@ +Efficiency of motor, n = 87.6 %
\ No newline at end of file |