blob: 7404e7d38f23052e348c8eeca001d73412dd3b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter 8: Helical Antennas
//Example 8-5.1
clc;
//Variable Initialization
w = 5 //Width of flattened tubing at termination (mm)
Er = 2.7 //Relative permittivity of the sheet
Z0 = 50 //Characteristic impedance of the sheet
//Calculation
h = w/((377/(sqrt(Er)*Z0))-2)
//Result
mprintf("The required thickness of the polystyrene sheet is %.1f mm",h)
|