diff options
Diffstat (limited to '1076/CH13/EX13.11')
-rwxr-xr-x | 1076/CH13/EX13.11/13_11.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1076/CH13/EX13.11/13_11.sce b/1076/CH13/EX13.11/13_11.sce new file mode 100755 index 000000000..2f35907df --- /dev/null +++ b/1076/CH13/EX13.11/13_11.sce @@ -0,0 +1,19 @@ +clear
+clc
+
+G1=50
+H1=8
+
+G2=100
+H2=4
+Gb=100
+
+Ha=(H1*G1/Gb) + (H2*G2/Gb)
+mprintf("\n(a)Ha= %d MJ/MVA", Ha)
+
+Hb=Ha*2
+mprintf("\n(b)Hb= %d MJ/MVA", Hb)
+
+He= (Ha*Hb)/(Ha+Hb)
+mprintf("\n(c)He= %.3f MJ/MVA", He)
+
|