55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
//--------------------------------------------------//
|
|
//- move mesh
|
|
//--------------------------------------------------//
|
|
if(min(J.internalField()) > 0)
|
|
{
|
|
Info << "Moving mesh using least squares interpolation" << endl;
|
|
|
|
leastSquaresVolPointInterpolation pointInterpolation(mesh);
|
|
|
|
// Create point mesh
|
|
pointMesh pMesh(mesh);
|
|
|
|
wordList types
|
|
(
|
|
pMesh.boundary().size(),
|
|
calculatedFvPatchVectorField::typeName
|
|
);
|
|
|
|
pointVectorField pointU
|
|
(
|
|
IOobject
|
|
(
|
|
"pointU",
|
|
runTime.timeName(),
|
|
mesh
|
|
),
|
|
pMesh,
|
|
dimensionedVector("zero", dimLength, vector::zero),
|
|
types
|
|
);
|
|
|
|
pointInterpolation.interpolate(U, pointU);
|
|
|
|
const vectorField& pointUI = pointU.internalField();
|
|
|
|
//- Move mesh
|
|
vectorField newPoints = mesh.allPoints();
|
|
|
|
forAll (pointUI, pointI)
|
|
{
|
|
newPoints[pointI] += pointUI[pointI];
|
|
}
|
|
|
|
twoDPointCorrector twoDCorrector(mesh);
|
|
twoDCorrector.correctPoints(newPoints);
|
|
mesh.movePoints(newPoints);
|
|
mesh.V00();
|
|
mesh.moving(false);
|
|
}
|
|
else
|
|
{
|
|
FatalErrorIn(args.executable())
|
|
<< "Negative Jacobian"
|
|
<< exit(FatalError);
|
|
}
|