Basic usageΒΆ

Assuming that you have already installed Veros, the follwoing 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.

Remember to prepare atmospheric forcing if you want to use a different one. This could be various reanalysis products such as ERA5 (from ECMWF) and NCEP (from NCAR) or a numerical weather prediction model output.

See also

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