Bimetric 3+1 toolkit for spherical symmetry
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Adding new grid functions
A grid function is a discretization of a variable (a "field") which is defined on every point of a given grid. Examples are the components of the metric tensor in GR, or the rest-mass density of a fluid which is defined in all cells within a given domain.

Instructions to add a new grid function for the field gf

  • add the identifier gf to an enumeration in the fld namespace
  • (optionally) add gf to a list passed to GridInitialData::gridFunction()
  • (optionally) add gf to a list passed to GridOutputWriter::gridFunction()
  • (optionally) add gf to a list passed to MoLIntegrator::keepConstant() or to MoLIntegrator::keepEvolved()
  • to be able to access gf's values using gf(m,n), add emitField(gf) inside the declaration.

You will also need to: