Skip to content

Mdu

Boundary (INIBasedModel) pydantic-model

Generic attribute for models that have children fields that could contain files.

Source code in hydrolib/core/io/mdu/models.py
def is_intermediate_link(self) -> bool:
    return True

ExternalForcing (INIBasedModel) pydantic-model

Generic attribute for models that have children fields that could contain files.

Source code in hydrolib/core/io/mdu/models.py
def is_intermediate_link(self) -> bool:
    return True

FMModel (INIModel) pydantic-model

FM Model representation.

Geometry (INIBasedModel) pydantic-model

Generic attribute for models that have children fields that could contain files.

Source code in hydrolib/core/io/mdu/models.py
def is_intermediate_link(self) -> bool:
    return True

Output (INIBasedModel) pydantic-model

Generic attribute for models that have children fields that could contain files.

Source code in hydrolib/core/io/mdu/models.py
def is_intermediate_link(self) -> bool:
    # TODO set to True once we replace Paths with FileModels
    return False
Back to top