diff options
Diffstat (limited to '3890/CH5/EX5.1')
-rw-r--r-- | 3890/CH5/EX5.1/Ex5_1.png | bin | 0 -> 31529 bytes | |||
-rw-r--r-- | 3890/CH5/EX5.1/Ex5_1.sce | 26 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3890/CH5/EX5.1/Ex5_1.png b/3890/CH5/EX5.1/Ex5_1.png Binary files differnew file mode 100644 index 000000000..093cfc53e --- /dev/null +++ b/3890/CH5/EX5.1/Ex5_1.png diff --git a/3890/CH5/EX5.1/Ex5_1.sce b/3890/CH5/EX5.1/Ex5_1.sce new file mode 100644 index 000000000..f2fc77c29 --- /dev/null +++ b/3890/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,26 @@ +//Electric machines and power systems by Syed A Nasar
+//Publisher:TataMcgraw Hill
+//Year: 2002 ; Edition - 7
+//Example 5.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+Q=2500; //power in KVA
+v=6600; //3phase voltage in v
+pf=-0.8; //power factor
+Xs=10.4; //syncronous reactance in ohm
+ra=0.071; //armature resistance in ohm
+
+
+th=acosd(pf);
+vt=v/(3^(1/2));
+Ia=Q*10^3/((3^(1/2))*v);
+t=cosd(th)-%i*sind(th);
+Iad=Ia*t;
+v1=Iad*Xs;
+v0=vt+%i*v1;
+Reg=(abs(v0)-vt)/vt*100;
+
+printf('The regulation is %f ',Reg)
|