Files
solver/MbDCode/enum.h
2023-06-30 19:48:30 -06:00

6 lines
228 B
C++

#pragma once
namespace MbD {
enum ConstraintType { essential, displacement, perpendicular, redundant };
enum DiscontinuityType { TOUCHDOWN, REBOUND, LIFTOFF };
enum AnalysisType { INPUT, INITIALCONDITION, DYNAMIC, STATIC };
}