summaryrefslogtreecommitdiff
path: root/1904/CH4/EX4.2/4_2.sce
blob: afa20b8f9d9e11a3d2f8088662d585d5d97efc81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//To Calculate the percent voltage drop in the main for a lumped load
//Page 202
clc;
clear;

K=0.01; //Percentage Value
Sn=500; //Load in kVA
pf=0.9; //Lagging
s=1; //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)