WVModel

The WVModel is responsible for time-stepping (integrating) the ocean state forward in time, as represented by a WVTransform.


Overview

Assuming you have already initialized a WVTransform, e.g.,

 wvt = WVTransformConstantStratification([Lx, Ly, Lz], [Nx, Ny, Nz], N0,latitude=latitude);

and maybe set some initial conditions, you can then initialize the model,

 model = WVModel(wvt)

By default the model only takes a linear time-step. To specify a nonlinear flux on initialization, for example,

 model = WVModel(wvt);

You can also initialize a model from existing output,

 model = WVModel.modelFromFile('SomeFile.nc');

Advanced usage ————–

  1. Create 1 or more NetCDFFiles
  2. Add 1 or more WVModelOutputGroups to each file
  3. Add 1 or more WVObservingSystems to each output group.

Topics



This site uses Just the Docs, a documentation theme for Jekyll.