Enhancing Equations

- add init file
- add docs
- fixing bug System of equation, replace torch.stack with torch.hstack
- add tests
This commit is contained in:
Dario Coscia
2023-06-28 11:49:14 +02:00
committed by Nicola Demo
parent 09f04008b5
commit b9ddea827b
6 changed files with 234 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
__all__ = [
'SystemEquation',
'Equation',
'FixedValue',
'FixedGradient',
'FixedFlux',
'Laplace',
]
from .equation import *
from .equation_factory import *
from .system_equation import *