mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: used wrong variable names for faceZones. Did not close file.
This commit is contained in:
@ -1019,6 +1019,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
writer.writeEnd();
|
writer.writeEnd();
|
||||||
|
Info<< endl;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1067,7 +1068,7 @@ int main(int argc, char *argv[])
|
|||||||
writer.writeInit
|
writer.writeInit
|
||||||
(
|
(
|
||||||
runTime.caseName(),
|
runTime.caseName(),
|
||||||
cellVarNames,
|
allVarNames,
|
||||||
patchFileName,
|
patchFileName,
|
||||||
DataFileType_Full
|
DataFileType_Full
|
||||||
);
|
);
|
||||||
@ -1163,6 +1164,8 @@ int main(int argc, char *argv[])
|
|||||||
<< nl << endl;
|
<< nl << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
writer.writeEnd();
|
||||||
|
Info<< endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user