📄 mustripweff.m
字号:
% MUSTRIPWEFF Calculate the effective width of a microstrip line
%
% [Weff] = MUSTRIPWEFF (W, T, H)
% W is the width
% T is the thickness
% H is the height
%
function [Weff] = mustripweff (W, T, H)
if (W < 2*T),
error('Width is too thin');
end;
if (W > H/2/pi),
X = H;
else
X = 2*pi*W;
end;
Weff = W + T/pi*(1 + log(2*X/T));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -