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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 7: Transmission Lines"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.1: Inductance_and_outer_conductor_diameter.sci"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Determine inductance per meter and outer conductor diameter\n",
"\n",
"Z0 = 75;\n",
"C = 69e-12;\n",
"k = 2.23;\n",
"d = 0.584;\n",
"\n",
"L = Z0^2*C;\n",
"D = d * 10^(Z0/(138/sqrt(k)));\n",
"\n",
"disp(L, 'Inductance per meter (in H/m)')\n",
"disp(D, 'Outer conductor diameter (in mm)')"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.2: Minimum_value_of_characteristic_impediance.sci"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Determine the minimum value that the characteristic impediance of an air-dielectric parallel-wire line\n",
"\n",
"Zmin = 276*log10(2*1);\n",
"\n",
"disp(Zmin, 'Min. value that char. impd. of an air-dielectric parallel-wire line is (in ohms)')"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.3: Outer_conductor_diameter.sci"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Determine the outer conductor diameter of a coaxial cable\n",
"\n",
"Z0 = 2000;\n",
"k = 2.56;\n",
"d = 0.025;\n",
"\n",
"\n",
"D = d * 10^(Z0/(138/sqrt(k)));\n",
"D1 = D/1e+6;\n",
"D2 = D1/9.44e+12;\n",
"\n",
"disp(D2, 'Outer conductor diameter is (in light years)')"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.4: Charactericstic_impediance.sci"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Determine the charactericstic impediance of the quarter-wave transfomer\n",
"\n",
"Z0 = 200;\n",
"Zl = 300;\n",
"\n",
"Z01 = sqrt(Z0*Zl);\n",
"\n",
"disp(Z01, 'Charactericstic impediance of the quarter-wave transfomer is (in ohms)')"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.5: Reactance_and_characteristic_impedance.sci"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Determine reactance of the stub and the characteristic impedance of the quater-wave transformer, both connected directly to the load\n",
"\n",
"Z0 = 300;\n",
"Zl = 200 + 75*%i;\n",
"Bstub = 1.64e-3;\n",
"\n",
"Yl = 1/Zl;\n",
"X = -1/Bstub;\n",
"Gl = 4.38e-3;\n",
"Rl = 1/Gl;\n",
"\n",
"Z01= sqrt(Z0*Rl);\n",
"\n",
"disp(X, 'Reactance of quarter-wave transformer is (in ohms)')\n",
"disp(Z01, 'Char. imp. of quarter-wave transformer (in ohms)')"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Scilab",
"language": "scilab",
"name": "scilab"
},
"language_info": {
"file_extension": ".sce",
"help_links": [
{
"text": "MetaKernel Magics",
"url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md"
}
],
"mimetype": "text/x-octave",
"name": "scilab",
"version": "0.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|