v0.16.0
Loading...
Searching...
No Matches
JsonConfigManagerCanonicalAttributes.hpp
Go to the documentation of this file.
1/** \file JsonConfigManagerCanonicalAttributes.hpp
2 * \brief Default canonical JSON block attribute names
3 */
4
5#ifndef __JSONCONFIGMANAGERCANONICALATTRIBUTES_HPP__
6#define __JSONCONFIGMANAGERCANONICALATTRIBUTES_HPP__
7
8#include <string>
9#include <vector>
10
11namespace MoFEM {
12
13inline std::vector<std::string> getDefaultJsonCanonicalAttributeNames() {
14 return {"C10",
15 "K",
16 "young",
17 "young_modulus",
18 "poisson",
19 "poisson_ratio",
20 "reference_temperature",
21 "thermalexpansion",
22 "thermal_expansion",
23 "density",
24 "strain",
25 "bulk_modulus",
26 "user1",
27 "user2",
28 "user3",
29 "user4",
30 "user5",
31 "user6",
32 "user7",
33 "user8",
34 "user9",
35 "user10",
36 "youngp",
37 "youngz",
38 "poissonp",
39 "poissonpz",
40 "shearzp",
41 "conductivity",
42 "heat_capacity",
43 "capacity",
44 "heatcapacity",
45 "alpha",
46 "beta",
47 "lambda",
48 "epsilon",
49 "ft",
50 "gf",
51 "interface_alpha",
52 "interface_beta",
53 "interface_ft",
54 "interface_gf",
55 "acceleration_x",
56 "acceleration_y",
57 "acceleration_z",
58 "flag1",
59 "flag2",
60 "flag3",
61 "value",
62 "value1",
63 "value2",
64 "value3",
65 "value_x",
66 "value_y",
67 "value_z",
68 "flag_x",
69 "flag_y",
70 "flag_z",
71 "force_x",
72 "force_y",
73 "force_z",
74 "force_magnitude",
75 "moment_magnitude",
76 "force_fx",
77 "force_fy",
78 "force_fz",
79 "moment_mx",
80 "moment_my",
81 "moment_mz",
82 "temperature_flag1",
83 "temperature_t",
84 "pressure_flag2",
85 "pressure_magnitude",
86 "heatflux_flag1",
87 "heatflux_magnitude",
88 "x",
89 "y",
90 "z",
91 "rx",
92 "ry",
93 "rz",
94 "center_x",
95 "center_y",
96 "center_z",
97 "angle",
98 "axis_x",
99 "axis_y",
100 "axis_z",
101 "x0",
102 "y0",
103 "z0",
104 "potential"};
105}
106
107} // namespace MoFEM
108
109#endif // __JSONCONFIGMANAGERCANONICALATTRIBUTES_HPP__
implementation of Data Operators for Forces and Sources
Definition Common.hpp:10
std::vector< std::string > getDefaultJsonCanonicalAttributeNames()