In file P533/Src/P533/MUFOperational.c line 38 an array is given containing the values from ITU-R P.1240 Table 1:
double Rop[2][3][2] = { {{{1.20},{1.30}},{{1.15},{1.25}},{{1.10},{1.20}}},{{{1.15},{1.25}},{{1.20},{1.30}},{{1.25},{1.35}}} };
the correct values should be:
double Rop[2][3][2] = { {{{1.20},{1.30}},{{1.15},{1.25}},{{1.10},{1.20}}},{{{1.25},{1.35}},{{1.20},{1.30}},{{1.15},{1.25}}} };
Winter has index 0 and Summer has index 2 opposing to their positions in given table.
In file P533/Src/P533/MUFOperational.c line 38 an array is given containing the values from ITU-R P.1240 Table 1:
double Rop[2][3][2] = { {{{1.20},{1.30}},{{1.15},{1.25}},{{1.10},{1.20}}},{{{1.15},{1.25}},{{1.20},{1.30}},{{1.25},{1.35}}} };the correct values should be:
double Rop[2][3][2] = { {{{1.20},{1.30}},{{1.15},{1.25}},{{1.10},{1.20}}},{{{1.25},{1.35}},{{1.20},{1.30}},{{1.15},{1.25}}} };Winter has index 0 and Summer has index 2 opposing to their positions in given table.