solve#
- AnsSolver.solve(b, x=None)[source]#
Solve a linear system
- Parameters:
- b
ansys.mapdl.math.AnsVec
APDLmath vector.
- x
ansys.mapdl.math.AnsVec
,optional
APDLmath vector to place the solution.
- b
- Returns:
AnsVec
Solution vector. Identical to
x
if supplied.
Examples
>>> k = mm.stiff(fname='PRSMEMB.full') >>> s = mm.factorize(k) >>> b = mm.get_vec(fname='PRSMEMB.full', mat_id="RHS") >>> x = s.solve(b) >>> x APDLMath Vector Size 20000