rompy.schism.namelists.icm.Poc#
- pydantic model rompy.schism.namelists.icm.Poc[source]#
Show JSON schema
{ "title": "Poc", "type": "object", "properties": { "erosion": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 864, "description": "Erosion rate in kilograms per square meter per day", "title": "Erosion" }, "etau": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 1e-06, "description": "Critical bottom shear stress in Pascals", "title": "Etau" }, "eporo": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 0.8, "description": "Coefficient in erosion formula (see code in icm_sfm.F90)", "title": "Eporo" }, "efrac": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 0.5, "description": "Fraction coefficient in erosion formula (see code in icm_sfm.F90)", "title": "Efrac" }, "ediso": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 2.5, "description": "H2S erosion coefficient (see code in icm_sfm.F90)", "title": "Ediso" }, "dfrac": { "anyOf": [ { "items": {}, "type": "array" }, { "type": "null" } ], "default": [ 0.02, 0.02 ], "description": "Deposition fraction of POC (Particulate Organic Carbon). If negative, dfrac will be computed", "title": "Dfrac" }, "dws_poc": { "anyOf": [ { "items": {}, "type": "array" }, { "type": "null" } ], "default": [ 3.0, 3.0 ], "description": "Coefficient in POC erosion (see code in icm_sfm.F90)", "title": "Dws Poc" } }, "additionalProperties": false }
- Fields:
- Validators:
- field dfrac: list | None = [0.02, 0.02]#
Deposition fraction of POC (Particulate Organic Carbon). If negative, dfrac will be computed
- Validated by:
__lowercase_property_keys__
- field dws_poc: list | None = [3.0, 3.0]#
Coefficient in POC erosion (see code in icm_sfm.F90)
- Validated by:
__lowercase_property_keys__
- field ediso: float | None = 2.5#
H2S erosion coefficient (see code in icm_sfm.F90)
- Validated by:
__lowercase_property_keys__
- field efrac: float | None = 0.5#
Fraction coefficient in erosion formula (see code in icm_sfm.F90)
- Validated by:
__lowercase_property_keys__
- field eporo: float | None = 0.8#
Coefficient in erosion formula (see code in icm_sfm.F90)
- Validated by:
__lowercase_property_keys__
- field erosion: int | None = 864#
Erosion rate in kilograms per square meter per day
- Validated by:
__lowercase_property_keys__
- field etau: float | None = 1e-06#
Critical bottom shear stress in Pascals
- Validated by:
__lowercase_property_keys__