summaryrefslogtreecommitdiff
path: root/sample_notebooks/MukteshChaudhary/ch13.ipynb
blob: 2ae8430e72ff57522da860b953cf1b00863f40d8 (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:d7e6ca5b0b3b9273677b365c5a5c5dfae6429b091a9cdd3065bc98b47d3ef56f"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 13: Detectors and Mixers"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 13.1, Page 546"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import math\n",
      "\n",
      "#Variable declaration\n",
      "P=10000.   #average power (W)\n",
      "V=1000.    #amplitude (V)\n",
      "\n",
      "#Calculations&Results\n",
      "W1=4*math.pi*10**6\n",
      "Wc=2*math.pi*10**8\n",
      "alpha = P/V**2\n",
      "print \"alpha=%.2f\"%alpha\n",
      "#(b)=\n",
      "A=1000+2*225+2*150+2*75\n",
      "peak_power=alpha*A**2\n",
      "print \"A=%.0f V\\npeak_power=%.0f W\"%(A,peak_power)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "alpha=0.01\n",
        "A=1900 V\n",
        "peak_power=36100 W\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 13.2, Page 551"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Variable declaration\n",
      "n=1\n",
      "q=1.602*10**-19  #C\n",
      "k=1.38*10**-23\n",
      "T=290            #K\n",
      "Is=10**-8        #A\n",
      "\n",
      "#Calculations&Results\n",
      "a=q/(n*k*T)\n",
      "Ib=0            #A\n",
      "Rj=1/(a*(Ib+Is))\n",
      "print \"(a)Rj=%d kohm\"%(Rj*10**-3)\n",
      "Ib=100*10**-6\n",
      "Rj=1/(a*(Ib+Is))\n",
      "print \"(b)Rj=%.1f ohm\"%Rj"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a)Rj=2498 kohm\n",
        "(b)Rj=249.8 ohm\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 13.3, Page 557"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Variable declaration\n",
      "fc = 5*10**6   #hz\n",
      "Vm = 1         #V\n",
      "fm = 1*10**3   #Hz\n",
      "\n",
      "#Calculations&Results\n",
      "#(a)\n",
      "#Since the i/p frequency is multiplied by 12\n",
      "fd = 10*12  #Hz\n",
      "print \"Frequency deviation at output = +/-%d KHz\"%fd\n",
      "\n",
      "#(b)\n",
      "fosc = 55*10**6  #i/p signal from oscillator (Hz)\n",
      "fs = fosc+fc+fd*10**3\n",
      "print \"\\nSum frequency at output = %.2f MHz\"%(fs*10**-6)\n",
      "\n",
      "#(c)\n",
      "a=1\n",
      "delf=10*1000\n",
      "fm=1000\n",
      "B=a*delf/fm\n",
      "print \"\\nFrequency deviation = %d\"%B\n",
      "\n",
      "#(d)\n",
      "a=2\n",
      "delf=10*1000\n",
      "fm=500\n",
      "B=a*delf/fm\n",
      "print \"\\nFrequency deviation = %d \"%B"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Frequency deviation at output = +/-120 KHz\n",
        "\n",
        "Sum frequency at output = 60.12 MHz\n",
        "\n",
        "Frequency deviation = 10\n",
        "\n",
        "Frequency deviation = 40 \n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 13.5, Page 573"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Variable declaration\n",
      "IDss=50*10**-3  #mA\n",
      "gm=200*10**-3   #mS\n",
      "VL=.25         #V \n",
      "RL=50          #ohms\n",
      "\n",
      "#Calculations&Results\n",
      "Vp=2*VL         #V\n",
      "#gm=-2*IDss/Vp\n",
      "Vp=2*IDss/gm    #V\n",
      "print \"Vp=%.2f V\"%Vp\n",
      "gc=IDss/(2*Vp)\n",
      "print \"gc=%.e S\"%gc\n",
      "Av=gc*RL\n",
      "print \"Av=%.1f\"%Av"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Vp=0.50 V\n",
        "gc=5e-02 S\n",
        "Av=2.5\n"
       ]
      }
     ],
     "prompt_number": 5
    }
   ],
   "metadata": {}
  }
 ]
}