FEM: ccx tools task panel and solver run, use new ccx tools class init without analysis

This commit is contained in:
Bernd Hahnebach
2019-03-26 22:17:33 +01:00
committed by wmayer
parent 9b4a6f743f
commit bcbe82de74
2 changed files with 5 additions and 5 deletions

View File

@@ -58,8 +58,8 @@ def run_fem_solver(solver, working_dir=None):
if solver.Proxy.Type == 'Fem::FemSolverCalculixCcxTools':
App.Console.PrintMessage("CalxuliX ccx tools solver!\n")
from femtools import ccxtools
fea = ccxtools.FemToolsCcx(None, solver)
from femtools.ccxtools import CcxTools as ccx
fea = ccx(solver)
fea.reset_mesh_purge_results_checked()
if working_dir is None:
fea.run()