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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 08 : Overhead Line Insulators"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 8.1, Page No 183"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"#initialisation of variables\n",
"E3=17.5\n",
"\n",
"#Calculations\n",
"E1=64*E3/89.0\n",
"E2=9*E1/8.0\n",
"E=E1+E2+E3\n",
"\n",
"#Results\n",
"print(\"the maximum voltage that the string of the suspension insulators can withstand=%.2f kV\\n\" %E)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"the maximum voltage that the string of the suspension insulators can withstand=44.24 kV\n",
"\n"
]
}
],
"prompt_number": 1
}
],
"metadata": {}
}
]
}
|