FEM: solver ccx tools, rename class and module

This commit is contained in:
Bernd Hahnebach
2020-05-22 01:08:06 +02:00
parent 8c3cc8fc6c
commit f09e7b62d0
6 changed files with 37 additions and 25 deletions

View File

@@ -21,13 +21,13 @@
# * *
# ***************************************************************************
__title__ = "FreeCAD FEM solver calculix document object"
__title__ = "FreeCAD FEM solver calculix ccx tools document object"
__author__ = "Bernd Hahnebach"
__url__ = "http://www.freecadweb.org"
## @package FemSolverCalculix
## @package solver_ccxtools
# \ingroup FEM
# \brief FreeCAD FEM _FemSolverCalculix
# \brief solver calculix ccx tools object
import FreeCAD
@@ -35,14 +35,14 @@ from . import FemConstraint
from femsolver.calculix.solver import add_attributes
class _FemSolverCalculix(FemConstraint.Proxy):
class SolverCcxTools(FemConstraint.Proxy):
"""The Fem::FemSolver's Proxy python type, add solver specific properties
"""
Type = "Fem::SolverCcxTools"
def __init__(self, obj):
super(_FemSolverCalculix, self).__init__(obj)
super(SolverCcxTools, self).__init__(obj)
ccx_prefs = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Fem/Ccx")