-
Notifications
You must be signed in to change notification settings - Fork 9
outlet_csv
Matt Hipsey edited this page Sep 16, 2022
·
5 revisions
The optional file outlet.csv
records the selected variables within the outlets / withdrawals that are configured to be taken from the lake. Variables that can be configured to be output in the outlet files are outlined below.
Users seeking to record the output water quality conditions must set csv_outlet_fname
and/or csv_overflow_fname
. By default one file will be created for each configured outlet/overflow appended with the name that was set.
The model can optionally combine all the output and overflowing water into a combined file, using the csv_outlet_allinone
option. This may be used for looking at discharges to downstream rivers, for example.
!-- Combined outlet file & overflow
csv_outlet_allinone = .false.
csv_outlet_fname = 'outlet_'
csv_outlet_nvars = 4
csv_outlet_vars = 'flow', ! <--- ADD VARIABLES TO THIS LIST TO ADD THEM TO FILE
'temp',
'salt',
'OXY_oxy',
csv_ovrflw_fname = "overflow"
CLASS | NAME | UNITS | DESCRIPTION |
---|---|---|---|
var | flow | m3/d | Outlet/overflow flow rate |
var | temp | C | Outlet/overflow water temperature |
var | salt | ppt | Outlet/overflow water salinity |
var | *AED_var1* | ... | Outlet/overflow water quality variable concentration |
var | *AED_var2* | ... | Outlet/overflow water quality variable concentration |
var | hbot | m | Lower (bottom) height of withdrawal layer |
var | htop | m | Upper (top) height of withdrawal layer |
var | flbc | - | Outflow draw volume (debug check) |
Background
Getting started
- Downloading
- Running the model
glm.nml
configuration file- Tutorials & examples
- Navigating GLM outputs
Advanced use
- Command line options
- Restarting a simulation
- Customising the WQ setup
- Adding a new example lake
- Using GLM in R
Developer guide
- Downloading the code
- Compiling the code
- Updating existing submodule state
- Adding new submodules
- Using GLM as a linked library