mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
templated uniformInterpolationTable
This commit is contained in:
@ -72,7 +72,7 @@ protected:
|
||||
word invertedTableName_;
|
||||
|
||||
//- Inverted table
|
||||
uniformInterpolationTable invertedTable_;
|
||||
uniformInterpolationTable<scalar> invertedTable_;
|
||||
|
||||
|
||||
public:
|
||||
@ -121,7 +121,8 @@ public:
|
||||
inline const word& invertedTableName() const;
|
||||
|
||||
//- Return the inverted table
|
||||
inline const uniformInterpolationTable& invertedTable() const;
|
||||
inline const uniformInterpolationTable<scalar>&
|
||||
invertedTable() const;
|
||||
|
||||
|
||||
// I-O
|
||||
|
||||
@ -35,7 +35,7 @@ Foam::tabulatedWallFunctions::tabulatedWallFunction::invertedTableName() const
|
||||
}
|
||||
|
||||
|
||||
inline const Foam::uniformInterpolationTable&
|
||||
inline const Foam::uniformInterpolationTable<Foam::scalar>&
|
||||
Foam::tabulatedWallFunctions::tabulatedWallFunction::invertedTable() const
|
||||
{
|
||||
return invertedTable_;
|
||||
|
||||
Reference in New Issue
Block a user