mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Provided backwards compat for deprecated partialFaceAreaWeightAMI
This commit is contained in:
@ -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 * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user