chombo-discharge
Loading...
Searching...
No Matches
CD_LookupTable.H
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021-2026 SINTEF Energy Research
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
13#ifndef CD_LOOKUPTABLE_H
14#define CD_LOOKUPTABLE_H
15
16// Std includes
17#include <memory>
18#include <vector>
19#include <type_traits>
20#include <iostream>
21
22// Our includes
23#include <CD_NamespaceHeader.H>
24
25namespace LookupTable {
33 {
34 Constant,
35 Interpolate
36 };
37
41 enum class Spacing
42 {
43 Uniform,
44 Exponential
45 };
46
47} // namespace LookupTable
48
49#include <CD_NamespaceFooter.H>
50
51#include <CD_LookupTable1D.H>
52
53#endif
Declaration of a lookup table in one independent variable.
OutOfRangeStrategy
Strategy for obtaining data when requesting data that is out of range. We can use either constant (i....
Definition CD_LookupTable.H:33
Spacing
Enum for classifying the coordinate system.
Definition CD_LookupTable.H:42