diff options
Diffstat (limited to '3793/CH5/EX5.5/exp_5_5.sce')
-rw-r--r-- | 3793/CH5/EX5.5/exp_5_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3793/CH5/EX5.5/exp_5_5.sce b/3793/CH5/EX5.5/exp_5_5.sce new file mode 100644 index 000000000..a57e5c163 --- /dev/null +++ b/3793/CH5/EX5.5/exp_5_5.sce @@ -0,0 +1,19 @@ +clear;
+clc;
+//case1
+V2=2300;
+S=150;
+V1=11500+V2;
+a=(V1-V2)/V2; //two winding transformer ratio
+
+aa=a+1; //autotransformer ratio
+output=((1+a)/a)*S;
+mprintf("output for 1 case %f KVA\n",output);
+//case 2
+V11=13.8;
+V22=11.5;
+a1=(V11-V22)/V22;
+
+output1=((1+a1)/a1)*S;
+mprintf("output for 2 case %f KVA\n",output1);
+
|