summaryrefslogtreecommitdiff
path: root/3773/CH24/EX24.5/Ex24_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3773/CH24/EX24.5/Ex24_5.sce')
-rw-r--r--3773/CH24/EX24.5/Ex24_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3773/CH24/EX24.5/Ex24_5.sce b/3773/CH24/EX24.5/Ex24_5.sce
new file mode 100644
index 000000000..641387b43
--- /dev/null
+++ b/3773/CH24/EX24.5/Ex24_5.sce
@@ -0,0 +1,15 @@
+//Chapter 24: Space Wave Propagation
+//Example 24-9.5
+clc;
+
+//Variable Initialization
+h = 1000 //Height of duct (m)
+delM = 0.036 //Change in refractive modulus (unitless)
+c = 3e8 //Speed of light (m/s)
+
+//Calculations
+wl_max = 2.5*h*sqrt(delM*1e-6) //Maximum wavelength (m)
+fmax = c/wl_max //Maximum frequency (Hz)
+
+//Result
+mprintf("The maximum frequency that can be transmitted is %.1f MHz", fmax/1e6)