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
be1e0497
Commit
be1e0497
authored
9 years ago
by
Robert K
Browse files
Options
Downloads
Patches
Plain Diff
[cleanup] use hllc by default and print L1 error first.
parent
11d4a450
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/fem-dg/examples/euler/algorithmcreator.hh
+3
-3
3 additions, 3 deletions
dune/fem-dg/examples/euler/algorithmcreator.hh
with
3 additions
and
3 deletions
dune/fem-dg/examples/euler/algorithmcreator.hh
+
3
−
3
View file @
be1e0497
...
...
@@ -59,7 +59,7 @@ namespace Fem
Solver
::
Enum
::
fem
,
AdvectionLimiter
::
Enum
::
limited
,
Matrix
::
Enum
::
matrixfree
,
AdvectionFlux
::
Enum
::
euler_hll
,
AdvectionFlux
::
Enum
::
euler_hll
c
,
PrimalDiffusionFlux
::
Enum
::
general
>
AC
;
// define problem type here if interface should be avoided
...
...
@@ -82,10 +82,10 @@ namespace Fem
template
<
class
Solution
,
class
Model
,
class
ExactFunction
,
class
TimeProvider
>
static
void
addEOCErrors
(
TimeProvider
&
tp
,
Solution
&
u
,
Model
&
model
,
ExactFunction
&
f
)
{
static
L2EOCError
l2EocError
(
"$L^2$-Error"
);
l2EocError
.
add
(
tp
,
u
,
model
,
f
);
static
L1EOCError
l1EocError
(
"$L^1$-Error"
);
l1EocError
.
add
(
tp
,
u
,
model
,
f
);
static
L2EOCError
l2EocError
(
"$L^2$-Error"
);
l2EocError
.
add
(
tp
,
u
,
model
,
f
);
}
};
...
...
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