diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1904/CH9/EX9.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1904/CH9/EX9.5')
-rwxr-xr-x | 1904/CH9/EX9.5/9_5.jpg | bin | 0 -> 42312 bytes | |||
-rwxr-xr-x | 1904/CH9/EX9.5/9_5.sce | 37 |
2 files changed, 37 insertions, 0 deletions
diff --git a/1904/CH9/EX9.5/9_5.jpg b/1904/CH9/EX9.5/9_5.jpg Binary files differnew file mode 100755 index 000000000..9073abcce --- /dev/null +++ b/1904/CH9/EX9.5/9_5.jpg diff --git a/1904/CH9/EX9.5/9_5.sce b/1904/CH9/EX9.5/9_5.sce new file mode 100755 index 000000000..912ed7795 --- /dev/null +++ b/1904/CH9/EX9.5/9_5.sce @@ -0,0 +1,37 @@ +//To determine the setting of the regulator so that the voltage criteria is met
+//Page 478
+clc;
+clear;
+l=10; //Length of the feeder
+s1=1.75;
+ra=0.386;
+xa=0.4809;
+xd=0.1802;
+xL=xa+xd;
+Vb=120;
+pf=0.85; //Power Factor
+S=1100; //Load in kVA
+Vln=7.62; //line to neutral voltage in kV
+Reff=ra*(l-s1)/2;
+Xeff=xL*(l-s1)/2;
+
+//Primary Ratings
+CTp=150; //Current Tranformer
+PTn=63.5; //POtential Transformer
+
+//R Value of the dial
+Rset=(CTp/PTn)*Reff;
+Rsetpu=Rset/Vb;
+
+//X value of the dial
+Xset=(CTp/PTn)*Xeff;
+Xsetpu=Xset/Vb;
+
+VRP=1.0138; //Assumption Made on the Regulating Point
+//Output Voltage of the Regulator
+Vreg=VRP+((S/Vln)*((Rset*pf)+(Xset*sind(acosd(pf))))/(CTp*Vb));
+
+
+printf('\na) The Regulating Voltage is %g pu V\n',Vreg)
+printf('As per Table 9-6; the primary voltage criteria are met by using the R and X settings\n')
+printf('b) The Voltage Profiles are given in the result file attached\n')
|