summaryrefslogtreecommitdiff
path: root/1904/CH9/EX9.5
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1904/CH9/EX9.5
downloadScilab-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-x1904/CH9/EX9.5/9_5.jpgbin0 -> 42312 bytes
-rwxr-xr-x1904/CH9/EX9.5/9_5.sce37
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
new file mode 100755
index 000000000..9073abcce
--- /dev/null
+++ b/1904/CH9/EX9.5/9_5.jpg
Binary files differ
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')