summaryrefslogtreecommitdiff
path: root/Fiber_Optics_Communication_by_H_Kolimbiris/13-Networks.ipynb
blob: 037186bbbd22d597550d6bf2f19d3f105a0333fb (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
{
"cells": [
 {
		   "cell_type": "markdown",
	   "metadata": {},
	   "source": [
       "# Chapter 13: Networks"
	   ]
	},
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 13.1: Calculate_R9_R7_R8_C4.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 13\n",
"//page no 568\n",
"//given\n",
"clc;\n",
"clear all;\n",
"Vcc=5;                  //in V\n",
"Vf=1.5;             //in V\n",
"If=60;              //in mA\n",
"B=3.97;\n",
"N=3;\n",
"R9=(Vcc-Vf)*(B+1)/If/10^-3;\n",
"printf('\n R9 = %0.0f ohm\n',R9);\n",
"R7=R9/2/B-3/N;\n",
"printf('\n R7 = %0.1f ohm\n',R7);\n",
"R8=R9/2/B;\n",
"printf('\n R8 = %0.1f ohm\n',R8);\n",
"C4=2*10^-9/R8;\n",
"printf('\n C4 = %0.0f pF',C4*10^12);\n",
""
   ]
   }
,
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 13.2: Calculate_Led_If_R3_C4.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 13\n",
"//page no 569\n",
"//given\n",
"clc;\n",
"clear all;\n",
"Vu3=1.24;           //in V\n",
"Vbeq3=0.7;          //in V\n",
"Vbeq4=0.7;          //in V\n",
"R5=17.5;            //in Ohm\n",
"R6=17.5;            //in Ohm\n",
"Voh=5;          //in V\n",
"Vol=0;          //in V\n",
"If=(Vu3-Vbeq3)/R5+(Vu3-Vbeq4)/R6;\n",
"printf('\n If= %0.1f mA\n',If*1000);\n",
"R3=(Voh-Vol)/If;\n",
"printf('\n R3= %0.0f ohm\n',R3);\n",
"C4=2*10^-9/R3;\n",
"printf('\n C4= %0.0f pF\n',C4*10^12);\n",
"//Chapter 13\n",
"//page no 581\n",
"//given\n",
"disp('Page number 581 again  Example 13-2 (numbering mistake)')\n",
"Er=4.9;\n",
"h=5;                //in mils\n",
"w=10;                //in mils\n",
"t=0.5;                //in mils\n",
"Z=60/sqrt(0.475*Er+0.67)*log(4*h/0.67/(0.8*w+t));\n",
"printf('\n Z = %0.1f ohm\n',Z);\n",
"tpd=1.017*sqrt(0.475*Er+0.67);\n",
"printf('\n tpd = %0.2f ns/ft\n',tpd);\n",
"Tpd=tpd*1000/12;           //converted into ps/in\n",
"printf('\n tpd = %0.2f ps/in\n',Tpd);\n",
"Co=Tpd/Z;\n",
"printf('\n Co = %0.1f pF/in\n',Co);\n",
""
   ]
   }
,
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 13.3: Characteristic_impedance_and_propagation_delay.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 13\n",
"//page no 583\n",
"//given\n",
"clc;\n",
"clear all;\n",
"Er=4.7;\n",
"b=10;                //in mils\n",
"w=4;                //in mils\n",
"t=0.5;                //in mils\n",
"Z=60/sqrt(Er)*log(4*b/0.67/%pi/(0.8*w+t));\n",
"printf('\n Z = %0.2f ohm\n',Z);\n",
"tpd=1.017*sqrt(Er);\n",
"printf('\n tpd = %0.1f ns/ft\n',tpd);\n",
"Tpd=tpd*1000/12;           //converted into ps/in\n",
"printf('\n Also,tpd = %0.0f ps/in\n',Tpd);//answer is slightly different due to rounding off "
   ]
   }
],
"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
}