rompy.swan.subcomponents.numerics.BSBT#

pydantic model rompy.swan.subcomponents.numerics.BSBT[source]#

BSBT first order propagation scheme.

BSTB

Examples

In [281]: from rompy.swan.subcomponents.numerics import BSBT

In [282]: scheme = BSBT()

In [283]: print(scheme.render())
BSBT

Show JSON schema
{
   "title": "BSBT",
   "description": "BSBT first order propagation scheme.\n\n.. code-block:: text\n\n    BSTB\n\nExamples\n--------\n\n.. ipython:: python\n    :okwarning:\n\n    from rompy.swan.subcomponents.numerics import BSBT\n    scheme = BSBT()\n    print(scheme.render())",
   "type": "object",
   "properties": {
      "model_type": {
         "default": "bsbt",
         "description": "Model type discriminator",
         "enum": [
            "bsbt",
            "BSBT"
         ],
         "title": "Model Type",
         "type": "string"
      }
   },
   "additionalProperties": false
}

Fields:
field model_type: Literal['bsbt', 'BSBT'] = 'bsbt'#

Model type discriminator

cmd() str[source]#

Command file string for this component.