summaryrefslogtreecommitdiff
path: root/Fiber_Optics_Communication_by_H_Kolimbiris/11-Multiplexing.ipynb
blob: 5ae93f49c9b1470cd9155e6bc1568d55b001e871 (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
{
"cells": [
 {
		   "cell_type": "markdown",
	   "metadata": {},
	   "source": [
       "# Chapter 11: Multiplexing"
	   ]
	},
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 11.1: Cross_talk_in_refrence_to_the_number_of_channel.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 11\n",
"//page no 386\n",
"//given\n",
"clc;\n",
"clear all;\n",
"q=4.9*10^-18;           //in m/W.GHz raman  gain slope\n",
"f=100;                  //in GHz\n",
"A=50*10^-6;             //cross sectional area in micro  meter square\n",
"P0=3.5;           //in mW\n",
"Le=10*10^3;\n",
"G=q*f*10^6/2/A;\n",
"N=20;\n",
"mprintf('\n G = %e ',G);\n",
"CT=N*(N-1)*(P0*10^-3*G*Le)/2;\n",
"printf('\n CT(L) = %0.2f ',CT);"
   ]
   }
,
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 11.2: Capacitor_value_of_PLL_section.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 11\n",
"//page no 410\n",
"//given\n",
"clc;\n",
"clear all;\n",
"K0=2*%pi*625;           //in MHz/V\n",
"Ip=0.6;             //in mA\n",
"N=64;           \n",
"w=2.44;             //in Mhz\n",
"Z=5;\n",
"Vout=5;         //in V\n",
"C=(4*K0*10^6*Ip*10^-3*Z)/(2*%pi*N*w*w*10^12);\n",
"printf('\n The value of capacitance is %0.0f nF',C*10^9)"
   ]
   }
,
{
		   "cell_type": "markdown",
		   "metadata": {},
		   "source": [
			"## Example 11.3: Value_of_damping_coefficient.sce"
		   ]
		  },
  {
"cell_type": "code",
	   "execution_count": null,
	   "metadata": {
	    "collapsed": true
	   },
	   "outputs": [],
"source": [
"//Chapter 11\n",
"//page no 410\n",
"//given\n",
"clc;\n",
"clear all;\n",
"K0=2*%pi*625;           //in MHz/V\n",
"Ip=0.35;             //in mA\n",
"N=64;           \n",
"w=2.44;         //in MHz\n",
"Z=5;\n",
"Vout=4;         //in V\n",
"C=22;           //in nF\n",
"Z=sqrt((2*%pi*N*w^2*C)/(4*Ip*K0*0.25))\n",
"printf('\n Zeta is = %0.0f' ,Z)\n",
""
   ]
   }
],
"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
}