summaryrefslogtreecommitdiff
path: root/3035/CH6/EX6.4/Ex6_4.sce
blob: 58290a36738346a9f9dbb86e0b911c8b66bd3a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Variable Declaration
E = 40.0        //Safe working stress(kV/cm) rms
d = 1.5         //Conductor diameter(cm)
D = 6.7         //Sheath diameter(cm)
t = 0.1         //Thickness of lead tube(cm)


// Calculation Section
r = d/2                     //Conductor radius(cm)
R = D/2                     //Sheath radius(cm)
r_i = r+((R-r)/2)-t/2       //Internal radius of intersheath(cm)
r_e = r_i + t               //External radius of intersheath(cm)
V_1 = E*r*log(r_i/r)   //Voltage across conductor & intersheath(kV)
V_2 = E*r_e*log(R/r_e) //Voltage across intersheath & earthed sheath(kV)
V = V_1 + V_2               //Safe working voltage with intersheath(kV)
V_no = E*r*log(R/r)    //Safe working voltage without intersheath(kV)

// Result Section
printf('Safe working voltage with intersheath , V = %.2f kV' ,V)
printf('Safe working voltage without intersheath , V = %.2f kV' ,V_no)