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

📄 fig3_15.m

📁 射频电路设计:理论与应用:theory and applications 全部源代码
💻 M
字号:
%
%   This file generates the plot shonw in Figure 3-15
% 
%   Copyright (c) 1999 by P.Bretchko and R.Ludwig
%   "RF Circuit Design: Theory and Practice"
%

global Z0;
close all; % close all opened graphs
figure;  % open new graph
smith_chart;

Z0=50; % define characteristic impedance

% define values of normalized resistance 
r=[0.3 0.5 0.7 1];

L=10e-9; % set inductance value to 10nH

% define frequency range
fmin=0.5e9; % minimum frequency (500MHz) 
fmax=4e9;   % maximum frequency (4GHz)

% compute normalized reactance of the inductor
xmin=(j*2*pi*fmin*L)/Z0 % at minimum frequency
xmax=(j*2*pi*fmax*L)/Z0 % and at maximum frequency

% for each value of normalized resistance
for n=1:length(r)
   % plot corresponding arc on the constant resistance circle
   s_ArcR(r(n)*Z0,imag(xmin*Z0),imag(xmax*Z0));
end;

text(-0.4,0.4,'{\bff=500MHz}');
text(0.85,0.3,'{\bff=4GHz}');

% print -deps 'fig3_15.eps' % if uncomment -> saves a copy of plot in EPS format

⌨️ 快捷键说明

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