OOFEM  2.4
OOFEM.org - Object Oriented Finite Element Solver
valuemodetype.h
Go to the documentation of this file.
1 /*
2  *
3  * ##### ##### ###### ###### ### ###
4  * ## ## ## ## ## ## ## ### ##
5  * ## ## ## ## #### #### ## # ##
6  * ## ## ## ## ## ## ## ##
7  * ## ## ## ## ## ## ## ##
8  * ##### ##### ## ###### ## ##
9  *
10  *
11  * OOFEM : Object Oriented Finite Element Code
12  *
13  * Copyright (C) 1993 - 2013 Borek Patzak
14  *
15  *
16  *
17  * Czech Technical University, Faculty of Civil Engineering,
18  * Department of Structural Mechanics, 166 29 Prague, Czech Republic
19  *
20  * This library is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU Lesser General Public
22  * License as published by the Free Software Foundation; either
23  * version 2.1 of the License, or (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28  * Lesser General Public License for more details.
29  *
30  * You should have received a copy of the GNU Lesser General Public
31  * License along with this library; if not, write to the Free Software
32  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33  */
34 
35 #ifndef valuemodetype_h
36 #define valuemodetype_h
37 
38 #include "enumitem.h"
39 
40 namespace oofem {
41 //
42 // following mode determines the mode of particular unknown
43 // which can be requested on DOF.
44 // particular DOF contain for example displacement type unknown,
45 // but we can request total value, increment of value or velocity or acceleration of
46 // this unknown. This has been done mainly in order to improve runtime checking
47 // ad Dof level.
48 //
49 // see also isUnknownModeIncrementalMode() function (cltypes.C)
50 // when adding new ValueModeType mode.
51 /*
52  Note:
53  VM_Total: total value evaluated at the end of solution (time) step
54  VM_TotalIntrinsic: total value evaluated at intrinsic time
55 */
56 
57 
58 #define ValueModeType_DEF \
59  ENUM_ITEM_WITH_VALUE(VM_Unknown, 0) \
60  ENUM_ITEM_WITH_VALUE(VM_Total, 1) \
61  ENUM_ITEM_WITH_VALUE(VM_Velocity, 2) \
62  ENUM_ITEM_WITH_VALUE(VM_Acceleration, 3) \
63  ENUM_ITEM_WITH_VALUE(VM_Incremental, 4) \
64  ENUM_ITEM_WITH_VALUE(VM_RhsTotal, 5) \
65  ENUM_ITEM_WITH_VALUE(VM_RhsIncremental, 6) \
66  ENUM_ITEM_WITH_VALUE(VM_RhsInitial, 7) \
67  ENUM_ITEM_WITH_VALUE(VM_Intermediate, 8) \
68  ENUM_ITEM_WITH_VALUE(VM_TotalIntrinsic, 9)
69 
70 
80 };
81 
82 #undef ENUM_ITEM
83 #undef ENUM_ITEM_WITH_VALUE
84 #undef enumitem_h
85 
86 
87 const char *__ValueModeTypeToString(ValueModeType _value);
88 } // end namespace oofem
89 #endif // valuemodetype_h
ValueModeType
Type representing the mode of UnknownType or CharType, or similar types.
Definition: valuemodetype.h:78
the oofem namespace is to define a context or scope in which all oofem names are defined.
const char * __ValueModeTypeToString(ValueModeType _value)
Definition: cltypes.C:322

This page is part of the OOFEM documentation. Copyright (c) 2011 Borek Patzak
Project e-mail: info@oofem.org
Generated at Tue Jan 2 2018 20:07:32 for OOFEM by doxygen 1.8.11 written by Dimitri van Heesch, © 1997-2011