|
| 1 | +#-- ========================================================================== --# |
| 2 | +#-- --# |
| 3 | +#-- This RVIC namelist contains options and paths for the --# |
| 4 | +#-- development of the RVIC parameter file. --# |
| 5 | +#-- --# |
| 6 | +#-- --# |
| 7 | +#-- ========================================================================== --# |
| 8 | + |
| 9 | +# Note: namelist is parsed by the python ConfigParser module. %(Interploation) is |
| 10 | +# supported inside [sections] only. |
| 11 | + |
| 12 | +[OPTIONS] |
| 13 | +#-- ====================================== --# |
| 14 | +#--Level to log output at (char) --# |
| 15 | +# valid values: DEBUG, INFO, WARNING, ERROR, CRITICAL |
| 16 | +LOG_LEVEL:DEBUG |
| 17 | + |
| 18 | +#--Print output to console in addition to the log file (bool) --# |
| 19 | +# valid values: True, False |
| 20 | +VERBOSE:True |
| 21 | + |
| 22 | +#--Delete temporary files, only used if REMAP=True (bool) --# |
| 23 | +# valid values: True, False |
| 24 | +CLEAN: False |
| 25 | + |
| 26 | +#--case description (char) --# |
| 27 | +CASEID: sample_pnw_parameters |
| 28 | + |
| 29 | +#--routing domain grid shortname (char) --# |
| 30 | +GRIDID: pnw |
| 31 | + |
| 32 | +#--case run directory (char) --# |
| 33 | +CASE_DIR: ./samples/cases/%(CASEID)s |
| 34 | + |
| 35 | +#--Directory to use for temporary read/write operations (char) --# |
| 36 | +TEMP_DIR:%(CASE_DIR)s/temp/ |
| 37 | + |
| 38 | +#--Remap Unit Hydrographs from [ROUTING] grid to [DOMAIN] grid (bool) --# |
| 39 | +# valid values: True, False |
| 40 | +REMAP:False |
| 41 | + |
| 42 | +#--Aggregate all [POUR_POINTS] inside each [DOMAIN] grid cell (bool) --# |
| 43 | +# This should only be used when routing to coastal grid cells for CESM |
| 44 | +AGGREGATE:False |
| 45 | + |
| 46 | +#--Size of pad to add to aggregated files prior to remapping (int) --# |
| 47 | +AGG_PAD:25 |
| 48 | + |
| 49 | +#-- Output parameter file format (char) --# |
| 50 | +# Valid Values: NETCDF3_CLASSIC, NETCDF3_64BIT, NETCDF4_CLASSIC, and NETCDF4 |
| 51 | +# For use with CESM, NETCDF3_CLASSIC is recommended. |
| 52 | +NETCDF_FORMAT:NETCDF3_CLASSIC |
| 53 | + |
| 54 | +#-- Output parameter file compression options --# |
| 55 | +# Descriptions of these options can be found in |
| 56 | +NETCDF_ZLIB: False |
| 57 | +NETCDF_COMPLEVEL: 4 |
| 58 | +NETCDF_SIGFIGS: None |
| 59 | + |
| 60 | +#-- Length of unit hydrograph subset in days (int) --# |
| 61 | +SUBSET_DAYS:10 |
| 62 | + |
| 63 | +#-- Constrain the final unit hydrographs sum to be less than or equal to the domain fractions --# |
| 64 | +# True when routing to coastal grid cells, else False |
| 65 | +CONSTRAIN_FRACTIONS: False |
| 66 | + |
| 67 | +SEARCH_FOR_CHANNEL: True |
| 68 | + |
| 69 | +#-- ====================================== --# |
| 70 | + |
| 71 | +[POUR_POINTS] |
| 72 | +#-- ====================================== --# |
| 73 | +#-- Path to Pour Points File (char) --# |
| 74 | +# A comma separated file of outlets to route to [lons, lats] - one coordinate pair per line (order not important) |
| 75 | +# May optionally include a column [names] - which will (if not aggregating) be included in param file |
| 76 | +FILE_NAME: ./samples/pour_points/columbia_sample_pour_points.csv |
| 77 | + |
| 78 | +#-- ====================================== --# |
| 79 | + |
| 80 | +[UH_BOX] |
| 81 | +#-- ====================================== --# |
| 82 | +#-- Path to UH Box File (char) --# |
| 83 | +# This defines the unit hydrograph to rout flow to the edge of each grid cell. |
| 84 | +# A comma separated file of [time in seconds, unit hydrograph ordinate] - one timestep per line |
| 85 | +# The timestep should be 1hr (3600 sec) or less. |
| 86 | +FILE_NAME: ./samples/uh_box/UH_Columbia_hourly.csv |
| 87 | + |
| 88 | +#-- Number of Header lines to ignore in [UH_BOX]FILE_NAME (INT) --# |
| 89 | +HEADER_LINES = 1 |
| 90 | +#-- ====================================== --# |
| 91 | + |
| 92 | +[ROUTING] |
| 93 | +#-- ====================================== --# |
| 94 | +#-- Path to routing inputs netcdf (char) --# |
| 95 | +FILE_NAME: ./samples/flow_directions/pnw.RVIC.input_20140218.nc |
| 96 | + |
| 97 | +#-- netCDF Variable Names --# |
| 98 | +LONGITUDE_VAR: lon |
| 99 | +LATITUDE_VAR: lat |
| 100 | +FLOW_DISTANCE_VAR: Flow_Distance |
| 101 | +FLOW_DIRECTION_VAR: Flow_Direction |
| 102 | +BASIN_ID_VAR: Basin_ID |
| 103 | +SOURCE_AREA_VAR: Source_Area |
| 104 | + |
| 105 | +#-- Velocity and diffusion --# |
| 106 | +# The velocity and diffusion parameters may either be specified as variables in |
| 107 | +# the routing netcdf (char) or as a single value (float or int) |
| 108 | +VELOCITY: 1 |
| 109 | +DIFFUSION: 2000 |
| 110 | + |
| 111 | +#-- Output Interval --# |
| 112 | +# Timestep of output unit hydrographs. Must be a multiple of the timestep in the UH_BOX |
| 113 | +OUTPUT_INTERVAL:86400 |
| 114 | + |
| 115 | +#-- Maximum time for runoff to reach outlet (days) --# |
| 116 | +BASIN_FLOWDAYS:50 |
| 117 | + |
| 118 | +#-- Maximum time for runoff to pass through a grid cell (days) --# |
| 119 | +CELL_FLOWDAYS:2 |
| 120 | +#-- ====================================== --# |
| 121 | + |
| 122 | +[DOMAIN] |
| 123 | +#-- ====================================== --# |
| 124 | +#-- Path to cesm complient domain file (char) --# |
| 125 | +FILE_NAME: ./samples/domains/domain.lnd.bpa304.20140311.nc |
| 126 | + |
| 127 | +#-- netCDF Variable Names --# |
| 128 | +LONGITUDE_VAR: lon |
| 129 | +LATITUDE_VAR: lat |
| 130 | +LAND_MASK_VAR: mask |
| 131 | +FRACTION_VAR: frac |
| 132 | +AREA_VAR: area |
| 133 | +#-- ====================================== --# |
0 commit comments