p618PropagationLosses
Calculate Earth-space propagation losses, cross-polarization discrimination, and sky noise temperature
Syntax
Description
[
returns Earth-space propagation losses pl,xpd,tsky] = p618PropagationLosses(p618cfg)pl, cross-polarization
discrimination xpd, and sky noise temperature
tsky, as defined in the ITU-R P.618-14 recommendation [1].
p618cfg specifies the P.618 configuration parameters.
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.
Examples
Input Arguments
Name-Value Arguments
Output Arguments
Tips
For MATLAB version R2025b or earlier, the p618PropagationLosses 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.676 (08/2022).
[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.837 (06/2017).
[6] International Telecommunication Union, ITU-R Recommendation P.453 (08/2019).
[7] International Telecommunication Union, ITU-R Recommendation P.839 (09/2013).
[8] International Telecommunication Union, ITU-R Recommendation P.838 (03/2005).
[9] International Telecommunication Union, ITU-R Recommendation P.2145 (08/2022).
