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
!81
add DiffusionDirichlet boundary condition
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
add DiffusionDirichlet boundary condition
he66coqe/lbmpy:bc-diffusion-dirichlet
into
master
Overview
0
Commits
10
Pipelines
9
Changes
6
Merged
add DiffusionDirichlet boundary condition
Daniel Bauer
requested to merge
he66coqe/lbmpy:bc-diffusion-dirichlet
into
master
May 21, 2021
Overview
0
Commits
10
Pipelines
9
Changes
6
Add a Dirichlet boundary condition for Advection-Diffusion problems.
0
0
Merge request reports
Compare
master
version 8
5d7ab621
Jun 9, 2021
version 7
722bfe4d
Jun 9, 2021
version 6
d3e266d6
Jun 9, 2021
version 5
b76d82a2
Jun 9, 2021
version 4
db9b81e6
Jun 9, 2021
version 3
6cf0ce87
Jun 9, 2021
version 2
730c62d4
May 28, 2021
version 1
dd0e8d0e
May 21, 2021
master (base)
and
latest version
latest version
0c7d28e0
10 commits,
Jun 9, 2021
version 8
5d7ab621
9 commits,
Jun 9, 2021
version 7
722bfe4d
8 commits,
Jun 9, 2021
version 6
d3e266d6
7 commits,
Jun 9, 2021
version 5
b76d82a2
6 commits,
Jun 9, 2021
version 4
db9b81e6
5 commits,
Jun 9, 2021
version 3
6cf0ce87
4 commits,
Jun 9, 2021
version 2
730c62d4
3 commits,
May 28, 2021
version 1
dd0e8d0e
1 commit,
May 21, 2021
6 files
+
306
−
31
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
lbmpy/boundaries/__init__.py
+
4
−
2
View file @ 0c7d28e0
Edit in single-file editor
Open in Web IDE
from
lbmpy.boundaries.boundaryconditions
import
(
UBB
,
FixedDensity
,
SimpleExtrapolationOutflow
,
ExtrapolationOutflow
,
NeumannByCopy
,
NoSlip
,
StreamInConstant
)
UBB
,
FixedDensity
,
DiffusionDirichlet
,
SimpleExtrapolationOutflow
,
ExtrapolationOutflow
,
NeumannByCopy
,
NoSlip
,
StreamInConstant
)
from
lbmpy.boundaries.boundaryhandling
import
LatticeBoltzmannBoundaryHandling
__all__
=
[
'
NoSlip
'
,
'
UBB
'
,
'
SimpleExtrapolationOutflow
'
,
'
ExtrapolationOutflow
'
,
'
FixedDensity
'
,
'
NeumannByCopy
'
,
__all__
=
[
'
NoSlip
'
,
'
UBB
'
,
'
SimpleExtrapolationOutflow
'
,
'
ExtrapolationOutflow
'
,
'
FixedDensity
'
,
'
DiffusionDirichlet
'
,
'
NeumannByCopy
'
,
'
LatticeBoltzmannBoundaryHandling
'
,
'
StreamInConstant
'
]
Loading