1 #ifndef PILEGROUPTOOL_PARAMETERS_H 2 #define PILEGROUPTOOL_PARAMETERS_H 12 #define MIN_ELEMENTS_PER_LAYER 15 13 #define MAX_ELEMENTS_PER_LAYER 40 14 #define NUM_ELEMENTS_IN_AIR 4 17 #define MAX_H_FORCE 1000.0 18 #define MAX_V_FORCE 10000.0 19 #define MAX_MOMENT 2500.0 23 #define GAMMA_WATER 9.81 26 #define ABS(X) (X<0.0?-X:X) 33 double reductionFactorLeftMovement;
34 double reductionFactorRightMovement;
63 #define SWAP(X,Y) {HEAD_NODE_TYPE tmp=Y; Y=X, Y=tmp; } 65 static QVector<QColor> LINE_COLOR({Qt::blue,Qt::red,Qt::green,Qt::cyan,Qt::magenta,Qt::yellow});
66 static QVector<QColor> BRUSH_COLOR({
67 QColor(255, 127, 0, 127),
68 QColor(191, 95, 0, 127),
69 QColor(127, 63, 0, 127),
70 QColor(127, 255, 0, 127),
71 QColor( 95, 191, 0, 127),
72 QColor( 63, 127, 0, 127),
73 QColor(127, 255, 255, 255),
74 QColor( 95, 191, 255, 255),
75 QColor( 63, 127, 255, 255),
76 QColor(127, 255, 255, 127),
77 QColor( 95, 191, 255, 127),
78 QColor( 63, 127, 255, 127),
79 QColor(255, 127, 0, 63),
80 QColor(191, 95, 0, 63),
81 QColor(127, 63, 0, 63),
82 QColor(127, 255, 0, 63),
83 QColor( 95, 191, 0, 63),
84 QColor( 63, 127, 0, 63)
86 #define GROUND_WATER_BLUE QColor(127,127,255,192) 88 enum class LoadControlType {
94 #endif // PILEGROUPTOOL_PARAMETERS_H Definition: pilegrouptool_parameters.h:52
Definition: pilegrouptool_parameters.h:37
Definition: pilegrouptool_parameters.h:44
Definition: pilegrouptool_parameters.h:29