xsimlab.create_setup

xsimlab.create_setup(model=None, clocks=None, master_clock=None, input_vars=None, output_vars=None, fill_default=True)

Create a specific setup for model runs.

This convenient function creates a new xarray.Dataset object with everything needed to run a model (i.e., input values, time steps, output variables to save at given times) as data variables, coordinates and attributes.

Parameters
  • model (xsimlab.Model object, optional) – Create a simulation setup for this model. If None, tries to get model from context.

  • clocks (dict, optional) – Used to create one or several clock coordinates. Dictionary values are anything that can be easily converted to xarray.IndexVariable objects (e.g., a 1-d numpy.ndarray or a pandas.Index).

  • master_clock (str or dict, optional) –

    Name of the clock coordinate (dimension) to use as master clock. If not set, the name is inferred from clocks (only if one coordinate is given and if Dataset has no master clock defined yet). A dictionary can also be given with one of several of these keys:

    • dim : name of the master clock dimension/coordinate

    • units : units of all clock coordinate labels

    • calendar : a unique calendar for all (time) clock coordinates

  • input_vars (dict, optional) –

    Dictionary with values given for model inputs. Entries of the dictionary may look like:

    • 'foo': {'bar': value, ...} or

    • ('foo', 'bar'): value or

    • 'foo__bar': value

    where foo is the name of a existing process in the model and bar is the name of an (input) variable declared in that process.

    Values are anything that can be easily converted to xarray.Variable objects, e.g., single values, array-like, (dims, data, attrs) tuples or xarray objects. For array-like values with no dimension labels, xarray-simlab will look in model variables metadata for labels matching the number of dimensions of those arrays.

  • output_vars (dict, optional) – Dictionary with model variable names to save as simulation output (time-dependent or time-independent). Entries of the dictionary look similar than for input_vars (see here above), except that here value must correspond to the dimension of a clock coordinate (i.e., new output values will be saved at each time given by the coordinate labels) or None (i.e., only one value will be saved at the end of the simulation).

  • fill_default (bool, optional) – If True (default), automatically fill the dataset with all model inputs missing in input_vars and their default value (if any).

Returns

dataset – A new Dataset object with model inputs as data variables or coordinates (depending on their given value) and clock coordinates. The names of the input variables also include the name of their process (i.e., ‘foo__bar’).

Return type

xarray.Dataset

Notes

Output variable names are added in Dataset as specific attributes (global and/or clock coordinate attributes).