mirror of
https://github.com/smyalygames/FiniteVolumeGPU.git
synced 2025-05-18 14:34:13 +02:00
Reproducibility
This commit is contained in:
parent
77dc93fd3c
commit
812ebcc9ba
400921
EulerTesting.ipynb
400921
EulerTesting.ipynb
File diff suppressed because one or more lines are too long
@ -72,6 +72,9 @@ class BoundaryCondition(object):
|
|||||||
or self.east == BoundaryCondition.Type.Neumann \
|
or self.east == BoundaryCondition.Type.Neumann \
|
||||||
or self.west == BoundaryCondition.Type.Neumann):
|
or self.west == BoundaryCondition.Type.Neumann):
|
||||||
raise(NotImplementedError("Neumann boundary condition not supported"))
|
raise(NotImplementedError("Neumann boundary condition not supported"))
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return '[north={:s}, south={:s}, east={:s}, west={:s}]'.format(str(self.north), str(self.south), str(self.east), str(self.west))
|
||||||
|
|
||||||
|
|
||||||
def asCodedInt(self):
|
def asCodedInt(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user