summaryrefslogtreecommitdiff
path: root/Electronic_Communication_by_D._Roddy/Chapter15_Radio_Wave_Propogation.ipynb
blob: 3cb6638eda73e37facb09b5a90be6857abe5bbfd (plain)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter15 Radio Wave Propogation"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.2.1,Pg.no.538"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The free−space transmission loss is 195.67\n",
      "The received power 5.42e-12 watts\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "ht=36000   #height of satellite in km\n",
    "f=4000     #freq used in MHz\n",
    "Gt=15.0    #transmitting antenna gain\n",
    "Gr=45.0    #receiving antenna gain\n",
    "#A) Determination of free−space transmission loss\n",
    "L=32.5+20*math.log10(ht)+20*math.log10(f)\n",
    "L=round(L,2)\n",
    "print 'The free−space transmission loss is',L\n",
    "#B) Determination of received power Pr\n",
    "Pt=200.0    #transmitted power in watt\n",
    "Pr_Pt=Gt+Gr-L    #power ration in dB\n",
    "Pr_Pt_watt=10**(Pr_Pt/10)    #power ratio in watts\n",
    "#Therefore \n",
    "Pr=Pt*Pr_Pt_watt*10**12\n",
    "Pr=round(Pr,2)*10**-12\n",
    "print 'The received power',Pr,'watts'"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.2.2,Pg.no.539"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The open−ckt voltage induced is 282.42 uV\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "from math import pi,sqrt\n",
    "Pr=10.0   #radiated power in watt\n",
    "f=150.0   #freq used in MHz\n",
    "d2=50.0   #distance of dipole in km\n",
    "#Therefore open−ckt voltage induced is given as\n",
    "Vs=sqrt(30*Pr*1.64)/(d2*10**3)*2/pi\n",
    "Vs=Vs*10**6\n",
    "Vs=round(Vs,2)\n",
    "print 'The open−ckt voltage induced is',Vs,'uV'"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.3.1,Pg.no.545"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Field strength at a receiving antenna is 11.02 uV/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "from math import pi\n",
    "Pt=100    #transmitted power\n",
    "f=150     #freq used in MHz\n",
    "d1=20     #height of transmitting antenna in m\n",
    "Gt=1.64   #transmitting antenna gain\n",
    "ht=2      #height of receiving antenna in m\n",
    "d2=40     #distance in km\n",
    "c=3*10**8\n",
    "wl=c/(f*10**6)\n",
    "E0=sqrt(30*Pt*Gt)   #Field strength at a receiving antenna is\n",
    "ER=(E0*4*pi*d1*ht)/(wl*(d2*10**3)**2)\n",
    "ER=ER*10**6\n",
    "ER=round(ER,2)\n",
    "print 'Field strength at a receiving antenna is',ER,'uV/m'"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.3.2,Pg.no.548"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The maximum range is 25.1 miles\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "from math import sqrt\n",
    "ht1=100\n",
    "ht2=60    #antenna heights in ft\n",
    "dmax_miles=sqrt(2*ht1)+sqrt(2*ht2)\n",
    "dmax_miles=round(dmax_miles,2)\n",
    "print 'The maximum range is',dmax_miles,'miles' "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.4.1,Pg.no.560"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "d= 178.8 km\n",
      "d= 10382.4 km\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "from math import pi\n",
    "ht=200   #virtual height in km\n",
    "a=6370   #in km\n",
    "B_degree=20\n",
    "B_rad=20*pi/180   #angle of elevation in degree\n",
    "#The flat−earth approximation gives\n",
    "d=2*ht/math.tan(B_degree)\n",
    "d=round(d,1)\n",
    "print 'd=',d,'km'\n",
    "#By using radian measures for all angles\n",
    "d=2*a*(((pi/2)-B_rad)-(math.asin(a*math.cos(B_degree)/(a+ht) )))\n",
    "d=round(d,1)\n",
    "print 'd=',d,'km'"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 15.7.1,Pg.no.574"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The attenuation coeff is 0.04 N/m\n",
      "The attenuation coeff in dB/m is 0.347 dB/m\n",
      "The attenuation coeff is 4.0 N/m\n",
      "The attenuation coeff in dB/m is 34.7 dB/m\n"
     ]
    }
   ],
   "source": [
    "import math\n",
    "from math import pi,sqrt\n",
    "conductivity = 4    #measured in S/m\n",
    "rel_permittivity =80\n",
    "u=4*pi*10**-7\n",
    "f1=100              #measured in Hz\n",
    "f2=10**6            #measured in Hz\n",
    "#A)first it is necessary to evaluate the ratio of conductivity /w*rel permittivity\n",
    "w1=2*pi*f1\n",
    "r=conductivity/w1*rel_permittivity\n",
    "#Therefore we have to use following eq to calculate the attenuation coeff as\n",
    "a=sqrt(w1*conductivity*u/2)\n",
    "a=round(a,3)\n",
    "print 'The attenuation coeff is',a,'N/m'\n",
    "#By using the conversion factor N=8.686 dB\n",
    "a_dB=a*8.686\n",
    "a_dB=round(a_dB,3)\n",
    "print 'The attenuation coeff in dB/m is',a_dB,'dB/m'\n",
    "w2=2*pi*f2\n",
    "r=conductivity/w2*rel_permittivity\n",
    "a=sqrt(w2*conductivity*u/2)\n",
    "a=round(a,1)\n",
    "print 'The attenuation coeff is',a,'N/m'\n",
    "#By using the conversion factor 1N=8.686 dB\n",
    "a_dB=a*8.686\n",
    "a_dB=round(a_dB,1)\n",
    "print 'The attenuation coeff in dB/m is',a_dB,'dB/m'"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 2",
   "language": "python",
   "name": "python2"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 2
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython2",
   "version": "2.7.10"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}