Skip to content
Snippets Groups Projects
Commit 3615fed0 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

remove member variables numFAP and numSCV from CCFVElementGeometry. They have...

remove member variables numFAP and numSCV from CCFVElementGeometry. They have been deprecated in 2.3, in favor of using numFap and numScv. Correct CHANGELOG correspondingly.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10393 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent b66d16e5
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ Differences Between DuMuX 2.2 and DuMuX 2.3
* Deprecated public MEMBER VARIABLES, to be removed after 2.3: BEWARE: The
compiler will not print any warning if a deprecated public member variable
is used.
- numFAP and numSCV in BoxFVElementGeometry have been renamed to
- numFAP and numSCV in Box(CC)FVElementGeometry have been renamed to
numFap and numScv, respectively.
* DELETED classes/files, property names, constants/enums,
......
......@@ -111,10 +111,8 @@ public:
int numEdges; //!< number of edges
int numFaces; //!< number of faces (0 in < 3D)
int numScv; //!< number of subcontrol volumes
int numSCV; //!< \deprecated number of subcontrol volumes
int numNeighbors; //!< number of neighboring elements including the element itself
int numFap; //!< number of flux approximation points
int numFAP; //!< \deprecated number of flux approximation points
std::vector<ElementPointer> neighbors; //!< stores pointers for the neighboring elements
void updateInner(const Element& element)
......@@ -129,9 +127,7 @@ public:
numEdges = element.template count<dim-1>();
numFaces = (dim<3)? 0 : element.template count<1>();
numScv = 1;
numSCV = numScv;
numFap = 2;
numFAP = numFap;
subContVol[0].local = elementLocal;
subContVol[0].global = elementGlobal;
......
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