doherty_current_voltage.asv

来自「Doherty功放的相关特性的仿真代码」· ASV 代码 · 共 39 行

ASV
39
字号
%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 + =
减小字号Ctrl + -
显示快捷键?