stripline.m

来自「用matlab中的m文件和Simulik实现rf的经典例子!」· M 代码 · 共 21 行

M
21
字号
% STRIPLINE  Calculate the required width of a stripline
% 
%    [W] = STRIPLINE (H, Z0, EpsR) 
%      H is the height
%      Z0 is the required characteristic impedance
%      EpsR is the relative dielectric constant
%      W is the required width
%      

function [W] = stripline (H, Z0, EpsR)

x = 30*pi/sqrt(EpsR)/Z0 - 0.441;

if (sqrt(EpsR)*Z0 < 120),
  Wbyb = x;
else
  Wbyb = 0.85 - sqrt(0.6 - x);
end;

W = Wbyb*H;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?