⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fig2_28.m

📁 The intent of the software contained on this CD is to provide support for the material covered in th
💻 M
字号:
%
%   This file computes the input impedance of the
%   short-circuit transmission line as described in Example 2.6
% 
%   Copyright (c) 1999 by P.Bretchko and R.Ludwig
%   "RF Circuit Design: Theory and Practice"
%

close all; % close all opened graphs
figure;    % open a new graph

% define distributed transmission line parameters
L=209.410e-9;  % line inductance in H/m
C=119.510e-12; % line capacitance in F/m

vp=1/sqrt(L*C); % phase velocity
Z0=sqrt(L/C);   % characteristic line impedance

d=0.1;  % line length
N=5000; % number of frequency sampling points

f=1e9+3e9*(0:N)/N;
Z=tan(2*pi*f*d/vp);

plot(f,abs(Z0*Z));
title('Skin depth as a function of frequency');
xlabel('Frequency {\itf}, Hz');
ylabel('Skin depth {\delta}, m');
axis([1e9 4e9 0 500]);
% print -deps 'fig2_28.eps' % if uncommented -> saves a copy of plot in EPS format

⌨️ 快捷键说明

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