summaryrefslogtreecommitdiff
path: root/1904/CH4/EX4.3/4_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1904/CH4/EX4.3/4_3.sce')
-rwxr-xr-x1904/CH4/EX4.3/4_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1904/CH4/EX4.3/4_3.sce b/1904/CH4/EX4.3/4_3.sce
new file mode 100755
index 000000000..f77e8f2e1
--- /dev/null
+++ b/1904/CH4/EX4.3/4_3.sce
@@ -0,0 +1,13 @@
+//To Calculate percent voltage drop in the main for a uniformly distributed 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; //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)