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/CH4/EX4.6/4_6.sce | |
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/CH4/EX4.6/4_6.sce')
-rwxr-xr-x | 1904/CH4/EX4.6/4_6.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1904/CH4/EX4.6/4_6.sce b/1904/CH4/EX4.6/4_6.sce new file mode 100755 index 000000000..c1f8fc273 --- /dev/null +++ b/1904/CH4/EX4.6/4_6.sce @@ -0,0 +1,32 @@ +//To determine the substation parameters for various Load densities
+//Page 208
+clc;
+clear;
+
+D=[500,500,2000,2000,10000,10000,2000,2000]; //Load Densities in kVA/sq.miles
+TAn=[6,6,3,3,1,1,15,15]; //Substation Area in sq.miles
+VD=[3,6,3,6,3,6,3,6]; //Maximum Total Primary Feeder Voltage drops in percentage
+Vll=[4.16,4.16,4.16,4.16,4.16,4.16,13.2,13.2]; //Base Feeder Voltage in kV
+
+TSn=D.*TAn; //Susbstation Load
+//From the Graphs of feeders vs load desity in the textbook; The Number of feeders are found to be
+
+n=[4,2,5,3,5,4,6,5]; //No of feeders
+
+//Also from the graph, The characteristic or the feeder is determined
+//1-5, 7 are VDL feeders
+//6 and 8 are TL feeders
+
+Sn=TSn./n; //Load Per Feeder
+//To Determine the Load Current
+Il=Sn./(sqrt(3).*Vll);
+
+printf('\na)')
+printf('\nThe Substation Size is\n')
+disp(TSn)
+printf('\nThe Number of Feeders from the Curve is\n')
+disp(n)
+printf('\nAlso From the Curve, 1,2,3,4,5,7 cases are VDL but 6 and 8 case are TL\n')
+printf('\na)')
+printf('\nThe Load Current for 6th Case is %g A, which is less than the ampacities of the main but \nmore than that of the lateral, Hence it is thermally limited but not the main feeder\n',Il(6))
+printf('\nThe Load Current for 8th Case is %g A, which is less than the ampacities of the main but \nmore than that of the lateral, Hence it is thermally limited but not the main feeder\n',Il(8))
|