mappedExtrudedPatchBase: New base class for extruded patches
mappedExtrudedPolyPatch and mappedExtrudedWallPolyPatch are now derived from mappedExtrudedPatchBase
This commit is contained in:
@ -552,11 +552,21 @@ void addCouplingPatches
|
||||
<< "-------\t-----\t----"
|
||||
<< endl;
|
||||
|
||||
const wordList patchNames
|
||||
wordList patchNames
|
||||
(
|
||||
dict.lookupOrDefault("patchNames", wordList())
|
||||
);
|
||||
|
||||
wordList regionPatchNames
|
||||
(
|
||||
dict.lookupOrDefault("regionPatchNames", wordList())
|
||||
);
|
||||
|
||||
if (isShellMesh)
|
||||
{
|
||||
patchNames.swap(regionPatchNames);
|
||||
}
|
||||
|
||||
const wordList patchTypes
|
||||
(
|
||||
isShellMesh
|
||||
@ -572,11 +582,6 @@ void addCouplingPatches
|
||||
)
|
||||
);
|
||||
|
||||
const wordList regionPatchNames
|
||||
(
|
||||
dict.lookupOrDefault("regionPatchNames", wordList())
|
||||
);
|
||||
|
||||
const wordList regionOppositePatchTypes
|
||||
(
|
||||
dict.lookupOrDefault("regionOppositePatchTypes", wordList())
|
||||
@ -672,7 +677,7 @@ void addCouplingPatches
|
||||
topPatchDict.add("neighbourPatch", topNbrPatchName);
|
||||
if (isShellMesh)
|
||||
{
|
||||
topPatchDict.add("bottomPatch", bottomPatchName);
|
||||
topPatchDict.add("oppositePatch", bottomPatchName);
|
||||
}
|
||||
|
||||
zoneTopPatch[zonei] = addPatch
|
||||
|
||||
Reference in New Issue
Block a user