Chapter 08 : Overhead Line Insulators

Example 8.1, Page No 183

In [1]:
import math
#initialisation of variables
E3=17.5

#Calculations
E1=64*E3/89.0
E2=9*E1/8.0
E=E1+E2+E3

#Results
print("the maximum voltage that the string of the suspension insulators can withstand=%.2f kV\n" %E)
the maximum voltage that the string of the suspension insulators can withstand=44.24 kV