mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: renumberMesh : writing XXXProcAddressing
This commit is contained in:
@ -742,6 +742,27 @@ int main(int argc, char *argv[])
|
||||
Info<< "Writing mesh to " << mesh.facesInstance() << endl;
|
||||
|
||||
mesh.write();
|
||||
if (cellProcAddressing.headerOk())
|
||||
{
|
||||
cellProcAddressing.instance() = mesh.facesInstance();
|
||||
cellProcAddressing.write();
|
||||
}
|
||||
if (faceProcAddressing.headerOk())
|
||||
{
|
||||
faceProcAddressing.instance() = mesh.facesInstance();
|
||||
faceProcAddressing.write();
|
||||
}
|
||||
if (pointProcAddressing.headerOk())
|
||||
{
|
||||
pointProcAddressing.instance() = mesh.facesInstance();
|
||||
pointProcAddressing.write();
|
||||
}
|
||||
if (boundaryProcAddressing.headerOk())
|
||||
{
|
||||
boundaryProcAddressing.instance() = mesh.facesInstance();
|
||||
boundaryProcAddressing.write();
|
||||
}
|
||||
|
||||
|
||||
if (writeMaps)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user