blob: be27a465c6946ee45e16bddf03e6092c4fa4807c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
//Electric Power Generation, Transmission and Distribution by S.N.Singh
//Publisher:PHI Learning Private Limited
//Year: 2012 ; Edition - 2
//Example 15.3
//Scilab Version : 6.0.0 ; OS : Windows
clc;
clear;
V=11; //Supply voltage in kV
die_strength=50; //Dielectric strength of conductor in kV/cm
Sf=2; //Safety factor
e=2.718; //Constant value
E_max=die_strength/Sf; //Maximum stress in kV/cm
R=11*e/25; //Outer insulation radius in cm
r=R/e; //Radius of the conductor in cm
D=2*r; //Diameter of the conductor in cm
printf("\nThe radius and diameter of a single conductor cable is %.2f cm and %.2f cm",r,D);
|