OpenSeesPyAssistant 1.1
OpenSeesPy for everyone
Constants.py
Go to the documentation of this file.
1"""Module with the values of a set of essential constants. They are consistent with the units defined in Units. \n
2Carmine Schipani, 2021
3"""
4
6
7
8TOL = 1.0e-6
9TOL_INTEGRATION = 1.0e-12
10ZERO = 1.0e-9 # used when defining mass that is equal to 0 (avoid convergence problem)
11G_CONST = 9.810*m_unit/s_unit**2
12RIGID = 100.0 # multiply with a mechanical or geometrical value to have the corresponding infinitely rigid value
13MAX_ITER = 100
14MAX_ITER_INTEGRATION = 50