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

📄 parameters_sui.m

📁 Simulation of Wimax network
💻 M
字号:
function [P,K,tau,Dop,ant_corr,Fnorm] = parameters_SUI(N_SUI);

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%                                                                     % 
%%      Name : parameters_SUI.m                                        %
%%                                                                     %
%%      Function : Following the value of the channel to simulate,     %
%%       the parameters are given back to be able to obtain the        %
%%       simulation.                                                   %
%%                                                                     %
%%      Parameters based on the document 802163c-01_29r4               %
%%                                                                     %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
      %                                                           %
      %  The parameters given back are the following:             %
      %                                                           %
      %    P --> Power of each path (dB)                          %
      %    K --> Factor K of the Ricean distribution (Linear)     %
      %    tau --> Delay of each path (microseconds)              %
      %    Dop --> Maximum Doppler frequency (Hertz)              %
      %    ant_corr --> Coefficient of antenna correlation        %
      %    Fnorm --> Normalizing factor of gain (dB)              %
      %                                                           %
      %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

switch N_SUI
    case 1
        P = [ 0 -15 -20 ];
        K = [ 4 0 0 ];
        tau = [ 0.0 0.4 0.9 ];
        Dop = [ 0.4 0.3 0.5 ];
        ant_corr = 0.7;
        Fnorm = -0.1771;
    case 2
        P = [ 0 -12 -15 ];
        K = [ 2 0 0 ];
        tau = [ 0.0 0.4 1.1 ];
        Dop = [ 0.2 0.15 0.25 ];
        ant_corr = 0.5;
        Fnorm = -0.3930;
    case 3
        P = [ 0 -5 -10 ];
        K = [ 1 0 0 ];
        tau = [ 0.0 0.4 0.9 ];
        Dop = [ 0.4 0.3 0.5 ];
        ant_corr = 0.4;
        Fnorm = -1.5113;
    case 4
        P = [ 0 -4 -8 ];
        K = [ 0 0 0 ];
        tau = [ 0.0 1.5 4.0 ];
        Dop = [ 0.2 0.15 0.25 ];
        ant_corr = 0.3;
        Fnorm = -1.9218;
    case 5
        P = [ 0 -5 -10 ];
        K = [ 0 0 0 ];
        tau = [ 0.0 4.0 10.0 ];
        Dop = [ 2.0 1.5 2.5 ];
        ant_corr = 0.3;
        Fnorm = -1.5113;
    case 6
        P = [ 0 -10 -14 ];
        K = [ 0 0 0 ];
        tau = [ 0.0 14.0 20.0 ];
        Dop = [ 0.4 0.3 0.5 ];
        ant_corr = 0.3;
        Fnorm = -0.5683;
end

        
        


        
        
    

⌨️ 快捷键说明

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