summaryrefslogtreecommitdiff
path: root/1184/CH16
diff options
context:
space:
mode:
Diffstat (limited to '1184/CH16')
-rwxr-xr-x1184/CH16/EX16.1/Ex16_1.sce16
-rwxr-xr-x1184/CH16/EX16.2/Ex16_2.sce13
-rwxr-xr-x1184/CH16/EX16.3/Ex16_3.sce6
-rwxr-xr-x1184/CH16/EX16.4/Ex16_4.sce17
-rwxr-xr-x1184/CH16/EX16.5/Ex16_5.sce16
5 files changed, 68 insertions, 0 deletions
diff --git a/1184/CH16/EX16.1/Ex16_1.sce b/1184/CH16/EX16.1/Ex16_1.sce
new file mode 100755
index 000000000..59f876722
--- /dev/null
+++ b/1184/CH16/EX16.1/Ex16_1.sce
@@ -0,0 +1,16 @@
+//Example 16-1, Page No - 616
+
+clear
+clc
+
+Zsrc =50
+Zld =136
+f =5800*10^6
+Er =2.4
+Zq =(Zsrc * Zld)^0.5
+Vp =1/(Er)^0.5
+lamda = 300/f
+len = (lamda/4)*38.37*Vp
+
+printf('The required impedance is %.2f ohm',Zq)
+printf('\n\n The length of the microstrip %.2f inches',len*10^6)
diff --git a/1184/CH16/EX16.2/Ex16_2.sce b/1184/CH16/EX16.2/Ex16_2.sce
new file mode 100755
index 000000000..656e869a8
--- /dev/null
+++ b/1184/CH16/EX16.2/Ex16_2.sce
@@ -0,0 +1,13 @@
+//Example 16-2,Page No-623
+
+clear
+clc
+
+w=0.65
+h=0.38
+
+fco = 300/(2*((0.65*2.54)/100))
+f =1.42*fco
+
+printf('The cutoff frequency of the %.3f Ghz',fco/10^3)
+printf('\n\n Operating frequency of the wavwguide is %.2f Ghz',f/10^3)
diff --git a/1184/CH16/EX16.3/Ex16_3.sce b/1184/CH16/EX16.3/Ex16_3.sce
new file mode 100755
index 000000000..db0428eb3
--- /dev/null
+++ b/1184/CH16/EX16.3/Ex16_3.sce
@@ -0,0 +1,6 @@
+//Example 16-3,Page No- 623
+
+clear
+clc
+
+printf('The c band is approximately 4 to 6 Ghz since a waveguide \n acts as a high pass filter with cut off frequency of \n 9.08 Ghz it will not pass c band signal')
diff --git a/1184/CH16/EX16.4/Ex16_4.sce b/1184/CH16/EX16.4/Ex16_4.sce
new file mode 100755
index 000000000..dceb97208
--- /dev/null
+++ b/1184/CH16/EX16.4/Ex16_4.sce
@@ -0,0 +1,17 @@
+//Example 16-4, page No - 648
+
+clear
+clc
+
+lamda1 =5
+f2 = 15*10^9
+D=1.524
+
+f1=984/lamda1
+lamda2 =300/f2
+G = (6*(D/lamda2)^2)
+B = 70/(D/lamda2)
+
+printf('The lowest possible oprerating frequency is %.1f Mhz ',f1)
+printf('\n\n The gain at 15 Ghz is %.1f ',G/10^12)
+printf('\n\n The beam width at 15Ghz is %.2f degree',B*10^6)
diff --git a/1184/CH16/EX16.5/Ex16_5.sce b/1184/CH16/EX16.5/Ex16_5.sce
new file mode 100755
index 000000000..26c4549f3
--- /dev/null
+++ b/1184/CH16/EX16.5/Ex16_5.sce
@@ -0,0 +1,16 @@
+//Example 16-5,Page No - 661
+
+clear
+clc
+
+T = 9.2
+theta = 20
+sin20 = 0.342
+
+D_nautical = T/12.36
+D_statute =D_nautical*0.87
+A = D_statute*0.342
+
+
+printf('\nThe line of distance to the aircraft in \nthe statute miles %.3f ',D_statute)
+printf('\n\nThe altitude of the aircraft is %.2f mi and in feet it is 1161.6',A)