Complete the code to calculate the characteristic impedance of a microstrip trace using the simplified formula.
Z0 = 87 / sqrt([1] + 1.41) * log10(5.98 * h / (0.8 * w + t))
The characteristic impedance depends on the dielectric constant (er) of the substrate.
Complete the code to calculate the effective dielectric constant for a microstrip trace.
e_eff = ([1] + 1) / 2 + ([1] - 1) / 2 * (1 / sqrt(1 + 12 * h / w))
The effective dielectric constant is calculated using the substrate dielectric constant (er).
Fix the error in the formula to calculate the impedance of a stripline trace.
Z0 = 60 / sqrt([1]) * log(4 * h / (0.67 * w + t))
The impedance formula requires the dielectric constant (er) under the square root.
Fill both blanks to complete the formula for impedance of a coplanar waveguide.
Z0 = [1] / sqrt([2]) * K(k') / K(k)
The formula uses 30 * pi in the numerator and the dielectric constant (er) under the square root.
Fill all three blanks to complete the formula for microstrip impedance considering trace thickness.
Z0 = [1] / sqrt([2]) * log(1 + 4 * h / ([3] + t))
The formula uses 60 in the numerator, dielectric constant (er) under the root, and trace width (w) in the denominator inside the log.
