Skip to content
Snippets Groups Projects
Commit f916e88e authored by Thomas Fetzer's avatar Thomas Fetzer
Browse files

[2cstokes2p2c] Use new fluxVars facility

parent 2a3fca2d
No related branches found
No related tags found
1 merge request!119[2cstokes2p2c] Use new fluxVars facility
......@@ -137,12 +137,13 @@ public:
continue;
const int boundaryFaceIdx = this->fvGeometry_().boundaryFaceIndex(fIdx, faceVertexIdx);
const FluxVariables boundaryVars(this->problem_(),
this->element_(),
this->fvGeometry_(),
boundaryFaceIdx,
this->curVolVars_(),
true);
FluxVariables boundaryVars;
boundaryVars.update(this->problem_(),
this->element_(),
this->fvGeometry_(),
boundaryFaceIdx,
this->curVolVars_(),
true);
const VolumeVariables &volVars = this->curVolVars_()[scvIdx];
// set velocity normal to the interface
......
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