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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
{
"metadata": {
"name": "",
"signature": "sha256:09b7d26869b043c328670d7c0075696a10aa47c91999b0d80eca2e92e801eeab"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 10 Measuring instruments"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10.1 Page no 289"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"C1=600 #pf\n",
"C2=100 #pf\n",
"f1=2 #MHz\n",
"f2=4 #MHz\n",
"\n",
"#Calculation\n",
"import math\n",
"Cs=(C1-4*C2)/3.0\n",
"L=1/(4*(math.pi)**2*f1**2*(C1+Cs))\n",
"\n",
"#Result\n",
"print\"The value of distributed capacitance is \",round(Cs,2),\"pf\",\"and inductance is \",round(L*10**6,3),\"micro H\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The value of distributed capacitance is 66.67 pf and inductance is 9.499 micro H\n"
]
}
],
"prompt_number": 22
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10.2 Page no 290"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"C1=500 #pf\n",
"C2=110 #pf2\n",
"f1=1 #MHz\n",
"f2=2 #MHz\n",
"\n",
"#Calculation\n",
"import math\n",
"Cs=(C1-4*C2)/3.0\n",
"L=1/(4*(math.pi)**2*f1**2*(C1+Cs))\n",
"\n",
"#Result\n",
"print\"The distributed capacitance is \",Cs ,\"pf\",\"and Value of L is \",round(L*10**6,3),\"micro H\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The distributed capacitance is 20.0 pf and Value of L is 48.712 micro H\n"
]
}
],
"prompt_number": 33
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10.3 Page no 290"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"f1=2 #MHz\n",
"C1=500 #pf\n",
"f2=6 #MHz\n",
"C2=50 #pf\n",
"\n",
"#Calculation \n",
"Cs=(C1-9*C2)/8.0\n",
"\n",
"#Result\n",
"print\"Value of self capacitance is \", Cs,\"pf\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Value of self capacitance is 6.25 pf\n"
]
}
],
"prompt_number": 36
}
],
"metadata": {}
}
]
}
|