GEOSX
KeyNames.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2018-2020 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2020 The Board of Trustees of the Leland Stanford Junior University
7  * Copyright (c) 2018-2020 Total, S.A
8  * Copyright (c) 2019- GEOSX Contributors
9  * All rights reserved
10  *
11  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
12  * ------------------------------------------------------------------------------------------------------------
13  */
14 
19 #ifndef GEOSX_DATAREPOSITORY__KEYNAMES_HPP_
20 #define GEOSX_DATAREPOSITORY__KEYNAMES_HPP_
21 
22 #include <string>
23 
24 namespace geosx
25 {
26 namespace dataRepository
27 {
28 namespace keys
29 {
30 
32 
33 //static constexpr auto ReferencePosition = "ReferencePosition";
34 static constexpr auto referencePositionString = "ReferencePosition";
35 
36 static constexpr auto TotalDisplacement = "TotalDisplacement";
37 static constexpr auto IncrementalDisplacement = "IncrementalDisplacement";
38 static constexpr auto Velocity = "Velocity";
39 static constexpr auto Acceleration = "Acceleration";
40 static constexpr auto Mass = "Mass";
41 static constexpr auto Force = "Force";
42 static constexpr auto Strain = "Strain";
43 static constexpr auto Name = "name";
44 static constexpr auto Size = "size";
45 static constexpr auto ProblemManager = "Problem";
46 static constexpr auto ConstitutiveManager = "Constitutive";
47 static constexpr auto ConstitutiveBase = "ConstitutiveBase";
48 static constexpr auto solverNames = "solverNames";
49 
50 static constexpr auto schema = "schema";
51 
52 static constexpr auto time = "time";
53 static constexpr auto cycle = "cycle";
54 static constexpr auto beginTime = "beginTime";
55 static constexpr auto endTime = "endTime";
56 static constexpr auto dt = "dt";
57 
58 static constexpr auto domain = "domain";
59 static constexpr auto solvers = "solvers";
60 static constexpr auto simulationParameterMap = "simulationParameterMap";
61 static constexpr auto FE_Space = "FE_Space";
62 //static constexpr auto FEM_Nodes = "FEM_Nodes";
63 //static constexpr auto FEM_Edges = "FEM_Edges";
64 //static constexpr auto FEM_Faces = "FEM_Faces";
65 //static constexpr auto FEM_Elements = "FEM_Elements";
66 static constexpr auto cellManager = "cellManager";
67 static constexpr auto functionManager = "FunctionManager";
68 
70 
71 }
72 }
73 }
74 #endif /* GEOSX_DATAREPOSITORY__KEYNAMES_HPP_ */