Validation results ITU-R P.453-14

This page contains the validation examples for Recommendation ITU-R P.453-14: TBD.

All test cases were extracted from the ITU Validation examples file (rev 5.1).

Function map_wet_term_radio_refractivity

The table below contains the results of testing function map_wet_term_radio_refractivity. The test cases were extracted from spreadsheet ITURP453-14_Nwet.csv from the ITU Validation examples file (rev 5.1). In addition to the input-arguments, expected result (ITU Validation), and ITU-Rpy computed result (ITUR-py Result), the absolute and relative errors are shown. Each test case is color-coded depending on the magnitude of the errors (green = pass, errors are negligible, red = fail, relative error is above 0.01%).

In addition, the code snippet below shows an example of how to generate the first row of the results in the table:

import itur

# Define input attributes
lat = 3.133  #  (°N)
lon = 101.7  # (°E)
p = 50.0  # (%)

# Make call to test-function map_wet_term_radio_refractivity
itur_val = itur.models.itu453.map_wet_term_radio_refractivity(lat=lat, lon=lon, p=p)

# Compute error with respect to value in ITU example file
ITU_example_val = 128.1408003  # nan
error = ITU_example_val - itur_val.value
error_rel = error / ITU_example_val * 100  # (%)
Validation results models.itu453.map_wet_term_radio_refractivity
ITU-Rpy Function lat (°N) lon (°E) p (%) ITU Validation nan ITU-Rpy Result nan Absolute Error Relative Error
models.itu453.map_wet_term_radio_refractivity 3.133 101.70 50.0 128.140800 128.140800 3.33e-08 0.000
models.itu453.map_wet_term_radio_refractivity 22.900 -43.23 50.0 104.358475 104.358475 3.33e-08 0.000
models.itu453.map_wet_term_radio_refractivity 23.000 30.00 50.0 36.471667 36.471667 3.33e-09 0.000
models.itu453.map_wet_term_radio_refractivity 25.780 -80.22 50.0 113.273867 113.273867 4.26e-14 0.000
models.itu453.map_wet_term_radio_refractivity 28.717 77.30 50.0 75.660135 75.660135 3.33e-09 0.000
models.itu453.map_wet_term_radio_refractivity 33.940 18.43 50.0 80.140160 80.140160 -4.44e-09 -0.000
models.itu453.map_wet_term_radio_refractivity 41.900 12.49 50.0 61.218900 61.218900 -4.44e-09 -0.000
models.itu453.map_wet_term_radio_refractivity 51.500 -0.14 50.0 50.389262 50.389262 -2.22e-09 -0.000