rompy.schism.namelists.wwminput.Coupl#
- pydantic model rompy.schism.namelists.wwminput.Coupl[source]#
Show JSON schema
{ "title": "Coupl", "type": "object", "properties": { "lcpl": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": true, "description": "Main switch to enable coupling with the current model. Should be kept on for SCHISM-WWM coupling.", "title": "Lcpl" }, "radflag": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "LON", "description": "Determines the formulation for wave-induced forces. 'LON' for Longuet-Higgins formulation, 'VOR' for vortex formulation. Usually set to 'LON'.", "title": "Radflag" }, "letot": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": false, "description": "Option to compute wave-induced radiation stress. If True, radiation stress is based on the integrated wave spectrum. If False (recommended), it's estimated using the directional spectra as described in Roland et al. (2008). False is preferred as it preserves spectral information.", "title": "Letot" }, "nlvt": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 10, "description": "Number of vertical layers. Not used when coupled with SCHISM.", "title": "Nlvt" }, "dtcoup": { "anyOf": [ { "type": "number" }, { "type": "null" } ], "default": 600.0, "description": "Coupling time step in seconds. Not used when coupled to SCHISM.", "title": "Dtcoup" } }, "additionalProperties": false }
- Fields:
- Validators:
- field dtcoup: float | None = 600.0#
Coupling time step in seconds. Not used when coupled to SCHISM.
- Validated by:
__lowercase_property_keys__
- field lcpl: bool | None = True#
Main switch to enable coupling with the current model. Should be kept on for SCHISM-WWM coupling.
- Validated by:
__lowercase_property_keys__
- field letot: bool | None = False#
Option to compute wave-induced radiation stress. If True, radiation stress is based on the integrated wave spectrum. If False (recommended), it’s estimated using the directional spectra as described in Roland et al. (2008). False is preferred as it preserves spectral information.
- Validated by:
__lowercase_property_keys__
- field nlvt: int | None = 10#
Number of vertical layers. Not used when coupled with SCHISM.
- Validated by:
__lowercase_property_keys__
- field radflag: str | None = 'LON'#
Determines the formulation for wave-induced forces. ‘LON’ for Longuet-Higgins formulation, ‘VOR’ for vortex formulation. Usually set to ‘LON’.
- Validated by:
__lowercase_property_keys__