chombo-discharge
Loading...
Searching...
No Matches
CD_LookupTable.H
Go to the documentation of this file.
1/* chombo-discharge
2 * Copyright © 2023 SINTEF Energy Research.
3 * Please refer to Copyright.txt and LICENSE in the chombo-discharge root directory.
4 */
5
12#ifndef CD_LookupTable_H
13#define CD_LookupTable_H
14
15// Std includes
16#include <memory>
17#include <vector>
18#include <type_traits>
19#include <iostream>
20
21// Our includes
22#include <CD_NamespaceHeader.H>
23
24namespace LookupTable {
32 {
33 Constant,
34 Interpolate
35 };
36
40 enum class Spacing
41 {
42 Uniform,
43 Exponential
44 };
45
46} // namespace LookupTable
47
48#include <CD_NamespaceFooter.H>
49
50#include <CD_LookupTable1D.H>
51
52#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:32
Spacing
Enum for classifying the coordinate system.
Definition CD_LookupTable.H:41