Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
VirtualFluids
Commits
11bcd33c
Commit
11bcd33c
authored
2 years ago
by
Hkorb
Browse files
Options
Downloads
Patches
Plain Diff
bug fix bcFactory binding
parent
185ac6ea
No related branches found
No related tags found
1 merge request
!170
Kernel templetization and efficiency improvements
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pythonbindings/src/gpu/submodules/boundary_conditions.cpp
+1
-1
1 addition, 1 deletion
pythonbindings/src/gpu/submodules/boundary_conditions.cpp
src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp
+1
-1
1 addition, 1 deletion
src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp
with
2 additions
and
2 deletions
pythonbindings/src/gpu/submodules/boundary_conditions.cpp
+
1
−
1
View file @
11bcd33c
...
@@ -67,7 +67,7 @@ namespace boundary_conditions
...
@@ -67,7 +67,7 @@ namespace boundary_conditions
py
::
enum_
<
BoundaryConditionFactory
::
PrecursorBC
>
(
parentModule
,
"PrecursorBC"
)
py
::
enum_
<
BoundaryConditionFactory
::
PrecursorBC
>
(
parentModule
,
"PrecursorBC"
)
.
value
(
"VelocityPrecursor"
,
BoundaryConditionFactory
::
PrecursorBC
::
VelocityPrecursor
)
.
value
(
"VelocityPrecursor"
,
BoundaryConditionFactory
::
PrecursorBC
::
VelocityPrecursor
)
.
value
(
"DistributionsPrecursor"
,
BoundaryConditionFactory
::
PrecursorBC
::
Velocity
Precursor
)
.
value
(
"DistributionsPrecursor"
,
BoundaryConditionFactory
::
PrecursorBC
::
Distributions
Precursor
)
.
value
(
"NotSpecified"
,
BoundaryConditionFactory
::
PrecursorBC
::
NotSpecified
);
.
value
(
"NotSpecified"
,
BoundaryConditionFactory
::
PrecursorBC
::
NotSpecified
);
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/gpu/GridGenerator/grid/GridBuilder/LevelGridBuilder.cpp
+
1
−
1
View file @
11bcd33c
...
@@ -245,7 +245,7 @@ void LevelGridBuilder::setNoSlipGeometryBoundaryCondition()
...
@@ -245,7 +245,7 @@ void LevelGridBuilder::setNoSlipGeometryBoundaryCondition()
}
}
}
}
void
LevelGridBuilder
::
setPrecursorBoundaryCondition
(
SideType
sideType
,
SPtr
<
VelocityFileCollection
>
fileCollection
,
int
nTRead
,
real
velocityX
,
real
velocityY
,
real
velocityZ
)
void
LevelGridBuilder
::
setPrecursorBoundaryCondition
(
SideType
sideType
,
SPtr
<
VelocityFileCollection
>
fileCollection
,
int
nTRead
,
real
velocityX
,
real
velocityY
,
real
velocityZ
)
{
{
for
(
uint
level
=
0
;
level
<
getNumberOfGridLevels
();
level
++
)
for
(
uint
level
=
0
;
level
<
getNumberOfGridLevels
();
level
++
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment