Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lbmpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pycodegen
lbmpy
Merge requests
!46
Fix boundary kwargs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix boundary kwargs
holzer/lbmpy:FIX_Boundary_kwargs
into
master
Overview
0
Commits
6
Pipelines
5
Changes
4
Merged
Markus Holzer
requested to merge
holzer/lbmpy:FIX_Boundary_kwargs
into
master
4 years ago
Overview
0
Commits
6
Pipelines
5
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 4
439247f3
4 years ago
version 3
d0a84b1e
4 years ago
version 2
3a137e5e
4 years ago
version 1
3a654e72
4 years ago
master (base)
and
latest version
latest version
36a80e3d
6 commits,
4 years ago
version 4
439247f3
5 commits,
4 years ago
version 3
d0a84b1e
4 commits,
4 years ago
version 2
3a137e5e
3 commits,
4 years ago
version 1
3a654e72
2 commits,
4 years ago
4 files
+
11
−
52
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
lbmpy/boundaries/boundaryconditions.py
+
0
−
13
Options
@@ -260,16 +260,3 @@ class StreamInConstant(LbBoundary):
@@ -260,16 +260,3 @@ class StreamInConstant(LbBoundary):
def
__eq__
(
self
,
other
):
def
__eq__
(
self
,
other
):
return
type
(
other
)
==
StreamInConstant
return
type
(
other
)
==
StreamInConstant
# end class StreamInConstant
# end class StreamInConstant
# ------------------------- Old, Deprecated Implementation -------------------------
class
Boundary
(
LbBoundary
):
def
__init__
(
self
,
name
=
None
):
from
lbmpy.boundaries.boundaryhandling
import
deprecation_message
deprecation_message
()
self
.
_name
=
name
def
__call__
(
self
,
pdf_field
,
direction_symbol
,
lb_method
,
index_field
):
raise
NotImplementedError
(
"
Boundary class has to overwrite __call__
"
)
Loading