diff options
Diffstat (limited to '3760/CH1/EX1.41/Ex1_41.sce')
-rw-r--r-- | 3760/CH1/EX1.41/Ex1_41.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3760/CH1/EX1.41/Ex1_41.sce b/3760/CH1/EX1.41/Ex1_41.sce new file mode 100644 index 000000000..e9499c8cf --- /dev/null +++ b/3760/CH1/EX1.41/Ex1_41.sce @@ -0,0 +1,12 @@ +clc;
+E1=440; // primary supply voltage
+E2=380; // voltage at which load at secondary terminal is being supplied
+l1=40000; // power rating of load in watts
+pf=0.8; // lagging power factor
+I2=l1/(sqrt(3)*E2*pf);
+// per phase KVA input=per phase KVA output
+I1=(E2/E1)*I2;
+In=I2-I1;
+printf('Current in primary branch is %f A\n',I1);
+printf('current in secondary branch is %f A\n',I2);
+printf('current between neutral and tapping points is %f A',In);
|