rompy.swan.components.physics.SICE_D15#

pydantic model rompy.swan.components.physics.SICE_D15[source]#

Sea ice dissipation based on the method of Doble et al. (2015).

SICE [aice] D15 [chf]

References

Doble, M.J., De Carolis, G., Meylan, M.H., Bidlot, J.R. and Wadhams, P., 2015. Relating wave attenuation to pancake ice thickness, using field measurements and model results. Geophysical Research Letters, 42(11), pp.4473-4481.

Examples

In [134]: from rompy.swan.components.physics import SICE_D15

In [135]: sice = SICE_D15()

In [136]: print(sice.render())
SICE D15

In [137]: sice = SICE_D15(aice=0.2, chf=0.1)

In [138]: print(sice.render())
SICE aice=0.2 D15 chf=0.1
Fields:
field aice: float | None = None#

Ice concentration as a fraction from 0 to 1. Note that aice is allowed to vary over the computational region to account for the zonation of ice concentration. In that case use the commands INPGRID AICE and READINP AICE to define and read the sea concentration. The value of aice in this command is then not required (it will be ignored)

Constraints:
  • ge = 0.0

  • le = 1.0

field chf: float | None = None#

A simple coefficient of proportionality (SWAN default: 0.1)

field model_type: Literal['d15', 'D15'] = 'd15'#

Model type discriminator

cmd() str[source]#

Command file string for this component.