Source code for polaris.tasks.seaice.single_column

from polaris.tasks.seaice.single_column.exact_restart import (
    ExactRestart as ExactRestart,
)
from polaris.tasks.seaice.single_column.standard_physics import (
    StandardPhysics as StandardPhysics,
)


[docs] def add_single_column_tasks(component): """ Add various tasks that define single-column tests Parameters ---------- component : polaris.tasks.seaice.SeaIce the component that that the tasks will be added to """ component.add_task(StandardPhysics(component=component)) component.add_task(ExactRestart(component=component))