Skip to content

Commit

Permalink
Change input fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
loroberge committed Oct 22, 2024
1 parent 9e348aa commit b6b8c6c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ConcentrationTrackerForSpace(Component):
.. note::
This component requires the "sediment__influx", "sediment__outflux",
This component requires the "sediment__outflux", "bedrock__erosion_flux"
"sediment__erosion_flux", and "sediment__deposition_flux" fields
calculated by the :class:`~.SpaceLargeScaleEroder` component. This
component does not use the typical run_one_step(dt) method. Instead,
Expand Down Expand Up @@ -223,21 +223,21 @@ class ConcentrationTrackerForSpace(Component):
"mapping": "node",
"doc": "Depth of soil or weathered bedrock",
},
"sediment__influx": {
"sediment__outflux": {
"dtype": float,
"intent": "in",
"optional": False,
"units": "m^3/yr",
"mapping": "node",
"doc": "flux of sediment into node",
"doc": "flux of sediment out of node",
},
"sediment__outflux": {
"bedrock__erosion_flux": {
"dtype": float,
"intent": "in",
"optional": False,
"units": "m^3/yr",
"units": "m/yr",
"mapping": "node",
"doc": "flux of sediment out of node",
"doc": "erosional flux of bedrock into water column",
},
"sediment__erosion_flux": {
"dtype": float,
Expand Down

0 comments on commit b6b8c6c

Please sign in to comment.