Main Content

winner2.wimparset

WINNER II model parameter configuration

Description

Download Required: To use winner2.wimparset, first download the WINNER II Channel Model for Communications Toolbox add-on.

example

cfgWim = winner2.wimparset returns a structure of WINNER II model parameters with their default values.

Examples

collapse all

Use the winner2.wimparset function to create a WINNER II model parameter set.

cfgwim = winner2.wimparset;

Adjust default settings.

cfgwim.RandomSeed = 31; % Set the rng seed for repeatability
cfgwim.NumTimeSamples = 250;
cfgwim.CenterFrequency = 4e9;

Display the WINNER II model parameter settings.

cfgwim
cfgwim = struct with fields:
            NumTimeSamples: 250
              FixedPdpUsed: 'no'
           FixedAnglesUsed: 'no'
        IntraClusterDsUsed: 'yes'
           PolarisedArrays: 'yes'
    UseManualPropCondition: 'yes'
           CenterFrequency: 4.0000e+09
       UniformTimeSampling: 'no'
             SampleDensity: 2000000
     DelaySamplingInterval: 5.0000e-09
        ShadowingModelUsed: 'no'
         PathLossModelUsed: 'no'
             PathLossModel: 'pathloss'
            PathLossOption: 'CR_light'
                RandomSeed: 31

Output Arguments

collapse all

Configuration model, returned as a structure containing these fields.

Number of time samples, specified as a scalar.

Use predefined path delays and powers for specific scenarios, specified as 'no' or 'yes'.

Use predefined path angles of departure (AoDs) and angles of arrival (AoAs) for specific scenarios, specified as 'yes' or 'no'.

Divide each of the two strongest clusters into three subclusters per link, specified as 'yes' or 'no'.

Use dual-polarized arrays, specified as 'yes' or 'no'.

Use manually defined propagation conditions, specified as 'yes' or 'no'. Set to 'yes' to enforce the use of manually defined propagation conditions (LOS/NLOS) in the PropagConditionVector structure field returned by winner2.layoutparset. Set to 'no' to draw propagation conditions from pre-defined LOS probabilities.

Carrier frequency in Hz, specified as a scalar.

Enforce all links to be sampled at the same time instants, specified as 'no' or 'yes'.

Number of time samples per half wavelength, specified as a scalar.

Sampling interval, specified as an scalar indicating the input signal sample time in seconds. DelaySamplingInterval defines the sampling grid to which the path delays are rounded. A value of 0 seconds indicates no rounding on path delays.

Use shadow fading, specified as 'no' or 'yes'.

Use path loss model, specified as 'no' or 'yes'.

Path loss model, specified as a character vector representing a valid function name. PathLossModel applies only when PathLossModelUsed is set to 'yes'.

Wall material, specified as 'CR_light', 'CR_heavy', 'RR_light', or 'RR_heavy', indicating the wall material for the A1 scenario NLOS path loss calculation. PathLossOption applies only when PathLossModelUsed is set to 'yes'.

Seed for random number generators, specified as a scalar or empty brackets. Empty brackets, [], indicate that the global random stream is used.

References

[1] Kyosti, Pekka, Juha Meinila, et al. WINNER II Channel Models. D1.1.2 V1.2. IST-4-027756 WINNER II, September 2007.

Version History

Introduced in R2017a