20 #ifndef GEOS_FUNCTIONS_TABLEFUNCTION_HPP_
21 #define GEOS_FUNCTIONS_TABLEFUNCTION_HPP_
26 #include "LvArray/src/tensorOps.hpp"
85 m_coordinates = std::move( other.m_coordinates );
86 m_values = std::move( other.m_values );
87 m_interpolationMethod = other.m_interpolationMethod;
99 template<
typename IN_ARRAY >
109 template<
typename IN_ARRAY,
typename OUT_ARRAY >
120 void move( LvArray::MemorySpace
const space,
bool const touch )
122 m_coordinates.move( space, touch );
123 m_values.move( space, touch );
150 template<
typename IN_ARRAY >
153 interpolateLinear( IN_ARRAY
const & input )
const;
161 template<
typename IN_ARRAY,
typename OUT_ARRAY >
164 interpolateLinear( IN_ARRAY
const & input, OUT_ARRAY && derivatives )
const;
171 template<
typename IN_ARRAY >
174 interpolateRound( IN_ARRAY
const & input )
const;
183 template<
typename IN_ARRAY >
194 template<
typename IN_ARRAY,
typename OUT_ARRAY >
197 interpolateRound( IN_ARRAY
const & input, OUT_ARRAY && derivatives )
const;
247 FunctionBase::evaluateT< TableFunction, parallelHostPolicy >( group, time,
set, result );
314 return size_t(dim) < m_dimUnits.size() ? m_dimUnits[dim] : units::Unknown;
329 std::vector< units::Unit >
const & dimUnits = {} );
337 m_dimUnits = dimUnits;
440 std::vector< units::Unit > m_dimUnits;
452 template<
typename IN_ARRAY >
458 if( m_interpolationMethod == TableFunction::InterpolationType::Linear )
460 return interpolateLinear( input );
464 return interpolateRound( input );
468 template<
typename IN_ARRAY >
472 TableFunction::KernelWrapper::interpolateLinear( IN_ARRAY
const & input )
const
481 arraySlice1d< real64 const >
const coords = m_coordinates[dim];
482 if( input[dim] <= coords[0] )
487 weights[dim][0] = 0.0;
488 weights[dim][1] = 1.0;
490 else if( input[dim] >= coords[coords.size() - 1] )
493 bounds[dim][0] = coords.size() - 1;
494 bounds[dim][1] = bounds[dim][0];
495 weights[dim][0] = 1.0;
496 weights[dim][1] = 0.0;
507 auto const lower = LvArray::sortedArrayManipulation::find( coords.begin(), coords.size(), input[dim] );
508 bounds[dim][1] = LvArray::integerConversion< localIndex >( lower );
509 bounds[dim][0] = bounds[dim][1] - 1;
511 real64 const dx = coords[bounds[dim][1]] - coords[bounds[dim][0]];
512 weights[dim][0] = 1.0 - ( input[dim] - coords[bounds[dim][0]]) / dx;
513 weights[dim][1] = 1.0 - weights[dim][0];
520 for(
integer point = 0; point < numCorners; ++point )
527 integer const corner = (point >> dim) & 1;
528 tableIndex += bounds[dim][corner] * stride;
529 stride *= m_coordinates.sizeOfArray( dim );
533 real64 cornerValue = m_values[tableIndex];
536 integer const corner = (point >> dim) & 1;
537 cornerValue *= weights[dim][corner];
539 value += cornerValue;
544 template<
typename IN_ARRAY >
548 TableFunction::KernelWrapper::interpolateRound( IN_ARRAY
const & input )
const
557 arraySlice1d< real64 const >
const coords = m_coordinates[dim];
560 if( input[dim] <= coords[0] )
565 else if( input[dim] >= coords[coords.size() - 1] )
568 subIndex = coords.size() - 1;
574 auto const lower = LvArray::sortedArrayManipulation::find( coords.begin(), coords.size(), input[dim] );
575 subIndex = LvArray::integerConversion< localIndex >( lower );
581 if( m_interpolationMethod == TableFunction::InterpolationType::Nearest )
583 if( ( input[dim] - coords[subIndex - 1]) <= ( coords[subIndex] - input[dim]) )
588 else if( m_interpolationMethod == TableFunction::InterpolationType::Lower )
598 tableIndex += subIndex * stride;
599 stride *= coords.size();
603 return m_values[tableIndex];
606 template<
typename IN_ARRAY >
610 TableFunction::KernelWrapper::getCoord( IN_ARRAY
const & input,
localIndex const dim,
InterpolationType interpolationMethod )
const
614 arraySlice1d< real64 const >
const coords = m_coordinates[dim];
616 if( input[dim] <= coords[0] )
621 else if( input[dim] >= coords[coords.size() - 1] )
624 subIndex = coords.size() - 1;
630 auto const lower = LvArray::sortedArrayManipulation::find( coords.begin(), coords.size(), input[dim] );
631 subIndex = LvArray::integerConversion< localIndex >( lower );
637 if( interpolationMethod == TableFunction::InterpolationType::Nearest )
639 if( ( input[dim] - coords[subIndex - 1]) <= ( coords[subIndex] - input[dim]) )
644 else if( interpolationMethod == TableFunction::InterpolationType::Lower )
654 return coords[subIndex];
657 template<
typename IN_ARRAY,
typename OUT_ARRAY >
664 if( m_interpolationMethod == TableFunction::InterpolationType::Linear )
666 return interpolateLinear( input, derivatives );
671 return interpolateRound( input, derivatives );
675 template<
typename IN_ARRAY,
typename OUT_ARRAY >
679 TableFunction::KernelWrapper::interpolateLinear( IN_ARRAY
const & input, OUT_ARRAY && derivatives )
const
690 arraySlice1d< real64 const >
const coords = m_coordinates[dim];
691 if( input[dim] <= coords[0] )
698 dWeights_dInput[dim][0] = 0;
699 dWeights_dInput[dim][1] = 0;
701 else if( input[dim] >= coords[coords.size() - 1] )
704 bounds[dim][0] = coords.size() - 1;
705 bounds[dim][1] = bounds[dim][0];
708 dWeights_dInput[dim][0] = 0;
709 dWeights_dInput[dim][1] = 0;
717 auto lower = LvArray::sortedArrayManipulation::find( coords.begin(), coords.size(), input[dim] );
718 bounds[dim][1] = LvArray::integerConversion< localIndex >( lower );
719 bounds[dim][0] = bounds[dim][1] - 1;
721 real64 const dx = coords[bounds[dim][1]] - coords[bounds[dim][0]];
722 weights[dim][0] = 1.0 - ( input[dim] - coords[bounds[dim][0]]) / dx;
723 weights[dim][1] = 1.0 - weights[dim][0];
724 dWeights_dInput[dim][0] = -1.0 / dx;
725 dWeights_dInput[dim][1] = -dWeights_dInput[dim][0];
733 derivatives[dim] = 0.0;
737 for(
integer point = 0; point < numCorners; ++point )
744 integer const corner = (point >> dim) & 1;
745 tableIndex += bounds[dim][corner] * stride;
746 stride *= m_coordinates.sizeOfArray( dim );
750 real64 cornerValue = m_values[tableIndex];
754 dCornerValue_dInput[dim] = cornerValue;
759 integer const corner = (point >> dim) & 1;
760 cornerValue *= weights[dim][corner];
763 dCornerValue_dInput[kk] *= ( dim == kk ) ? dWeights_dInput[dim][corner] : weights[dim][corner];
769 derivatives[dim] += dCornerValue_dInput[dim];
771 value += cornerValue;
776 template<
typename IN_ARRAY,
typename OUT_ARRAY >
780 TableFunction::KernelWrapper::interpolateRound( IN_ARRAY
const & input, OUT_ARRAY && derivatives )
const
783 GEOS_ERROR(
"Rounding interpolation with derivatives not implemented" );
802 string TableTextFormatter::toString< TableFunction >(
TableFunction const & tableData )
const;
810 string TableCSVFormatter::toString< TableFunction >(
TableFunction const & tableData )
const;
#define GEOS_HOST_DEVICE
Marks a host-device function.
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
#define GEOS_FORCE_INLINE
Marks a function or lambda for inlining.
#define GEOS_ERROR(msg)
Raise a hard error and terminate the program.
Enumerates the Units that are in use in GEOS and regroups useful conversion and formatting functions.
Unit
Enumerator of available unit types for given physical scales. Units are in SI by default.
Class describing a file Path.
GEOS_HOST_DEVICE real64 compute(IN_ARRAY const &input, OUT_ARRAY &&derivatives) const
Interpolate in the table with derivatives.
void move(LvArray::MemorySpace const space, bool const touch)
Move the KernelWrapper to the given execution space, optionally touching it.
GEOS_HOST_DEVICE real64 compute(IN_ARRAY const &input) const
Interpolate in the table.
string getCoordsDescription(integer dimId, bool shortUnitsToVariables) const
InterpolationType
Enumerator of available interpolation types.
void setTableValues(real64_array values, units::Unit unit=units::Unknown)
Set the table values.
array1d< real64 > & getValues()
Get the table values.
arrayView1d< real64 const > getValues() const
Get the table values.
void checkCoord(real64 coord, localIndex dim) const
Check if the given coordinate is in the bounds of the table coordinates in the specified dimension,...
virtual void evaluate(dataRepository::Group const &group, real64 const time, SortedArrayView< localIndex const > const &set, arrayView1d< real64 > const &result) const override final
Method to evaluate a function on a target object.
ArrayOfArraysView< real64 > getCoordinates()
Get the table axes definitions.
real64 getCoord(real64 const *const input, localIndex dim, InterpolationType interpolationMethod) const
Method to get coordinates.
void setTableCoordinates(array1d< real64_array > const &coordinates, std::vector< units::Unit > const &dimUnits={})
Set the table coordinates.
void setValueUnits(units::Unit unit)
Set the table value units.
void setDimUnits(std::vector< units::Unit > const &dimUnits)
Set the units of each dimension.
string getTableDescription() const
void reInitializeFunction()
Build the maps used to evaluate the table function.
KernelWrapper createKernelWrapper() const
Create an instance of the kernel wrapper.
void initializePostSubGroups() override
Called by Initialize() after to initializing sub-Groups.
TableFunction(const string &name, dataRepository::Group *const parent)
The constructor.
units::Unit getValueUnit() const
void setInterpolationMethod(InterpolationType const method)
Set the interpolation method.
static constexpr integer maxDimensions
maximum dimensions for the coordinates in the table
virtual real64 evaluate(real64 const *const input) const override final
Method to evaluate a function.
static string catalogName()
The catalog name interface.
virtual void initializeFunction() override
Initialize the table function.
ArrayOfArraysView< real64 const > getCoordinates() const
Get the table axes definitions.
integer numDimensions() const
units::Unit getDimUnit(localIndex const dim) const
InterpolationType getInterpolationMethod() const
Get the interpolation method.
string getValuesDescription() const
void outputTableData(OutputOptions const outputOpts) const
Print the table(s) in the log and/or CSV files when requested by the user.
Group & operator=(Group const &)=delete
Deleted copy assignment operator.
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
ENUM_STRINGS(LinearSolverParameters::SolverType, "direct", "cg", "gmres", "fgmres", "bicgstab", "preconditioner")
Declare strings associated with enumeration values.
LvArray::ArrayOfArraysView< T, INDEX_TYPE const, CONST_SIZES, LvArray::ChaiBuffer > ArrayOfArraysView
View of array of variable-sized arrays. See LvArray::ArrayOfArraysView for details.
array1d< Path > path_array
A 1-dimensional array of geos::Path types.
std::set< T > set
A set of local indices.
double real64
64-bit floating point type.
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
std::int32_t integer
Signed integer type.
array1d< real64 > real64_array
A 1-dimensional array of geos::real64 types.
std::size_t size_t
Unsigned size type.
LvArray::SortedArrayView< T, localIndex, LvArray::ChaiBuffer > SortedArrayView
A sorted array view of local indices.
Array< T, 1 > array1d
Alias for 1D array.
LvArray::ArrayOfArrays< T, INDEX_TYPE, LvArray::ChaiBuffer > ArrayOfArrays
Array of variable-sized arrays. See LvArray::ArrayOfArrays for details.
Struct containing output options.
bool writeInLog
Request table output in log.
bool writeCSV
Request table output in CSV file.
Struct containing lookup keys for data repository wrappers.
static constexpr char const * coordinatesString()
static constexpr char const * interpolationString()
static constexpr char const * valuesString()
static constexpr char const * voxelFileString()
static constexpr char const * coordinateFilesString()
static constexpr char const * writeCSVFlagString()