p618SiteDiversityConfig
Create P.618 site diversity configuration object
Description
The p618SiteDiversityConfig object sets P.618 site diversity
configuration parameters required for the calculation of outage probability due to rain
attenuation, as defined in the ITU-R P.618-14 recommendation [1].
Note
If you are using MATLAB® in version R2025b or earlier, refer to the Tips section for instructions on how to run the examples by using ITU-R P.618-13.
Creation
Description
creates a
P.618 site diversity configuration object with default property values.cfgSD = p618SiteDiversityConfig
specifies Properties using one or more
name-value pair arguments. Enclose each property name in quotes. For example,
p618SiteDiversityConfig(cfgSD = p618SiteDiversityConfig(Name,Value)'Frequency',14.25e9,'ElevationAngle',[52.4099
52.4852]) configures a P.618 site diversity configuration object with a 14.25
GHz signal frequency and an elevation angle for two sites as [52.4099 52.4852].
Properties
Object Functions
Examples
Tips
For MATLAB version R2025b or earlier, the p618SiteDiversityConfig object uses ITU-R
P.618-13 for its calculations instead of ITU-R P.618-14.
Use this code to download and unzip the MAT files containing digital maps from the ITU-R P.618-13 documents. The code also adds the extracted files to your MATLAB path.
maps = exist('maps.mat','file');
p836 = exist('p836.mat','file');
p837 = exist('p837.mat','file');
p840 = exist('p840.mat','file');
matFiles = [maps p836 p837 p840];
if ~all(matFiles)
if ~exist('ITURDigitalMaps.tar.gz','file')
url = 'https://www.mathworks.com/supportfiles/spc/P618/ITURDigitalMaps.tar.gz';
websave('ITURDigitalMaps.tar.gz',url);
untar('ITURDigitalMaps.tar.gz');
else
untar('ITURDigitalMaps.tar.gz');
end
addpath(cd);
endReferences
[1] International Telecommunication Union, ITU-R Recommendation P.618 (08/2023).