📄 mustrip.m
字号:
% MUSTRIP Calculate the required width of a microstrip line
%
% [W, EpsEff] = MUSTRIP (H, Z0, EpsR)
% H is the height
% Z0 is the required characteristic impedance
% EpsR is the relative dielectric constant
% W is the required width
% EpsEff is the effective dielectric constant
%
function [W, EpsEff] = mustrip (H, Z0, EpsR)
A = Z0/60*sqrt((EpsR + 1)/2) + (EpsR - 1)/(EpsR + 1)*(0.23 + 0.11/EpsR);
B = 377*pi/2/Z0/sqrt(EpsR);
Wbyd = 8*exp(A)/(exp(2*A)-2);
if (Wbyd > 2),
Wbyd = 2/pi*(B - 1 - log(2*B - 1) + (EpsR - 1)/(2*EpsR)*(log(B - 1) + 0.39 - 0.61/EpsR));
end;
W = Wbyd*H;
EpsEff = (EpsR + 1)/2 + (EpsR - 1)/2*1/sqrt(1 + 12*H/W);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -