diff --git a/dumux/boxmodels/2p2cni/2p2cnifluxvariables.hh b/dumux/boxmodels/2p2cni/2p2cnifluxvariables.hh index 54d49e5250c88305bc372e436e978640954f78ba..2d2828062cf5eb98568bf5b41ad2919c8d2a354e 100644 --- a/dumux/boxmodels/2p2cni/2p2cnifluxvariables.hh +++ b/dumux/boxmodels/2p2cni/2p2cnifluxvariables.hh @@ -108,7 +108,7 @@ protected: // gradients temperatureGrad_ = 0; Vector tmp(0.0); - for (int vertIdx = 0; vertIdx < this->fvGeom_.numVertices; vertIdx++) + for (int vertIdx = 0; vertIdx < this->fvGeometry_.numVertices; vertIdx++) { tmp = this->face().grad[vertIdx]; tmp *= elemVolVars[vertIdx].temperature(); @@ -122,7 +122,7 @@ protected: elemVolVars, temperatureGrad_, element, - this->fvGeom_, + this->fvGeometry_, scvfIdx_); else // heat flux at outflow boundaries problem.spatialParameters().boundaryMatrixHeatFlux(tmp, @@ -130,7 +130,7 @@ protected: elemVolVars, this->face(), element, - this->fvGeom_); + this->fvGeometry_); // project the heat flux vector on the face's normal vector normalMatrixHeatFlux_ = tmp*this->face().normal; diff --git a/dumux/boxmodels/mpnc/mpncpropertydefaults.hh b/dumux/boxmodels/mpnc/mpncpropertydefaults.hh index d4637061a748e776eaa1b78d6d009c39b5cc9bc0..ddc83898ebf044385a864c1a9de9ec7b440e3199 100644 --- a/dumux/boxmodels/mpnc/mpncpropertydefaults.hh +++ b/dumux/boxmodels/mpnc/mpncpropertydefaults.hh @@ -172,6 +172,9 @@ SET_PROP(BoxMPNC, Indices) //! DEPRECATED MPNCIndices property SET_TYPE_PROP(BoxMPNC, MPNCIndices, typename GET_PROP_TYPE(TypeTag, Indices)); +//! DEPRECATED SpatialParameters property +SET_TYPE_PROP(BoxMPNC, SpatialParameters, typename GET_PROP_TYPE(TypeTag, SpatialParams)); + //! The VTK writer module for common quantities SET_PROP(BoxMPNC, MPNCVtkCommonModule) {