summaryrefslogtreecommitdiff
path: root/83/CH3/EX3.1/example_3_1.sce
blob: fc0512a1410d8e12aab50c71f759496c1c8be8b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//Chapter 3
//Example 3.1
//page 87
//To calculate the capacitance to neutral of a single phase line
clear;clc;
r=0.328; //radius of the conductors
D=300; //distance between the conductors
h=750; //height of the conductors

//calculating capacitance neglecting the presence of ground
//using Eq (3.6)
Cn=(0.0242/(log10(D/r)));
printf("\nCapacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.6) is = %0.5f uF/km\n\n",Cn);

//using Eq (3.7)
Cn=(0.0242)/log10((D/(2*r))+((D^2)/(4*r^2)-1)^0.5);
printf("Capacitance to neutral /km of the given single phase line neglecting presence of the earth (using Eq 3.7) is = %0.5f uF/km\n\n",Cn);

//Consudering the effect of earth and neglecting the non uniformity of the charge
Cn=(0.0242)/log10(D/(r*(1+((D^2)/(4*h^2)))^0.5));
printf("Capacitance to neutral /km of the given single phase line considering the presence of the earth and neglecting non uniformity of charge distribution (using Eq 3.26b) is = %0.5f uF/km\n\n",Cn);