static_equilibrium
- compas_cem.equilibrium.static_equilibrium(topology, kmax=None, tmax=100, eta=1e-06, verbose=False, callback=None)[source]
Generate a form diagram in static equilibrium.
- Parameters:
topology (
compas_cem.diagrams.TopologyDiagram
) – A topology diagram.kmax (
int
, optional) – The last sequence in the diagram to calculate equilibrium at. Ifkmax
isNone
or the number of sequences in the diagram is smaller, thenkmax
will be ignored and equilibrium will be calculated for all sequences. Defaults toNone
.tmax (
int
, optional) – Maximum number of iterations the algorithm will run for. Defaults to100
.eta (
float
, optional) – Distance threshold that marks equilibrium convergence. This threshold is compared against the sum of distances of the nodes’ positions from one iteration to the next one. Ifeta
is hit before consumingtmax
iterations, calculations will stop early. Defaults to1e-6
.verbose (
bool
, optional) – Flag to print out internal operations. Defaults toFalse
.callback (
function
, optional) – An optional callback function to run at every iteration. Defaults toNone
.
- Returns:
form (
compas_cem.diagrams.FormDiagram
) – A form diagram.