diff options
Diffstat (limited to '3760/CH1/EX1.37/Ex1_37.sce')
-rw-r--r-- | 3760/CH1/EX1.37/Ex1_37.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3760/CH1/EX1.37/Ex1_37.sce b/3760/CH1/EX1.37/Ex1_37.sce new file mode 100644 index 000000000..9ed4f1f8e --- /dev/null +++ b/3760/CH1/EX1.37/Ex1_37.sce @@ -0,0 +1,12 @@ +clc;
+E1=3300; // rated phase voltage of primary of a three phase transformer
+v=360; // voltage injected in open delta h v winding to circulate full load current
+vph=v/3; // voltage across each phase
+P=300; // rated KVA of transformer
+Pph=P/3; // KVA per phase
+Iph=(Pph*1000)/E1; // per phase current
+z=vph/Iph;
+printf('Per Phase leakage impedance is %f ohms\n',z);
+zb=E1/Iph; // base impedance
+zpu=z/zb;
+printf('leakage impedance per phase in per unit system is %f p.u',zpu);
|