Skip to content

FullGeneralSystem

FullGeneralSystem

FullGeneralSystem()

Bases: System

Full general linear system solver.

FullGeneralSystem stores and solves the complete dense matrix equations without any optimization. It is primarily suitable only for very small systems.

Tcl form

system FullGeneral

Example
from femora.core.model import Model

model = Model()
system = model.analysis.system.fullgeneral()

Create a FullGeneral solver system.