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
|
{
"metadata": {
"name": "",
"signature": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter9 - Substations and earthing"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Problem 9.1 - page 252"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from numpy import pi\n",
"#Given Data :\n",
"V=250 #in volt\n",
"f=50 #in Hz\n",
"l=300 #in km\n",
"C_earth=0.03 #in uF\n",
"C=l*C_earth*10**-6 #in F\n",
"XL=1/(3*2*pi*f*C) #in ohm\n",
"print \"Reactance required for the Peterson coil = %.f ohm\" %XL"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Reactance required for the Peterson coil = 118 ohm\n"
]
}
],
"prompt_number": 2
}
],
"metadata": {}
}
]
}
|