summaryrefslogtreecommitdiff
path: root/1904/CH4/EX4.4/4_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1904/CH4/EX4.4/4_4.sce')
-rwxr-xr-x1904/CH4/EX4.4/4_4.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1904/CH4/EX4.4/4_4.sce b/1904/CH4/EX4.4/4_4.sce
new file mode 100755
index 000000000..03e7bc1eb
--- /dev/null
+++ b/1904/CH4/EX4.4/4_4.sce
@@ -0,0 +1,13 @@
+//To Calculate percent voltage drop in the main for a uniformly increasing load
+//Page 203
+clc;
+clear;
+
+K=0.01; //Percentage Value
+Sn=500; //Load in kVA
+pf=0.9; //Lagging
+l=1; //Total Length of the feeder
+s=l*2/3; //effective Length of the feeder
+VD=s*K*Sn; //Voltage drop in percent
+
+printf('The Percent Voltage drop in the Main is %g percent\n',VD)