Skip to content

FixedNumIterTest

FixedNumIterTest

FixedNumIterTest(num_iter: int)

Bases: Test

Fixed number of iterations convergence test.

FixedNumIterTest performs a fixed number of iterations without assessing actual physical or numerical convergence.

Warning

This test does not guarantee structural equilibrium and should only be used for benchmarking, testing, or specific state updating steps.

Tcl form

test FixedNumIter <numIter>

Example
from femora.core.model import Model

model = Model()
test = model.analysis.test.fixednumiter(num_iter=5)

Create a FixedNumIter convergence test.

Parameters:

Name Type Description Default
num_iter int

Exact number of iterations to perform at each step.

required