|
| template<class FVAssembler , class... options> |
| void | registerFVAssembler (pybind11::handle scope, pybind11::class_< FVAssembler, options... > cls) |
| |
| template<class BoundaryTypes , class... Options> |
| void | registerBoundaryTypes (pybind11::handle scope, pybind11::class_< BoundaryTypes, Options... > cls) |
| |
| template<class BoundaryTypes > |
| void | registerBoundaryTypes (pybind11::handle scope) |
| |
| template<class Problem , class... options> |
| void | registerFVProblem (pybind11::handle scope, pybind11::class_< Problem, options... > cls) |
| |
| template<class SpatialParams , class... options> |
| void | registerFVSpatialParams (pybind11::handle scope, pybind11::class_< SpatialParams, options... > cls) |
| |
| template<class Scalar , class... options> |
| void | registerTimeLoop (pybind11::handle scope, pybind11::class_< CheckPointTimeLoop< Scalar >, options... > cls) |
| |
| template<class Scalar > |
| void | registerTimeLoop (pybind11::handle scope, const char *clsName="TimeLoop") |
| |
| template<class GG , class... Options> |
| void | registerGridGeometry (pybind11::handle scope, pybind11::class_< GG, Options... > cls) |
| |
| template<class GV , class... Options> |
| void | registerGridVariables (pybind11::handle scope, pybind11::class_< GV, Options... > cls) |
| |
| template<class GridVariables , class SolutionVector , class... options> |
| void | registerVtkOutputModule (pybind11::handle scope, pybind11::class_< VtkOutputModule< GridVariables, SolutionVector >, options... > cls) |
| |
| template<class GridVariables , class SolutionVector > |
| void | registerVtkOutputModule (pybind11::handle scope, const char *clsName="VtkOutputModule") |
| |
| template<class Comp , class... options> |
| void | registerComponent (pybind11::handle scope, pybind11::class_< Comp, options... > cls) |
| |
| template<class FS , class... options> |
| void | registerFluidSystem (pybind11::handle scope, pybind11::class_< FS, options... > cls) |
| |
| template<class Problem , class... options> |
| void | registerPorousMediumFlowProblem (pybind11::handle scope, pybind11::class_< Problem, options... > cls) |
| |
| template<class SpatialParams , class... options> |
| void | registerFVSpatialParamsOneP (pybind11::handle scope, pybind11::class_< SpatialParams, options... > cls) |
| |
| template<class GridVariables , class FluxVariables , class... options> |
| void | registerPorousMediumFlowVelocityOutput (pybind11::handle scope, pybind11::class_< Dumux::PorousMediumFlowVelocityOutput< GridVariables, FluxVariables >, options... > cls) |
| |