Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
3b10cd84
Commit
3b10cd84
authored
Jun 23, 2021
by
Andrew Heather
Committed by
mattijs
Jun 24, 2021
Browse files
ENH: Provided backwards compat for deprecated partialFaceAreaWeightAMI
parent
3cf0c58d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/meshTools/AMIInterpolation/AMIInterpolation/faceAreaWeightAMI/faceAreaWeightAMI.C
View file @
3b10cd84
...
...
@@ -38,6 +38,17 @@ namespace Foam
defineTypeNameAndDebug
(
faceAreaWeightAMI
,
0
);
addToRunTimeSelectionTable
(
AMIInterpolation
,
faceAreaWeightAMI
,
dict
);
addToRunTimeSelectionTable
(
AMIInterpolation
,
faceAreaWeightAMI
,
component
);
// Backwards compatibility for pre v2106 versions
// - partialFaceAreaWeightAMI deprecated in v2106
addNamedToRunTimeSelectionTable
(
AMIInterpolation
,
faceAreaWeightAMI
,
dict
,
partialFaceAreaWeightAMI
);
}
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment