forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HWRF fixes: build = replicated symbol; run = link in look-up tables (w…
…rf-model#1049) TYPE: bug fix KEYWORDS: HWRF, build, run SOURCE: internal DESCRIPTION OF CHANGES: To get the HWRF code to build and run the regression test cases, two changes are required: ### Build There is a replicated symbol in subroutine feedback_domain_nmm_part2: SMOOTHER. This named symbol cannot be both a LABEL and the name of a called SUBROUTINE within a single subprogram unit (subroutine or function). Just a quick misspelling of SMOOTHR works wonders. ### Run Link in (ln -sf) all of the look-up tables to the test/nmm_real directory in the last step of the build process. Most of the run-time-required links to physics data files were not originally in place. LIST OF MODIFIED FILES: modified: Makefile modified: external/RSL_LITE/module_dm.F TESTS CONDUCTED: - [x] Without build mod (replicated symbol), code does not build with GNU - [x] Without run mod (linked-in look-up tables), the code does not run regression tests - [x] With both mods, the code builds and runs. - [x] Regression test is now in place for HWRF.
- Loading branch information
Showing
2 changed files
with
49 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters