striplinez0.m
来自「用matlab中的m文件和Simulik实现rf的经典例子!」· M 代码 · 共 16 行
M
16 行
% STRIPLINEZ0 Calculate the characteristic impedance of a stripline
%
% [Z0] = STRIPLINEZ0 (EpsR, WbyB)
% EpsR is the relative dielectric constant
% WbyB is the ratio of the width to the distance to the ground planes
%
function [Z0] = STRIPLINEZ0 (EpsR, WbyB)
if (WbyB > 0.35),
WeffbyB = WbyB;
else
WeffbyB = WbyB - (0.35 - WbyB)^2;
end;
Z0 = 30*pi/sqrt(EpsR)/(WeffbyB+0.441);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?