Skip to content
Snippets Groups Projects
Commit e8247874 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Updated Reinit library to last changes in operator and assembler interfaces.

parent b78b9ffa
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,14 @@ public:
{
FUNCNAME("VelocityExtFromVelocityField::VelocityExtFromVelocityField()");
lSFctVal = new double[dim + 1];
lSFctVal.change_dim(dim + 1);
// ===== set epsilon for norm regularization =====
NormEps::setEps();
}
~VelocityExtFromVelocityField()
{
delete [] lSFctVal;
}
{}
/**
* Set velocity field.
......@@ -92,19 +90,13 @@ public:
*/
DimVec<double> elNormalVel;
/**
* Values of level set function in vertices of element.
*/
double *lSFctVal;
/// Values of level set function in vertices of element.
ElementVector lSFctVal;
/**
* Basis functions.
*/
/// Basis functions.
const BasisFunction *basFcts;
/**
* ElInfo used in calcVelocityBoundary().
*/
/// ElInfo used in calcVelocityBoundary().
ElInfo *elInfo;
};
......
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