Skip to content
Snippets Groups Projects
Commit 0d434400 authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[staggered] Remove PrimaryVariable and NumEqVector properties

parent 80fe8bf4
No related branches found
No related tags found
2 merge requests!676Cleanup/staggered remove privar class,!617[WIP] Next
......@@ -250,25 +250,7 @@ public:
using type = BoundaryTypes<numEqCellCenter + numEqFace>;
};
//! A container class used to specify values for boundary/initial conditions
SET_PROP(StaggeredModel, PrimaryVariables)
{
private:
using CellCenterPrimaryVariables = typename GET_PROP_TYPE(TypeTag, CellCenterPrimaryVariables);
using FacePrimaryVariables = typename GET_PROP_TYPE(TypeTag, FacePrimaryVariables);
public:
using type = StaggeredPrimaryVariables<TypeTag, CellCenterPrimaryVariables, FacePrimaryVariables>;
};
//! A container class used to specify values for sources and Neumann BCs
SET_PROP(StaggeredModel, NumEqVector)
{
private:
using CellCenterPrimaryVariables = typename GET_PROP_TYPE(TypeTag, CellCenterPrimaryVariables);
using FacePrimaryVariables = typename GET_PROP_TYPE(TypeTag, FacePrimaryVariables);
public:
using type = StaggeredPrimaryVariables<TypeTag, CellCenterPrimaryVariables, FacePrimaryVariables>;
};
SET_TYPE_PROP(StaggeredModel, GridVariables, StaggeredGridVariables<TypeTag>);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment