Function1s::Table: Added access functions

to enable tables to be constructed from the components of existing tables with
value transformations.
This commit is contained in:
Henry Weller
2021-07-19 14:16:08 +01:00
parent 689ea4224f
commit e2e88c3058
4 changed files with 36 additions and 5 deletions

View File

@ -122,6 +122,7 @@ Foam::diameterModels::binaryBreakupModels::LuoSvendsen::LuoSvendsen
"gamma2by11",
Function1s::tableBase::boundsHandling::clamp,
linearInterpolationWeights::typeName,
autoPtr<TableReader<scalar>>(nullptr),
gammaUpperReg2by11Table
);
@ -131,6 +132,7 @@ Foam::diameterModels::binaryBreakupModels::LuoSvendsen::LuoSvendsen
"gamma5by11",
Function1s::tableBase::boundsHandling::clamp,
linearInterpolationWeights::typeName,
autoPtr<TableReader<scalar>>(nullptr),
gammaUpperReg5by11Table
);
@ -140,6 +142,7 @@ Foam::diameterModels::binaryBreakupModels::LuoSvendsen::LuoSvendsen
"gamma8by11",
Function1s::tableBase::boundsHandling::clamp,
linearInterpolationWeights::typeName,
autoPtr<TableReader<scalar>>(nullptr),
gammaUpperReg8by11Table
);
}