Microstrip Patch Antenna Calculator |link| Official

# Effective permittivity ereff = (er + 1)/2 + ((er - 1)/2) * (1 / math.sqrt(1 + 12 * h / W_m))

# Inset feed for 50 ohms target_Z = 50 if target_Z < R_edge: y0_m = (L_m / math.pi) * math.acos(math.sqrt(target_Z / R_edge)) y0_mm = y0_m * 1000 else: y0_mm = None # cannot match with inset; use other method microstrip patch antenna calculator

import math def microstrip_patch_calc(freq_GHz, er, h_mm): """ Calculate rectangular microstrip patch antenna dimensions. freq_GHz : resonant frequency in GHz er : relative permittivity of substrate h_mm : substrate height in mm Returns dict with width, length, eff_permittivity, delta_L, inset_50 """ c = 299792458 # speed of light m/s f = freq_GHz * 1e9 h = h_mm / 1000 # convert to meters W_m = (c / (2 * f)) * math.sqrt(2 / (er + 1)) W_mm = W_m * 1000 # Effective permittivity ereff = (er + 1)/2

# Fringing extension num = (ereff + 0.3) * (W_m / h + 0.264) den = (ereff - 0.258) * (W_m / h + 0.8) delta_L_m = 0.412 * h * (num / den) delta_L_mm = delta_L_m * 1000 microstrip patch antenna calculator

Related Articles

Back to top button