Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
code
pugs
Commits
3706ab03
Commit
3706ab03
authored
2 months ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Fix function call...
parent
2d4ceaed
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/language/modules/KineticSchemeModule.cpp
+8
-9
8 additions, 9 deletions
src/language/modules/KineticSchemeModule.cpp
src/scheme/EulerKineticSolverLagrangeMultiDLocalOrder2Periodic.hpp
+12
-14
12 additions, 14 deletions
...e/EulerKineticSolverLagrangeMultiDLocalOrder2Periodic.hpp
with
20 additions
and
23 deletions
src/language/modules/KineticSchemeModule.cpp
+
8
−
9
View file @
3706ab03
...
@@ -913,15 +913,14 @@ KineticSchemeModule::KineticSchemeModule()
...
@@ -913,15 +913,14 @@ KineticSchemeModule::KineticSchemeModule()
const
size_t
&
time_order
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
rho
,
const
size_t
&
time_order
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
rho
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
u
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
u
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
E
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
E
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
p
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
p
)
const
std
::
vector
<
std
::
shared_ptr
<
const
IBoundaryConditionDescriptor
>>&
->
std
::
tuple
<
std
::
shared_ptr
<
const
MeshVariant
>
,
bc_descriptor_list
)
->
std
::
tuple
<
std
::
shared_ptr
<
const
MeshVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>>
{
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>>
{
return
eulerKineticSolverLagrangeMultiDLocalOrder2
(
dt
,
L
,
M
,
k
,
gamma
,
eps
,
space_order
,
return
eulerKineticSolverLagrangeMultiDLocalOrder2
Periodic
(
dt
,
L
,
M
,
k
,
gamma
,
eps
,
time_order
,
rho
,
u
,
E
,
p
,
space_order
,
time_order
,
rho
,
bc_descriptor_list
);
u
,
E
,
p
);
}
}
));
));
...
...
This diff is collapsed.
Click to expand it.
src/scheme/EulerKineticSolverLagrangeMultiDLocalOrder2Periodic.hpp
+
12
−
14
View file @
3706ab03
...
@@ -10,8 +10,7 @@ std::tuple<std::shared_ptr<const MeshVariant>,
...
@@ -10,8 +10,7 @@ std::tuple<std::shared_ptr<const MeshVariant>,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>
,
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>>
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>>
eulerKineticSolverLagrangeMultiDLocalOrder2Periodic
(
eulerKineticSolverLagrangeMultiDLocalOrder2Periodic
(
const
double
&
dt
,
const
double
&
dt
,
const
size_t
&
L
,
const
size_t
&
L
,
const
size_t
&
M
,
const
size_t
&
M
,
const
size_t
&
k
,
const
size_t
&
k
,
...
@@ -22,7 +21,6 @@ eulerKineticSolverLagrangeMultiDLocalOrder2Periodic(
...
@@ -22,7 +21,6 @@ eulerKineticSolverLagrangeMultiDLocalOrder2Periodic(
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
rho
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
rho
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
u
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
u
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
E
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
E
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
p
,
const
std
::
shared_ptr
<
const
DiscreteFunctionVariant
>&
p
);
const
std
::
vector
<
std
::
shared_ptr
<
const
IBoundaryConditionDescriptor
>>&
bc_descriptor_list
);
#endif // EULER_KINETIC_SOLVER_LAGRANGE_MULTI_D_LOCAL_ORDER_2PERIODIC_HPP
#endif // EULER_KINETIC_SOLVER_LAGRANGE_MULTI_D_LOCAL_ORDER_2PERIODIC_HPP
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
sign in
to comment