A key component of ROPP10.0 will be a 2D wave optics propagator - that is to say, a tool to simulate the excess phases produced when a radio wave passes through a refractivity field that does not necessarily display spherical symmetry. This is an extension of he spherically symmetric 1D wave optics propagation tool that has been in ROPP since version 9.0. Sean Healy (ECMWF) will be doing the scientific development of this, in the branch https://trac.romsaf.org/ropp/browser/ropp_src/branches/dev/Share/sbh_2DWOPT.
A 2D level 2a Fortran type, L2atype_2d
, was introduced at r5985. This is now part of the ROprof2d
type. This allows 2D refractivity slices to be read in and written out.
Previously, ROprof2d
contained a 1D level 2a substructure, so the difference needs to be highlighted in the Change Log. Making this 2D doesn't appear to cause any problems, however, mainly because the 2D bending angle code (which is the only thing that uses ROprof2d
) calculates and stores its 2D refractivities in local arrays, and doesn't write them out.
The ancient code ropp_io/legacy/ecmtwod2ropp.f90 was updated at r5987 (and corrected at r6001) to convert 2D ascii files of ECMWF refractivity data into netCDF format, suitable for ingestion into ROPP code following the work of r5985. Sean has successfully used this code to generate netCDF files of the 'standard' 55 refractivity slices.
A new IDL script, to plot and compare the FSI-derived bending angles, for both the 1D and 2D wopt codes, was introduced at r6012.
Earlier versions of the code calculated the 1d wopt result, based on the central profile in the slice. But that just doubles the cost of the code, and only generates something that users can do for themselves if they want to, so it was removed at r6041.
The valid range of the FSI_derived impact height, Impact_FSI
, was previously set to [-1, 1]*1E6 m. This meant that any impact parameter derived from it, by adding ~ 6.4E6 m, was out of range, and this therefore led to all level 1b data being zapped by range-checking. To avoid the need to change the valid_range of the impact parameter, it's easier to just extend the valid range of Impact_FSI
, and the other FSI-derived fields, and the extra diagnostics, to [-1, 1]*1e7 in ropp_pp_wopt_tool.f90 and ropp_pp_wopt_2D_tool.f90. This has been done at r6260. The resulting changes to the test folder scripts have been made at r6261. (The latter includes a reduction in the number of cases from 4 to 1 when the test is run on (one core of) an HPC supercomputer, as otherwise it runs out of time.)
Resolution: | → fixed |
---|---|
Status: | new → closed |
This has been included in ROPP-10. Closing ticket.
r5953, r5955, r5965 and r5974 embody the first attempt.