summaryrefslogtreecommitdiff
path: root/1904/CH4/EX4.3/4_3.sce
blob: f77e8f2e19f293efcdac938abc8435c29f9b3468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)