summaryrefslogtreecommitdiff
path: root/Electronic_and_Electrical_Measuring_Instruments_&_Machines/Chapter3.ipynb
blob: 15b0854c53f9914e318c070c6c3449a826bd70b0 (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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter 3 - Analog to Digital Converters & Digital Voltmeters"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 1 - pg 3_5"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Resolution (mV/LSB) =  20.0\n",
      "digital output voltage (LSBs) =  64.0\n",
      "Binary equivalent of 64 is 0b1000000\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_1,pg 3_5\n",
    "#calculate the Resolution and digital output voltage\n",
    "#given\n",
    "n=8\n",
    "Vifs=5.1\n",
    "Vi=1.28\n",
    "#calculations\n",
    "Res1=2**n\n",
    "Res2=Vifs/((2**n)-1)\n",
    "Res=Res2*1000#in mv/LSB\n",
    "D=Vi/Res2\n",
    "strin=bin(64)\n",
    "#results\n",
    "print\"Resolution (mV/LSB) = \",Res\n",
    "print\"digital output voltage (LSBs) = \",D\n",
    "print\"Binary equivalent of 64 is\",strin"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 2 - pg 3_6"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "quantisation error (mV) =  0.5\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_2,pg 3_6\n",
    "#calculate the quantisation error\n",
    "#given\n",
    "Vifs=4.095\n",
    "n=12.\n",
    "#calculations\n",
    "Qe=Vifs/(((2**n)-1)*2)\n",
    "#results\n",
    "print\"quantisation error (mV) = \",round(Qe*1000.,1)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 3 - pg 3_10"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "In case 1, t2 (ms) =  83.33\n",
      "In case 2, t2 (ms) =  166.66\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_3,pg 3_10\n",
    "#calculate the value of t2 in both cases\n",
    "#given\n",
    "V1=100.*10**-3\n",
    "Vr=100.*10**-3\n",
    "t1=83.33\n",
    "Vi=200.*10**-3#input voltage\n",
    "#calculations\n",
    "t2=(V1/Vr)*t1\n",
    "t22=(Vi/Vr)*t1\n",
    "#results\n",
    "print\"In case 1, t2 (ms) = \",t2\n",
    "print\"In case 2, t2 (ms) = \",t22\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 4 - pg 3_10"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "digital output (counts) =  1000.0\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_4,pg 3_10\n",
    "#calculate the digital output\n",
    "#given\n",
    "fclk=12.*10**3#clock frequency\n",
    "t1=83.33*10**-3\n",
    "V1=100.*10**-3\n",
    "Vr=100.*10**-3\n",
    "#calculations\n",
    "D=fclk*t1*(V1/Vr)\n",
    "#results\n",
    "print\"digital output (counts) = \",round(D,0)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 5 - pg 3_13"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "conversion time (musec) =  9.0\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_5,pg 3_13\n",
    "#calculate the conversion time\n",
    "#given\n",
    "F=1*10**6\n",
    "n=8\n",
    "#calculations\n",
    "T=1./F\n",
    "Tc=T*(n+1)\n",
    "#results\n",
    "print\"conversion time (musec) = \",Tc*10**6\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 6 - pg 3_15"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "maximum input frequency (Hz) =  69.08\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_6,pg 3_15\n",
    "#calculate the maximum input frequency\n",
    "import math\n",
    "#given\n",
    "Tc=9*10**-6\n",
    "n=8\n",
    "#calculations\n",
    "fmax=1./(2*math.pi*Tc*(2**n))\n",
    "#results\n",
    "print\"maximum input frequency (Hz) = \",round(fmax,2)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 7 - pg 3_37"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "least diffrence in readings for 50V range (V) =  0.05\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_7,pg 3_37\n",
    "#calculate the least difference in readings\n",
    "#given\n",
    "n=3.#3 full digits\n",
    "#calculations\n",
    "R=1./(10**n)\n",
    "#for 1V range\n",
    "Res1=1*R\n",
    "#for 50V range\n",
    "Res2=50*R\n",
    "#results\n",
    "print\"least diffrence in readings for 50V range (V) = \",Res2\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 8 - pg 3_38"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "error when reading is 5V (V) =  0.035\n",
      "percent error when reading is 0.1V (percent) =  10.5\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_8,pg 3_38\n",
    "#calculate the percent error \n",
    "#given\n",
    "n=3.\n",
    "#calculations and results\n",
    "R=1./(10**n)\n",
    "#for 10V range\n",
    "R=R*10.\n",
    "err1=R#1-digit error\n",
    "#reading is 5V\n",
    "err=(0.5/100)*5#error due to reading\n",
    "errt=err1+err#total error\n",
    "print\"error when reading is 5V (V) = \",errt\n",
    "\n",
    "#reading is 0.1V\n",
    "err=(0.5/100)*0.1#error due to reading\n",
    "errt=err+err1#total error\n",
    "errp=(errt/0.1)*100\n",
    "print\"percent error when reading is 0.1V (percent) = \",errp"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 9 - pg 3_38"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "senstivity of meter (V) =  1e-06\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_9,pg 3_38\n",
    "#calculate the senstivity of meter\n",
    "#given\n",
    "n=4.\n",
    "fsmin=10*10**-3#full scale value on min. range\n",
    "#calculations\n",
    "R=1/(10**n)\n",
    "S=fsmin*R\n",
    "#results\n",
    "print\"senstivity of meter (V) = \",S\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 10 - pg 3_39"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "resolution =  0.0001\n",
      "12.98 would be displayed as 12.980 for 10V range\n",
      "\n",
      "0.6973 would be displayed as 0.6973 for 1V range\n",
      "\n",
      "0.6973 would be displayed as 0.697 for 10V range\n",
      "\n"
     ]
    }
   ],
   "source": [
    "#Chapter-3,Example3_10,pg 3_39\n",
    "#calculate the resolution\n",
    "#given\n",
    "n=4.\n",
    "#calculations\n",
    "R1=1./(10**n)\n",
    "#for 10V range\n",
    "R=10*R1\n",
    "#results\n",
    "print \"resolution = \",R1\n",
    "print\"12.98 would be displayed as 12.980 for 10V range\\n\"\n",
    "#for 1V range\n",
    "R=1*R\n",
    "print\"0.6973 would be displayed as 0.6973 for 1V range\\n\"\n",
    "#for 10V range\n",
    "print\"0.6973 would be displayed as 0.697 for 10V range\\n\"\n"
   ]
  }
 ],
 "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.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}