// Construct the geometry on the boundary using the map lGF(localGeometry.global(local)):
// The variable local holds the local coordinates in the 2D reference element, localGeometry.global maps them to the 3D reference element.
// The function lGF is the gridfunction bound to the current element, so lGF(localGeometry.global(local)) is the value of curvedGeometryGridFunction_ at
std::cout<<"Reading in deformation file: "<<pathToGridDeformationFile+parameterSet.get<std::string>("gridDeformationFile")<<std::endl;
std::cout<<"Reading in deformation file ("<<"order is "<<stressFreeDataOrder<<"): "<<pathToGridDeformationFile+parameterSet.get<std::string>("gridDeformationFile")<<std::endl;
// Read grid deformation information from the file specified in the parameter set via gridDeformationFile
@@ -384,62 +382,40 @@ int main (int argc, char *argv[]) try
}
if(mpiHelper.rank()==0)
std::cout<<"... done: The grid has "<<globalVertexIndexSet.size(dim)<<" vertices and the defomation file has "<<deformationMap.size()<<" entries."<<std::endl;