Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-fem-dg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
dune-fem
dune-fem-dg
Commits
e6a979dd
Commit
e6a979dd
authored
11 months ago
by
Robert K
Browse files
Options
Downloads
Patches
Plain Diff
[bugfix][LimitPass] Store models and numflux as objects.
parent
02459a54
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#69694
failed
11 months ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/fem-dg/operator/fv/fvoperator.hh
+3
-2
3 additions, 2 deletions
dune/fem-dg/operator/fv/fvoperator.hh
dune/fem-dg/operator/limiter/limitpass.hh
+3
-3
3 additions, 3 deletions
dune/fem-dg/operator/limiter/limitpass.hh
with
6 additions
and
5 deletions
dune/fem-dg/operator/fv/fvoperator.hh
+
3
−
2
View file @
e6a979dd
...
...
@@ -193,8 +193,9 @@ namespace detail
std
::
integral_constant
<
bool
,
value
>
higherOrder
)
const
;
const
DiscreteFunctionSpaceType
&
space_
;
const
ModelType
&
model_
;
const
NumFluxType
&
numFlux_
;
// copy model and numFlux for thread safety
ModelType
model_
;
NumFluxType
numFlux_
;
double
time_
;
mutable
double
dtEst_
;
...
...
This diff is collapsed.
Click to expand it.
dune/fem-dg/operator/limiter/limitpass.hh
+
3
−
3
View file @
e6a979dd
...
...
@@ -366,7 +366,7 @@ namespace Fem
* \param vQ order of volume quadrature
* \param fQ order of face quadrature
*/
LimitDGPass
(
DiscreteModelType
&
problem
,
LimitDGPass
(
const
DiscreteModelType
&
problem
,
PreviousPassType
&
pass
,
const
DiscreteFunctionSpaceType
&
spc
,
const
int
vQ
=
-
1
,
...
...
@@ -386,7 +386,7 @@ namespace Fem
* \param fQ order of face quadrature
*/
LimitDGPass
(
DiscreteModelType
&
problem
,
LimitDGPass
(
const
DiscreteModelType
&
problem
,
PreviousPassType
&
pass
,
const
DiscreteFunctionSpaceType
&
spc
,
const
Dune
::
Fem
::
ParameterReader
&
parameter
=
Dune
::
Fem
::
Parameter
::
container
(),
...
...
@@ -1825,7 +1825,7 @@ namespace Fem
private
:
mutable
std
::
unique_ptr
<
DiscreteModelCallerType
>
caller_
;
DiscreteModelType
&
discreteModel_
;
mutable
DiscreteModelType
discreteModel_
;
mutable
double
currentTime_
;
mutable
ArgumentType
*
arg_
;
...
...
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