expand#
- KrylovSolver.expand(residual_computation=False, residual_algorithm=None, compute_solution_vectors=True, return_solution=False)#
Expand the reduced solution back to FE space.
This method expands the reduced solution for a harmonic analysis back to the original space. Optional calculation of the residual is available.
- パラメーター:
- residual_computationbool,
optional Compute the residual of the expanded solution. Default to
False.- residual_algorithm
str,optional Specifies the type of residual normal calculation. It can take the following values: * "L-inf": Compute the L-inf norm of the residual. Default value. * "L-1": Compute the L-1 norm of the residual. * "L-2": Compute the L-2 norm of the residual.
- compute_solution_vectorsbool,
optional If
Trueit compute the solution vectors. The solution vectors are stored inKrylov.solution_vectorsmethod. Defaults toTrue.- return_solutionbool,
optional If
Trueit will return the solution vectors. By default isFalse.
- residual_computationbool,
- Returns:
np.ndarraySolution vectors mapped to a given order. (if
return_solution = True)NoneIf
return_solution = False
- 戻り値の型:
Notes
Distributed Ansys restriction: This command is not supported in Distributed Ansys.