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
GitLab 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
Expand sidebar
Merged
Fix boundary kwargs
holzer/lbmpy:FIX_Boundary_kwargs
into
master
Overview
0
Commits
6
Pipelines
5
Changes
4
Merged
Fix boundary kwargs
Markus Holzer
requested to merge
holzer/lbmpy:FIX_Boundary_kwargs
into
master
Dec 6, 2020
Overview
0
Commits
6
Pipelines
5
Changes
4
0
0
Merge request reports
Compare
master
version 4
439247f3
Dec 7, 2020
version 3
d0a84b1e
Dec 7, 2020
version 2
3a137e5e
Dec 7, 2020
version 1
3a654e72
Dec 6, 2020
master (base)
and
latest version
latest version
36a80e3d
6 commits,
Dec 7, 2020
version 4
439247f3
5 commits,
Dec 7, 2020
version 3
d0a84b1e
4 commits,
Dec 7, 2020
version 2
3a137e5e
3 commits,
Dec 7, 2020
version 1
3a654e72
2 commits,
Dec 6, 2020
4 files
+
11
−
52
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
lbmpy/boundaries/boundaryconditions.py
+
0
−
13
View file @ 36a80e3d
Edit in single-file editor
Open in Web IDE
Show full file
@@ -260,16 +260,3 @@ class StreamInConstant(LbBoundary):
def
__eq__
(
self
,
other
):
return
type
(
other
)
==
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