📄 doherty_current_voltage.asv
字号:
%The current and voltage waveform of the Doherty carrier and peak power amplifier
%2006-12-15
%wujianfeng
%Sweden;
close all
clear all
k=2;
n=0;
immax=1;
rl=1;
for im=0:0.01:1
n=n+1;
imm(n)=im;
if im<=immax/k
ima(n)=im;
iax(n)=0;
vma(n)=k*rl*(k*im-iax(n));
vmp(n)=k*rl*im;
else
ima(n)=im;
iax(n)=k*(im-immax/k);
vma(n)=k*rl*(k*im-iax(n));
vmp(n)=k*rl*im;
end
end
figure(1);
plot(imm,ima);
hold on
plot(imm,iax);
xlabel('output current of the main amplifier');
ylabel('output current of the main amplifier and auxiliary power amplifier');
title();
figure(2)
plot(imm,vma);
hold on
plot(imm,vmp);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -