Skip to content

Commit

Permalink
Update write_step_equation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FEA-eng authored Feb 17, 2024
1 parent 020ef14 commit 46e40dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Mod/Fem/femsolver/calculix/write_step_equation.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ def write_step_equation(f, ccxwriter):
# https://forum.freecad.org/viewtopic.php?f=18&t=43178
if ccxwriter.solver_obj.MatrixSolverType == "default":
pass
elif ccxwriter.solver_obj.MatrixSolverType == "pastix":
analysis_type += ", SOLVER=PASTIX"
elif ccxwriter.solver_obj.MatrixSolverType == "pardiso":
analysis_type += ", SOLVER=PARDISO"
elif ccxwriter.solver_obj.MatrixSolverType == "spooles":
analysis_type += ", SOLVER=SPOOLES"
elif ccxwriter.solver_obj.MatrixSolverType == "iterativescaling":
Expand Down

0 comments on commit 46e40dc

Please sign in to comment.