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

📄 rwg3.m

📁 通信天线建模与MATLAB仿真分析原书中的代码
💻 M
字号:
%RWG3-FREQUENCY LOOP 
%   Calculates the impedance matrix using function IMPMET
%   and solves MoM equations.
%   Takes into account lumped elements (L, C, R) - antenna load 
%   Uses the mesh file from RWG2, mesh2.mat, as an input.
%
%   The following parameters need to be specified prior to 
%   calculations:
%   
%   Number of frequency steps           NumberOfSteps
%   Lower frequency                     FreqStart
%   Upper frequency                     FreqStop
%   Dielectric constant (SI)            epsilon_
%   Magnetic permeability (SI)          mu_
%
%   Number of lumped elements               LNumber
%   Lumped element locations [x y z]        LoadPoint                       
%   Vector of L, C, and R [L C R]           LoadValue                   
%   "Direction" of lumped element [x y z]   LoadDir                 
%
%   Copyright 2002 AEMM. Revision 2002/03/26
%   Chapter 9

clear all
%Load the data
load('mesh2');

%Frequency series parameters
NumberOfSteps=200;
FreqStart   =25e6;      %in Hz
FreqStop    =500e6;      %in Hz
step=(FreqStop-FreqStart)/(NumberOfSteps-1);

%EM parameters
epsilon_    =8.854e-012;
mu_         =1.257e-006;
%speed of light 
c_=1/sqrt(epsilon_*mu_);
%free-space impedance 
eta_=sqrt(mu_/epsilon_);

%Contemporary variables - metal impedance matrix
for m=1:EdgesTotal
    RHO_P(:,:,m)=repmat(RHO_Plus(:,m),[1 9]);   %[3 9 EdgesTotal]
    RHO_M(:,:,m)=repmat(RHO_Minus(:,m),[1 9]);  %[3 9 EdgesTotal]
end

%Frequency series
T0=cputime;
for FF=1:NumberOfSteps    
    FF
    f(FF)       =FreqStart+step*(FF-1);
    omega       =2*pi*f(FF);
    k           =omega/c_;
    K           =j*k;
  
    Constant1   =mu_/(4*pi);
    Constant2   =1/(j*4*pi*omega*epsilon_);
    Factor      =1/9;    
    FactorA     =Factor*(j*omega*EdgeLength/4)*Constant1;
    FactorFi    =Factor*EdgeLength*Constant2;
    FactorA     =FactorA.';
    FactorFi    =FactorFi.';
    
    Z   =  impmet( EdgesTotal,TrianglesTotal,...
            EdgeLength,K,...
            Center,Center_,...
            TrianglePlus,TriangleMinus,...
            RHO_P,RHO_M,...
            RHO__Plus,RHO__Minus,...
            FactorA,FactorFi);   
 
    %Lumped impedance format:
    % LoadPoint                       Lumped element locations
    % LoadValue                       Vector of L, C, and R
    % LoadDir                         "Direction" of lumped element
 
    %This block introduces a few lumped elements
    %When LNumber is zero then skip loading
    LNumber=2;
    LoadPoint(1:3,1)=[0 0.50 0]'; 
    LoadValue(1:3,1)=[0 1e+64 100]';    %LCR
    LoadDir  (1:3,1)=[0 1 0]';
    LoadPoint(1:3,2)=[0 -0.50 0]'; 
    LoadValue(1:3,2)=[0 1e+64 100]';    %LCR
    LoadDir  (1:3,2)=[0 1 0]';
    for k=1:LNumber   
            DeltaZ(k)=j*omega*LoadValue(1,k)+1/(j*omega*LoadValue(2,k))+...
            LoadValue(3,k);
    end    

    %Impedance matrix modification
    L=0;
    for k=1:LNumber   
        for m=1:EdgesTotal    
            n1=Edge_(1,m); n2=Edge_(2,m);
            Dist(m)     =norm(0.5*sum(p(:,Edge_(:,m)),2)-LoadPoint(:,k));
            EdgeVector  =(p(:,n1)-p(:,n2))/EdgeLength(m);
            Orien (m)   =abs(dot(EdgeVector,LoadDir(:,k)));
        end
        [Y,INDEX1] = sort(Dist);
        for n=1:EdgesTotal
            Index1  =INDEX1(n);
            q       =Orien(Index1);
            if(q<0.001) 
                L=L+1;
                ImpArray(L)=Index1;
                break; 
            end;
        end
        Z(Index1,Index1)=Z(Index1,Index1)+EdgeLength(Index1)^2*DeltaZ(k);
    end
    %End of lumped element block

            
    %Find the feeding edge(s)(closest to the origin)
    FeedPoint=[0; 0; 0];
    for m=1:EdgesTotal
        V(m)=0;
        Distance(:,m)=0.5*sum(p(:,Edge_(:,m)),2)-FeedPoint;
    end
    [Y,INDEX]=sort(sum(Distance.*Distance));
    Index=INDEX(1);                 %Center feed - dipole
    %Index=INDEX(1:2);              %Probe feed - monopole
    
    %Solution of MoM equations
    V(Index)=1*EdgeLength(Index);    
    I=Z\V.';
    
    CURRENT(:,FF)=I(:);
    %Impedance
    GapCurrent(FF)  =sum(I(Index).*EdgeLength(Index)');
    GapVoltage(FF)  =mean(V(Index)./EdgeLength(Index));
    Impedance(FF)   =GapVoltage(FF)/GapCurrent(FF);
    FeedPower(FF)   =1/2*real(GapCurrent(FF)*conj(GapVoltage(FF)));    
    Imp             =Impedance(FF)
    T=cputime-T0
end

%Save result
FileName='current.mat'; 
save(FileName, 'f','NumberOfSteps','FreqStart','FreqStop','step',...
                'omega','mu_','epsilon_','c_', 'eta_',...
                'CURRENT','GapCurrent','GapVoltage','Impedance','FeedPower','Index');            

⌨️ 快捷键说明

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