| |
- abc.ABC(builtins.object)
-
- Form
-
- BilinearForm
- LinearForm
class BilinearForm(Form) |
|
BilinearForm(fes=None, fes_test=None, fes_trial=None)
|
|
- Method resolution order:
- BilinearForm
- Form
- abc.ABC
- builtins.object
Methods defined here:
- __init__(self, fes=None, fes_test=None, fes_trial=None)
- Initialize self. See help(type(self)) for accurate signature.
- assemble(self)
Data and other attributes defined here:
- __abstractmethods__ = frozenset()
- matrix = None
Methods inherited from Form:
- __iadd__(self, integrator)
- add_integrator(self, integrator)
Data descriptors inherited from Form:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes inherited from Form:
- fes = None
- integrals = None
|
class Form(abc.ABC) |
| |
- Method resolution order:
- Form
- abc.ABC
- builtins.object
Methods defined here:
- __iadd__(self, integrator)
- __init__(self)
- Initialize self. See help(type(self)) for accurate signature.
- add_integrator(self, integrator)
Data descriptors defined here:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes defined here:
- __abstractmethods__ = frozenset()
- fes = None
- integrals = None
|
class LinearForm(Form) |
|
LinearForm(fes=None)
|
|
- Method resolution order:
- LinearForm
- Form
- abc.ABC
- builtins.object
Methods defined here:
- __init__(self, fes=None)
- Initialize self. See help(type(self)) for accurate signature.
- assemble(self)
Data and other attributes defined here:
- __abstractmethods__ = frozenset()
- vector = None
Methods inherited from Form:
- __iadd__(self, integrator)
- add_integrator(self, integrator)
Data descriptors inherited from Form:
- __dict__
- dictionary for instance variables
- __weakref__
- list of weak references to the object
Data and other attributes inherited from Form:
- fes = None
- integrals = None
| |