Basic usage#

Assuming that you have already installed Veros, the following command is required to install the sea ice plugin Veris:

$ pip install veris

To get started with a new setup, you can use seaice_global_4deg as a template:

$ veros copy-setup seaice_global_4deg

To enable Veris on a completely new setup, you will have to register it as a Veris plugin. Add the following to your setup definition:

import veris

class MyVerosSetup(VerosSetup):
    __veros_plugins__ = (veris,)

This registers the plugin for use with Veros. Then, you can use the Veris settings to configure Veris.

See also

All new settings and variables defined by Veris in their respective sections.