diff options
Diffstat (limited to '503/CH3/EX3.6')
-rwxr-xr-x | 503/CH3/EX3.6/ch3_6.sci | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/503/CH3/EX3.6/ch3_6.sci b/503/CH3/EX3.6/ch3_6.sci new file mode 100755 index 000000000..9523688a2 --- /dev/null +++ b/503/CH3/EX3.6/ch3_6.sci @@ -0,0 +1,33 @@ +// To find the voltage at the load end of the transformer when load is drawing transformer current
+
+clc;
+
+I=20/2; //rated load current(hv side)
+
+Z1=[.25,1.4]; //impedence of feeder (REAL,IMAGINERY)
+Z2=[.82,1.02]; //impedence of transformer (REAL,IMAGINERY)
+
+Z=Z1+Z2;
+disp(Z,'Z(ohm)');
+
+pf=.8;
+phi=acosd(pf);
+
+//from phasor diagram
+
+R=Z(1);
+X=Z(2);
+AF=I*X*cosd(phi);
+FE=I*R*sind(phi);
+AE=AF-FE;
+OA=2000;
+OE=sqrt(OA^2-AE^2);
+
+BD=I*R*cosd(phi);
+DE=I*X*sind(phi);
+BE=BD+DE;
+V1=OE; disp(V1,'V1(V)');
+V2=V1-BE; disp(V2,'V2(V)');
+
+loadvol=V2/10; //referred to LV side
+disp(loadvol,'load voltage(V)');
|