p618SiteDiversityOutage
Calculate outage probability due to rain attenuation with site diversity
Description
returns the outage probability due to rain attenuation with site diversity. The function
calculates this value as per the ITU-R P.618-14 recommendation [1].Outage = p618SiteDiversityOutage(cfgsd)
This function requires a MAT file with digital maps from International Telecommunication Union (ITU) documents. If it is not available on the path, download and uncompress the data file from https://www.mathworks.com/supportfiles/spc/P618/ITURP618v14DigitalMaps.tar.gz to a location on the MATLAB® path.
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.
specifies additional options using one or more name-value pair arguments.Outage = p618SiteDiversityOutage(cfgsd,Name,Value)
Examples
Input Arguments
Name-Value Arguments
Output Arguments
More About
Tips
For MATLAB version R2025b or earlier, the p618SiteDiversityOutage 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).
[2] International Telecommunication Union, ITU-R Recommendation P.837 (06/2017).
[3] International Telecommunication Union, ITU-R Recommendation P.1511 (08/2024).
[4] International Telecommunication Union, ITU-R Recommendation P.840 (08/2023).
[5] International Telecommunication Union, ITU-R Recommendation P.453 (08/2019).
[6] International Telecommunication Union, ITU-R Recommendation P.839 (09/2013).
[7] International Telecommunication Union, ITU-R Recommendation P.838 (03/2005).