mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
DEFEATURE: remove CCM combine boundary code
- was generally somewhat fragile. The main problem stems from the fact that several interfaces may be attached to a boundary. No trivial means of solving this without too much work for a feature that is only "nice-to-have".
This commit is contained in:
@ -125,12 +125,6 @@ int main(int argc, char *argv[])
|
||||
"provide alternative base name when re-exporting (implies -export). "
|
||||
"Default is <meshExport>."
|
||||
);
|
||||
// This often works, but is not entirely stable
|
||||
// argList::addBoolOption
|
||||
// (
|
||||
// "combine",
|
||||
// "combine identically named patches"
|
||||
// );
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noBaffles",
|
||||
@ -211,10 +205,6 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
rOpts.useNumberedNames(true);
|
||||
}
|
||||
else if (args.optionFound("combine"))
|
||||
{
|
||||
rOpts.combineBoundaries(true);
|
||||
}
|
||||
|
||||
if (args.optionFound("solids"))
|
||||
{
|
||||
@ -295,7 +285,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
const fileName geomName = exportName + ".ccmg";
|
||||
Info<< nl << "Re-exporting geometry as " << geomName << nl;
|
||||
ccm::writer(geomName, mesh).writeGeometry();
|
||||
ccm::writer(geomName, mesh()).writeGeometry();
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user