summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.16/ch7_ex_16.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH7/EX7.16/ch7_ex_16.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1445/CH7/EX7.16/ch7_ex_16.sce')
-rw-r--r--1445/CH7/EX7.16/ch7_ex_16.sce46
1 files changed, 46 insertions, 0 deletions
diff --git a/1445/CH7/EX7.16/ch7_ex_16.sce b/1445/CH7/EX7.16/ch7_ex_16.sce
new file mode 100644
index 000000000..b878ffd23
--- /dev/null
+++ b/1445/CH7/EX7.16/ch7_ex_16.sce
@@ -0,0 +1,46 @@
+//CHAPTER 7- SINGLE PHASE TRANSFORMER
+//Example 16
+
+disp("CHAPTER 7");
+disp("EXAMPLE 16");
+
+//VARIABLE INITIALIZATION
+va=20000; //apparent power
+v1=2000; //primary voltage in Volts
+v2=200; //secondary voltage in Volts
+R1=2.5; //in Ohms
+R2=0.04; //in Ohms
+X1=8; //in Ohms
+X2=0.07; //in Ohms
+pf2=0.8;
+
+//SOLUTION
+//N1byN2=v1/v2;
+I2=va/v2;
+phi2=acos(pf2);
+
+//
+R_dash_1=R1*((v2/v1)^2);
+X_dash_1=X1*((v2/v1)^2);
+//
+R_e2=R_dash_1+R2;
+X_e2=X_dash_1+X2;
+//disp(sprintf("The total resistance referred to secondary is %f Ω",R_e2));
+//disp(sprintf("The total reactance referred to secondary is %f Ω",X_e2));
+//
+//power factor angle at which regulation is zero is given by tan.phi2=-Re2/Xe2
+phi2=atan(-R_e2/X_e2);
+disp(sprintf("The PF at which the regulation is zero is %f",cos(phi2)));
+//
+//power factor angle at which regulation is maximum is given by tan.phi2=Xe2/Re2
+phi2=atan(X_e2/R_e2);
+disp(sprintf("The PF at which the regulation is maximum is %f",cos(phi2)));
+//R=ercosphi2+vx.sinphi2
+//E2=V2+I2.R
+
+V2=v2-(I2*R_e2*cos(phi2)+I2*X_e2*sin(phi2));
+%reg=(v2-V2)*100/v2;
+disp(sprintf("The maximum value of percent regulation is %f ",%reg));
+disp(" ");
+//
+//END