Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweaks to allow CRTM_2.2.3 to compile on Fujitsu (#214)
TYPE: no impact KEYWORDS: WRFDA, CRTM 2.2.3, Fujitsu compiler bug SOURCE: Fujitsu, Japan DESCRIPTION OF CHANGES: Statements rts_stats(:,1) = rts_stats(:,1)/factor and rts_stats(1:n_channels,1) = rts_stats(1:n_channels,1)/factor do not compile on Fujitsu due to their compiler bugs. Change it to explicit loops DO l = 1, n_channels rts_stats(l,1) = rts_stats(l,1)/factor END DO This part of code is in a function that is not used anywhere else. LIST OF MODIFIED FILES: M var/external/crtm_2.2.3/libsrc/CRTM_RTSolution_Define.f90 TESTS CONDUCTED: 1. crtm_2.2.3 can compile on Fujitsu with the modified code. 2. WRFDA regtests
- Loading branch information