• 大小: 1KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-04-29
  • 语言: Matlab
  • 标签: LTE  MATLAB  femtocell  4G  

资源简介

matlab lte network parameter set 4g lte femtocell 网络参数设置

资源截图

代码片段和文件信息

function LTE_config = LTE_load_params(varargin)

%% Default simulation option
default_simulation = ‘tri_sector_tilted‘;

%% If no simulation option is defined use the default one
if ~isempty(varargin)
    simulation_type = varargin{1};
else
    simulation_type = default_simulation; %  Default value
end

fprintf(‘Using “%s“ simulation configuration\n.‘simulation_type)

%% Load the corresponding simulation parameters
switch simulation_type
    case ‘tri_sector‘
        LTE_config = simulation_config.tri_sector.apply_parameters;
    case {‘tri_sector_tilted‘ ‘tri_sector_tilted_4x2‘ ‘tri_sector_tilted_4x4‘}
        LTE_config = simulation_config.hex_grid_tilted.apply_parameters;
    case ‘tri_sector_plus_femtocells‘
        LTE_config = simulation_config.hex_grid_tilted_with_femtocells.apply_parameters;
    case ‘six_sector_tilted‘
        LTE_config = simulation_config.hex_grid_sixsectors.apply_parameters;;
    case ‘capesso_pathlossmaps‘
        LTE_config = simulation_config.example_capesso.apply_parameters;
    case ‘omnidirectional_eNodeBs‘
        LTE_config = simulation_config.hex_grid_omnidirectional.apply_parameters;
    otherwise
        warning(‘Simulation type not defined: using default one instead‘);
        simulation_type = default_simulation;
        LTE_config = simulation_config.hex_grid_tilted.apply_parameters;
end

%% Some adjustments to the loaded simulation parameters
switch simulation_type
    case ‘tri_sector‘
        LTE_config.results_file                = ‘auto‘;
        LTE_config.output_filename_suffix      = ‘tri_sector‘;
    case ‘tri_sector_tilted‘
        LTE_config.results_file                       = ‘auto‘;
        LTE_config.output_filename_suffix             = ‘tri_sector_tilted‘;
        LTE_config.compute_only_UEs_from_this_eNodeBs = [13 14 15 16 17 18 19 20 21 28 29 30 31 32 33 34 35 36 46 47 48];
        LTE_config.default_shown_GUI_cells            = [13 14 15 16 17 18 19 20 21 28 29 30 31 32 33 34 35 36 46 47 48];
    case ‘tri_sector_plus_femtocells‘
        LTE_config.results_file                = ‘auto‘;
        LTE_config.output_filename_suffix      = ‘tri_sector_plus_femtocells‘;
    case ‘six_sector_tilted‘
        LTE_config.results_file                = ‘auto‘;
        LTE_config.outpu5t_filename_suffix      = ‘six_sector‘;
    case ‘capesso_pathlossmaps‘
        LTE_config.results_file                = ‘auto‘;
        LTE_config.output_filename_suffix      = ‘capesso_pathloss‘;
    case ‘tri_sector_tilted_4x2‘
        LTE_config.results_file  = ‘auto‘;
        LTE_config.nTX           = 4;
        LTE_config.nRX           = 2;
        LTE_config.channel_model.trace_length  = 10;
        LTE_config.output_filename_suffix      = ‘tri_sector_tilted_4x2‘;
        LTE_config.pregenerated_ff_file        = ‘auto‘;
    case ‘tri_sector_tilted_4x4‘
        LTE_config.results_file  = ‘auto‘;
        LTE_config.nTX           = 4;
        LTE_c

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3574  2012-05-15 14:09  LTE_load_params.m

----------- ---------  ---------- -----  ----

                 3574                    1


评论

共有 条评论