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
|
{
"metadata": {
"name": "",
"signature": "sha256:46a30d2a44b077ff88f5e1c8bffb3b3b94d68ba590ab05a9fbab03c747f2c214"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter2:ELECTROMAGNETIC PLANE WAVES"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Ex2.6.5:pg-69"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math \n",
"#(a) Program to find gold-film surface resistance \n",
"t=80*(10**(-10)) #Film Thickness meter\n",
"o=4.1*(10**7) #Bulk conductivity in mhos/m \n",
"p=570*(10**(-10)) #Electron mean free path meter \n",
"of=((3*t*o)/(4*p))*(0.4228 + math.log(p/t)) #the gold-film conductivity is of=(3*t*o/4*p)*(0.4228 + ln(p/t)) \n",
"Rs=1/(t*of) #the gold-film surface resistance is given by Rs=1/(t*of) in Ohms per square\n",
"print\"The gold film surface resistance in Ohms per square is=\",round(Rs,2),\"Ohms/square\"\n",
"\n",
"\n",
"#(b) Program to find the microwave attenuation \n",
"Attenuation=40-20*log10(Rs) #Microwave attenuation \n",
"print\"Microwave Attenuation in db is=\",int(Attenuation),\"db\"\n",
"\n",
"#(c)Light transmittance T\n",
"print\"The LIGHT TRANSMITTANCE T is estimated to be 75%\"\n",
"\n",
"#(d)light reflection loss R\n",
"print\"The LIGHT REFLECTION LOSS R is about 25%\" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The gold film surface resistance in Ohms per square is= 12.14 Ohms/square\n",
"Microwave Attenuation in db is= 18 db\n",
"The LIGHT TRANSMITTANCE T is estimated to be 75%\n",
"The LIGHT REFLECTION LOSS R is about 25%\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Ex2.6.6:pg-74"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
" \n",
"import math \n",
"#(a) Program to find copper-film surface resistance \n",
"t=60*(10**(-10)) #Film Thickness meter\n",
"o=5.8*(10**7) #Bulk conductivity in mhos/m \n",
"p=420*(10**(-10)) #Electron mean free path in meter \n",
"of=((3*t*o)/(4*p))*(0.4228 + math.log(p/t)) #the copper-film conductivity is of=(3*t*o/4*p)*(0.4228 + ln(p/t))\n",
"Rs=1/(t*of) #the copper-film surface resistance is given by Rs=1/(t*of) in Ohms per square\n",
"\n",
"print\"The copper-film surface resistance in Ohms per square is=\",round(Rs,2),\"Ohms/square\"\n",
"\n",
"\n",
"#(b) Program to find the microwave attenuation \n",
"\n",
"Attenuation=40-20*log10(Rs) #Microwave attenuation \n",
"\n",
"print\"Microwave Attenuation in db is=\",int(round(Attenuation)),\"db\"\n",
"\n",
"#(c)Light transmittance T\n",
"\n",
"print\"The LIGHT TRANSMITTANCE T is estimated to be 82%\"\n",
"\n",
"#(d)light reflection loss R\n",
"\n",
"print\"The LIGHT REFLECTION LOSS R is about 18%\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The copper-film surface resistance in Ohms per square is= 11.32 Ohms/square\n",
"Microwave Attenuation in db is= 19 db\n",
"The LIGHT TRANSMITTANCE T is estimated to be 82%\n",
"The LIGHT REFLECTION LOSS R is about 18%\n"
]
}
],
"prompt_number": 2
}
],
"metadata": {}
}
]
}
|