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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 11 : Neutral Grounding"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 11.1, Page No 251"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"#initialisation of variables\n",
"C1=2*math.pi*(10**-9)/(36*math.pi*math.log((4*4*8)**(1.0/3)/(10*(10**-3))))\n",
"\n",
"#Calculations\n",
"C=C1*192*(10**9) #capacitance per phase (micro farad)\n",
"L=(10)**6.0/(3*314*314*C)\n",
"V=132.0 #voltage (kV)\n",
"MVA=V*V/(3.0*314*L)\n",
"\n",
"#Results\n",
"print(\"inductance ,L=%.2f H\" %L)\n",
"print(\"MVA rating of suppressor coil =%.3f MVA per coil\" %MVA)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"inductance ,L=1.97 H\n",
"MVA rating of suppressor coil =9.379 MVA per coil\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 11.2, Page No 252"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"#initialisation of variables\n",
"wL=1.0/(3*314*(10)**-6)\n",
"\n",
"#Calculations\n",
"print(\"(i)inductive reactance for 100 percent of the length of line=%.1f ohms\" %wL)\n",
"wL=10.0**6/(3*314*.9)\n",
"\n",
"#Results\n",
"print(\"(ii)inductive reactance for 90percent of the length of line=%.1f ohms\" %wL)\n",
"wL=1.0/(3*314*(10)**-6)/.8\n",
"print(\"(iii)inductive reactance for 80 percent of the length of line=%.1f ohms\" %wL)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(i)inductive reactance for 100 percent of the length of line=1061.6 ohms\n",
"(ii)inductive reactance for 90percent of the length of line=1179.5 ohms\n",
"(iii)inductive reactance for 80 percent of the length of line=1327.0 ohms\n"
]
}
],
"prompt_number": 2
}
],
"metadata": {}
}
]
}
|