-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to create multiple hydrology instances in driver. Each in…
…stance will represent a member in an ensemble. Hydrology instances will change their working directory to a subdirectory that matches the component name (i.e. HYD-03). WRF-Hydro ensemble is running side-by-side with a new test case sbys_tuolumne_hyd.ens002.ldas. Coupled LND-HYD ensemble work is incomplete.
- Loading branch information
1 parent
2b20516
commit 2786d7b
Showing
5 changed files
with
312 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
############################################### | ||
#### LISHydro runtime configuration ##### | ||
############################################### | ||
|
||
# optionally turn off a component (options are "yes" and "no") | ||
lnd: no | ||
hyd: yes | ||
med: no | ||
|
||
# PET lists - if not set, use all PETs | ||
#pets_lnd: | ||
pets_hyd: __PETLISTHYD__ | ||
multi_instance_hyd: true | ||
instance_count_hyd: 2 | ||
#pets_med: | ||
|
||
# global clock | ||
time_step: __TIMESTEP__ | ||
start_time: __STARTTIME__ | ||
stop_time: __STOPTIME__ | ||
|
||
# run sequence | ||
runSeq:: | ||
@__TIMESTEP__ | ||
HYD-1 | ||
HYD-2 | ||
@ | ||
:: | ||
|
||
# component attributes | ||
driverAttributes:: | ||
Verbosity = high | ||
Profiling = 0 | ||
:: | ||
|
||
hydAttributes:: | ||
Verbosity = 1 | ||
Diagnostic = 0 | ||
Profiling = 0 | ||
realize_all_export = false | ||
config_file = hydro.namelist | ||
das_config_file = namelist.hrldas | ||
time_step = 0 | ||
forcings_directory = __FORCINGDIRHYD__ | ||
domain_id = 1 | ||
nest_to_nest = false | ||
import_dependency = false | ||
output_directory = HYD_OUTPUT | ||
:: | ||
|
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,10 @@ | ||
#!/usr/bin/csh | ||
set RUNCONFIG="hyd.ens002" | ||
set TASKS="512" | ||
set TIME="01:00:00" | ||
set PETLISTHYD="0 255 256 511" | ||
set TIMESTEP="3600" | ||
set STARTTIME="2015 10 01 0 0 0" | ||
set STOPTIME="2015 11 01 0 0 0" | ||
set REMAP="redist" | ||
set FORCINGDIRHYD="WRFHYDRO_FORCING/LDASOUT/tuolumne" |
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.