IFEM 90A354
SIMenums.h
Go to the documentation of this file.
1// $Id$
2//==============================================================================
12//==============================================================================
13
14#ifndef _SIM_ENUMS_H
15#define _SIM_ENUMS_H
16
17
18namespace SIM
19{
23 {
24 NONE = 0,
25 LINEAR = 1,
26 NONLINEAR = 2
27 };
28
31 {
32 INIT = 0,
33 STATIC = 1,
34 ARCLEN = 2,
35 DYNAMIC,
36 VIBRATION,
37 BUCKLING,
38 STIFF_ONLY,
39 MASS_ONLY,
40 RHS_ONLY,
41 INT_FORCES,
42 RECOVERY,
43 NORMS
44 };
45
50 {
51 FAILURE,
52 DIVERGED,
53 SLOW,
54 OK,
55 CONVERGED
56 };
57}
58
59#endif
Simulation scope.
Definition ForceIntegrator.h:27
SolutionMode
Enum defining the various solution modes that may occur.
Definition SIMenums.h:31
Formulation
Enum defining various solution formulations that may occur.
Definition SIMenums.h:23
ConvStatus
Enum defining the various convergence statuses that may occur.
Definition SIMenums.h:50