diff options
Diffstat (limited to '147/CH14/EX14.13')
-rw-r--r-- | 147/CH14/EX14.13/Example14_13.sce | 21 | ||||
-rw-r--r-- | 147/CH14/EX14.13/Result14_13.txt | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/147/CH14/EX14.13/Example14_13.sce b/147/CH14/EX14.13/Example14_13.sce new file mode 100644 index 000000000..fdbb0734f --- /dev/null +++ b/147/CH14/EX14.13/Example14_13.sce @@ -0,0 +1,21 @@ +close();
+clear;
+clc;
+//(a)
+//from solved example 14.12 and 14.9
+Ra = 0.05; //ohm
+V = 230; //V
+Pc = 920 + 1800; //W
+If = 4; //A
+Ia = sqrt(Pc/Ra);
+Il = Ia - If;
+mprintf("(a) At load of %0.2f A ,the generator achieves maximum efficiency\n\n",Il);
+//(b)
+//output power 'Po'
+Po = Il*V; //W
+Pa = Ia^2 * Ra;
+//input power 'Pi'
+Pi = 2*Pa + Po; //W
+//maximum efficiency 'n'
+n = Po/Pi;
+mprintf("(b) Maximum efficiency, n = %0.1f %%",n*100);
\ No newline at end of file diff --git a/147/CH14/EX14.13/Result14_13.txt b/147/CH14/EX14.13/Result14_13.txt new file mode 100644 index 000000000..f96fe5420 --- /dev/null +++ b/147/CH14/EX14.13/Result14_13.txt @@ -0,0 +1,3 @@ +(a) At load of 229.24 A ,the generator achieves maximum efficiency
+
+(b) Maximum efficiency, n = 90.6 %
\ No newline at end of file |