Skip to content

Commit

Permalink
default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
umut-demirhan committed May 10, 2024
1 parent 3bc106e commit ba81da0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions parameters.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
% A detailed description of the parameters is available on DeepMIMO.net

%Ray-tracing scenario
params.scenario = 'Indoor'; % The adopted ray tracing scenario [check the available scenarios at https://deepmimo.net/scenarios/]
params.scenario = 'O1_60'; % The adopted ray tracing scenario [check the available scenarios at https://deepmimo.net/scenarios/]

%Dynamic Scenario Scenes [only for dynamic (multiple-scene) scenarios]
params.scene_first = 1;
params.scene_last = 1;

% Active base stations
params.active_BS = [1, 2]; % Includes the numbers of the active BSs (values from 1-18 for 'O1')(check the scenario description at https://deepmimo.net/scenarios/ for the BS numbers)
params.active_BS = [1]; % Includes the numbers of the active BSs (values from 1-18 for 'O1')(check the scenario description at https://deepmimo.net/scenarios/ for the BS numbers)

% Active users
params.active_user_first = 1; % The first row of the considered user section (check the scenario description for the user row map)
params.active_user_last = 151; % The last row of the considered user section (check the scenario description for the user row map)
params.active_user_last = 44; % The last row of the considered user section (check the scenario description for the user row map)

% Subsampling of active users
%--> Setting both subsampling parameters to 1 activate all the users indicated previously
Expand All @@ -24,11 +24,11 @@
params.num_ant_BS = [8, 1]; % Horizontal - Vertical
params.num_ant_UE = [1, 1]; % Horizontal - Vertical

params.FoV_ant_BS = [360, 180]; % Degrees in horizontal-vertical Max- 360 180
params.FoV_ant_BS = [180, 180]; % Degrees in horizontal-vertical Max- 360 180
params.FoV_ant_UE = [360, 180]; % Degrees in horizontal-vertical

% Antenna array orientations
params.array_rotation_BS = [0, 0, -90];
params.array_rotation_BS = [0, -45, 0];
params.array_rotation_UE = [0, 0, 0];
% 3D rotation angles in degrees around the x,y,z axes respectively
% The rotations around x,y,z are also called as slant, downtilt, and bearing angles (of an antenna towards +x)
Expand Down Expand Up @@ -56,7 +56,7 @@

% System parameters
params.bandwidth = 0.05; % The bandwidth in GHz
params.activate_RX_filter = 0; % 0 No RX filter
params.activate_RX_filter = 1; % 0 No RX filter
% 1 Apply RX low-pass filter (ideal: Sinc in the time domain)

% Channel parameters # Activate OFDM
Expand All @@ -69,4 +69,4 @@
params.OFDM_sampling = [1]; % The constructed channels will be calculated only at the sampled subcarriers (to reduce the size of the dataset)

params.enable_Doppler = 0; % Enable Doppler shift (if available in the scenario)
params.dual_polar = 1; % Enable cross dual-polar antenna (if available in the scenario)
params.dual_polar = 0; % Enable cross dual-polar antenna (if available in the scenario)

0 comments on commit ba81da0

Please sign in to comment.