mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
COMP: avoid ambiguous construct from tmp - utils/ mesh
This commit is contained in:
@ -79,12 +79,13 @@ int main(int argc, char *argv[])
|
||||
Info<< " Reading U" << endl;
|
||||
volVectorField U(Uheader, mesh);
|
||||
|
||||
pointField newPoints =
|
||||
pointField newPoints
|
||||
(
|
||||
zeroPoints
|
||||
+ scaleFactor*pInterp.interpolate(U)().internalField();
|
||||
+ scaleFactor*pInterp.interpolate(U)().internalField()
|
||||
);
|
||||
|
||||
mesh.polyMesh::movePoints(newPoints);
|
||||
|
||||
mesh.write();
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user