summaryrefslogtreecommitdiff
path: root/Electronic_Devices_And_Circuits/EDC_ch_9.ipynb
blob: d6016975491adf9ff7adb2fbe12daa3f8c1c349e (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
{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 9: Uninjunction Transistor"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "example 9.1, Page No.310"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Stand of voltage and peak point Voltage\n",
      "import math\n",
      "#variable declaration\n",
      "\n",
      "VBB=20                       #in volt\n",
      "VB=0.7                       #in volt(For Si)\n",
      "ETA=0.6                      #intrinsic stand off ratio\n",
      "\n",
      "#Part (i)\n",
      "#calculations\n",
      "StandOffVoltage=ETA*VBB;     #in volt\n",
      "\n",
      "#Resuly\n",
      "print(\"\\n(i)\\nStand Off Voltage in volts :%.0f\"%StandOffVoltage)\n",
      "\n",
      "#Part (ii)\n",
      "#calculations\n",
      "VP=ETA*VBB+VB               #in volts\n",
      "\n",
      "#Result\n",
      "print(\"\\n(ii)\\nPeak point Voltage in volts : %.1f\"%VP)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(i)\n",
        "Stand Off Voltage in volts :12\n",
        "\n",
        "(ii)\n",
        "Peak point Voltage in volts : 12.7\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "example 9.2, Page no. 310"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Time period of sawtooth waveform\n",
      "import math\n",
      "\n",
      "#variable declaration\n",
      "VP=10.0                                   #in volt\n",
      "R=100.0                                   #in Kohm\n",
      "C=1000.0                                  #in pF\n",
      "VBB=20.0                                  #in Volts\n",
      "ETA=VP/VBB                                #intrinsic stand off ratio\n",
      "\n",
      "#calculations\n",
      "T=R*10**3*C*10**-12*math.log(1/(1-ETA))   #in sec\n",
      "\n",
      "#Resullt\n",
      "print(\"Time period of sawtooth wave in micro seconds : %.2f\"%(T*10**6))"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Time period of sawtooth wave in micro seconds : 69.31\n"
       ]
      }
     ],
     "prompt_number": 8
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "example 9.3, Page No.311"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Resistances RB1 and RB2\n",
      "import math\n",
      "#variable declaration\n",
      "RBB=10                                #in Kohm\n",
      "ETA=0.6                               #intrinsic stand off ratio\n",
      "\n",
      "#calculation\n",
      "RB1=ETA*RBB                           #in Kohm\n",
      "RB2=RBB-RB1                           #in Kohm\n",
      "\n",
      "#Result\n",
      "print(\"Resistance RB1 in Kohm :%.0f\"%RB1)\n",
      "print(\"Resistance RB2 in Kohm :%.0f\"%RB2)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Resistance RB1 in Kohm :6\n",
        "Resistance RB2 in Kohm :4\n"
       ]
      }
     ],
     "prompt_number": 10
    }
   ],
   "metadata": {}
  }
 ]
}