Module general
source code
All the built-in objects for working with MBDyn.
The two mains objects are NULL
and EYE
,
there is also MATRIX_NULL
in use. NULL
is the
vector null of size 3x1 EYE
is the identity matrix of size
3x3
The class Real and Int were started at the beginning but are not in use,
all the pre processing is done from Python.
|
Real
A MBDyn real for the input file
|
|
Int
A MBDyn integer for the input file
|
|
Null
The vector Null
|
|
MatrixNull
The matrix Null
|
|
Eye
The eye matrix
|
|
NULL = Null()
|
|
MAT_NULL = MatrixNull()
|
|
EYE = Eye()
|
|
EYE_NAME = ' Eye '
|
|
VECTOR_NAMES = [ ' Null ' ]
|
|
MATRIX_NAMES = [ ' Eye ' , ' MatrixNull ' ]
|