FEM: equation objects, add some comments for linear and nonlinear equation

This commit is contained in:
Bernd Hahnebach
2018-08-27 21:05:18 +02:00
committed by Yorik van Havre
parent 1aff8c43f9
commit 4db7eaa7a8
3 changed files with 12 additions and 1 deletions

View File

@@ -29,6 +29,11 @@ __url__ = "http://www.freecadweb.org"
from . import equation
# the linear equation object defines some attributes for some various elmer equations
# these various elmer equations are based on the linear equation object
# thus in ObjectsFem module is no method to add a linear equation object
LINEAR_SOLVER = ["Direct", "Iterative"]
LINEAR_DIRECT = ["Banded", "umfpack"]
LINEAR_ITERATIVE = [

View File

@@ -29,6 +29,11 @@ __url__ = "http://www.freecadweb.org"
from . import linear
# the linear equation object defines some attributes for some various elmer equations
# these various elmer equations are based on the linear equation object
# thus in ObjectsFem module is no method to add a linear equation object
class Proxy(linear.Proxy):
def __init__(self, obj):