OOFEM 3.0
Loading...
Searching...
No Matches
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 - 2025 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 "enum.h"
39
40namespace 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
65
66#define ENUM_TYPE ValueModeType
67#define ENUM_PREFIX "VM_"
68#define ENUM_DEF \
69 ENUM_ITEM_WITH_VALUE(VM_Unknown, 0) \
70 ENUM_ITEM_WITH_VALUE(VM_Total, 1) \
71 ENUM_ITEM_WITH_VALUE(VM_Velocity, 2) \
72 ENUM_ITEM_WITH_VALUE(VM_Acceleration, 3) \
73 ENUM_ITEM_WITH_VALUE(VM_Incremental, 4) \
74 ENUM_ITEM_WITH_VALUE(VM_RhsTotal, 5) \
75 ENUM_ITEM_WITH_VALUE(VM_RhsIncremental, 6) \
76 ENUM_ITEM_WITH_VALUE(VM_RhsInitial, 7) \
77 ENUM_ITEM_WITH_VALUE(VM_Intermediate, 8) \
78 ENUM_ITEM_WITH_VALUE(VM_TotalIntrinsic, 9) \
79 ENUM_ITEM_WITH_VALUE(VM_Residual, 99)
80
81#include "enum-impl.h"
82
83} // end namespace oofem
84#endif // valuemodetype_h

This page is part of the OOFEM-3.0 documentation. Copyright Copyright (C) 1994-2025 Borek Patzak Bořek Patzák
Project e-mail: oofem@fsv.cvut.cz
Generated at for OOFEM by doxygen 1.15.0 written by Dimitri van Heesch, © 1997-2011