Foam::points0MotionSolver::points0MotionSolver ( const polyMesh& mesh, const IOdictionary& dict, const word& type ) : motionSolver(mesh, dict, type), points0_(pointIOField(points0IO(mesh))) { if (points0_.size() != mesh.nPoints()) { FatalErrorInFunction << "Number of points in mesh " << mesh.nPoints() << " differs from number of points " << points0_.size() << " read from file " << typeFilePath<pointIOField> ( IOobject ( "points", time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ) ) << exit(FatalError); } }
Foam::displacementFvMotionSolver::displacementFvMotionSolver ( const polyMesh& mesh, Istream& ) : fvMotionSolver(mesh), points0_ ( pointIOField ( IOobject ( "points", mesh.time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ) ) ) { if (points0_.size() != mesh.nPoints()) { FatalErrorIn ( "displacementFvMotionSolver::displacementFvMotionSolver\n" "(\n" " const polyMesh&,\n" " Istream&\n" ")" ) << "Number of points in mesh " << mesh.nPoints() << " differs from number of points " << points0_.size() << " read from file " << IOobject ( "points", mesh.time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ).filePath() << exit(FatalError); } }
Foam::displacementMotionSolver::displacementMotionSolver ( const polyMesh& mesh, const IOdictionary& dict, const word& type ) : motionSolver(mesh, dict, type), pointDisplacement_ ( IOobject ( "pointDisplacement", time().timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), pointMesh::New(mesh) ), points0_(pointIOField(points0IO(mesh))) { if (points0_.size() != mesh.nPoints()) { FatalErrorIn ( "displacementMotionSolver::" "displacementMotionSolver\n" "(\n" " const polyMesh&,\n" " const IOdictionary&,\n" " const word&\n" ")" ) << "Number of points in mesh " << mesh.nPoints() << " differs from number of points " << points0_.size() << " read from file " << IOobject ( "points", time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ).filePath() << exit(FatalError); } }
//- (optionally destructively) construct from components Foam::mapDistributePolyMesh::mapDistributePolyMesh ( const polyMesh& mesh, const label nOldPoints, const label nOldFaces, const label nOldCells, labelList& oldPatchStarts, labelList& oldPatchNMeshPoints, labelListList& subPointMap, labelListList& subFaceMap, labelListList& subCellMap, labelListList& subPatchMap, labelListList& constructPointMap, labelListList& constructFaceMap, labelListList& constructCellMap, labelListList& constructPatchMap, const bool reUse // clone or reuse ) : mesh_(mesh), nOldPoints_(nOldPoints), nOldFaces_(nOldFaces), nOldCells_(nOldCells), oldPatchSizes_(oldPatchStarts.size()), oldPatchStarts_(oldPatchStarts, reUse), oldPatchNMeshPoints_(oldPatchNMeshPoints, reUse), pointMap_(mesh.nPoints(), subPointMap, constructPointMap, reUse), faceMap_(mesh.nFaces(), subFaceMap, constructFaceMap, reUse), cellMap_(mesh.nCells(), subCellMap, constructCellMap, reUse), patchMap_(mesh.boundaryMesh().size(), subPatchMap, constructPatchMap, reUse) { calcPatchSizes(); }
// Construct from mesh. No morphing data: the mesh has not changed // HJ, 27/Nov/2009 Foam::mapPolyMesh::mapPolyMesh(const polyMesh& mesh) : mesh_(mesh), morphing_(false), nOldPoints_(mesh.nPoints()), nOldFaces_(mesh.nFaces()), nOldCells_(mesh.nCells()) {}
//- Construct from components Foam::mapDistributePolyMesh::mapDistributePolyMesh ( const polyMesh& mesh, // mesh before changes const label nOldPoints, const label nOldFaces, const label nOldCells, const labelList& oldPatchStarts, const labelList& oldPatchNMeshPoints, // how to subset pieces of mesh to send across const labelListList& subPointMap, const labelListList& subFaceMap, const labelListList& subCellMap, const labelListList& subPatchMap, // how to reconstruct received mesh const labelListList& constructPointMap, const labelListList& constructFaceMap, const labelListList& constructCellMap, const labelListList& constructPatchMap ) : mesh_(mesh), nOldPoints_(nOldPoints), nOldFaces_(nOldFaces), nOldCells_(nOldCells), oldPatchSizes_(oldPatchStarts.size()), oldPatchStarts_(oldPatchStarts), oldPatchNMeshPoints_(oldPatchNMeshPoints), pointMap_(mesh.nPoints(), subPointMap, constructPointMap), faceMap_(mesh.nFaces(), subFaceMap, constructFaceMap), cellMap_(mesh.nCells(), subCellMap, constructCellMap), patchMap_(mesh.boundaryMesh().size(), subPatchMap, constructPatchMap) { calcPatchSizes(); }
Foam::componentDisplacementMotionSolver::componentDisplacementMotionSolver ( const polyMesh& mesh, const dictionary& dict, const word& type ) : motionSolver(mesh, dict, type), cmptName_(coeffDict().lookup("component")), cmpt_(cmpt(cmptName_)), points0_ ( pointIOField ( IOobject ( "points", mesh.time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ) ).component(cmpt_) ), pointDisplacement_ ( IOobject ( "pointDisplacement" + cmptName_, mesh.time().timeName(), mesh, IOobject::MUST_READ, IOobject::AUTO_WRITE ), pointMesh::New(mesh) ) { if (points0_.size() != mesh.nPoints()) { FatalErrorInFunction << "Number of points in mesh " << mesh.nPoints() << " differs from number of points " << points0_.size() << " read from file " << typeFilePath<pointIOField> ( IOobject ( "points", mesh.time().constant(), polyMesh::meshSubDir, mesh, IOobject::MUST_READ, IOobject::NO_WRITE, false ) ) << exit(FatalError); } }