-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Metgrid with SST and LANDMASK (#1280)
* WIP initialization from met_em files * WIP metgrid initialization now timesteps in serial. * WIP metgrid initialization now checks met_em global attr * WIP started writing procedures for setting lateral boundary conditions from met_em files. * WIP progress on methods for setting lateral boundary conditions from met_em files. * WIP. Initialization & forcing from met_em files runs in serial but not yet in parallel. Currently limited to met_em generated from GFS because met_em variables differ slightly depending on the origin model processed. Runs with mositure hard-coded to 0 look great. Runs with moisture do not look great and there is either a bug or error in the methodology for calculating dry density and dry pressure. * WIP cleaned up errors from prior merge with development branch updates * WIP debugging initialization and forcing from met_em files. * WIP merging and fixing merge errors from recent commits from development. * WIP more debugging for WPS met_em*.nc initialization and forcing. * Add SST and LANDMASK read and copy. * This seems to be working but dies with MOST due to 0 eddy viscosity in ghost cell. * Amrex submodule. * Unify how we initialize time and do temporal interpolation with init from wrf and metgrid. * Cmake compile with metgrid. * Remove debug print. * Template build FABs from NETCDF to allow different data types. * Fix parallel issue on CPU. Need to implement GPU option. * Minor fixes for GPU. * Parallel run and GPU compile successful. * Cmake build with metgrid. --------- Co-authored-by: wiersema1 <[email protected]> Co-authored-by: Ann Almgren <[email protected]> Co-authored-by: Aaron Lattanzi <[email protected]>
- Loading branch information
1 parent
80397f6
commit 3395bc0
Showing
41 changed files
with
2,148 additions
and
797 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
set(erf_exe_name erf_metgrid_dev) | ||
|
||
add_executable(${erf_exe_name} "") | ||
target_sources(${erf_exe_name} | ||
PRIVATE | ||
prob.cpp | ||
) | ||
|
||
target_include_directories(${erf_exe_name} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
|
||
include(${CMAKE_SOURCE_DIR}/CMake/BuildERFExe.cmake) | ||
build_erf_exe(${erf_exe_name}) |
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
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
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
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
Oops, something went wrong.