LinearRunOnce#

The simplest linear solver in OpenMDAO is LinearRunOnce, which sequentially calls apply_linear and solve_linear once on each subsystem. It is directly analogous to applying a single pass of the chain rule to the whole system without any iteration at the top level. This linear solver can only be used in systems where the following conditions are satisfied:

  1. System does not contain a cycle, though subsystems may.

  2. System does not contain any implicit states, though subsystems may.

However, subsystems can contain cycles or implicit states, provided that they are using the appropriate solver such as ScipyKrylov.

Here is an example of using LinearRunOnce to calculate the derivatives across a simple model with the Paraboloid component.

import openmdao.api as om
from openmdao.test_suite.components.paraboloid import Paraboloid

prob = om.Problem()
model = prob.model

model.add_subsystem('comp', Paraboloid(), promotes=['x', 'y', 'f_xy'])

model.linear_solver = om.LinearRunOnce()

prob.setup(check=False, mode='fwd')

prob.set_val('x', 0.0)
prob.set_val('y', 0.0)

prob.run_model()

of = ['f_xy']
wrt = ['x', 'y']
derivs = prob.compute_totals(of=of, wrt=wrt, return_format='dict')

print(derivs['f_xy']['x'], [[-6.0]])
print(derivs['f_xy']['y'], [[8.0]])
[[-6.]] [[-6.0]]
[[8.]] [[8.0]]

LinearRunOnce Options#

OptionDefaultAcceptable ValuesAcceptable TypesDescription
aitken_initial_factor1.0N/AN/Ainitial value for Aitken relaxation factor
aitken_max_factor1.5N/AN/Aupper limit for Aitken relaxation factor
aitken_min_factor0.1N/AN/Alower limit for Aitken relaxation factor
assemble_jacFalse[True, False]['bool']Activates use of assembled jacobian by this solver.
iprint1N/A['int']whether to print output
use_aitkenFalse[True, False]['bool']set to True to use Aitken relaxation

LinearRunOnce Constructor#

The call signature for the LinearRunOnce constructor is:

LinearRunOnce.__init__(**kwargs)

Initialize all attributes.