Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
dorie
dorie
Commits
43cd0ea2
Commit
43cd0ea2
authored
Mar 01, 2017
by
Lukas Riedel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dropped offset to 1 nanometer. adjusted position update margin of interpolator
parent
db6f7be6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dune/dorie/solver/operator_DG.hh
dune/dorie/solver/operator_DG.hh
+1
-1
dune/dorie/solver/util_interpolator.hh
dune/dorie/solver/util_interpolator.hh
+1
-1
No files found.
dune/dorie/solver/operator_DG.hh
View file @
43cd0ea2
...
...
@@ -260,7 +260,7 @@ public:
// position of quadrature point in global coordinates
// add offset for parameter queries
const
RF
eps
=
1e-
7
;
const
RF
eps
=
1e-
9
;
auto
global_s
=
ig
.
inside
().
geometry
().
global
(
local_s
);
auto
global_n
=
ig
.
outside
().
geometry
().
global
(
local_n
);
global_s
=
global_s
.
axpy
(
-
eps
,
normal
);
...
...
dune/dorie/solver/util_interpolator.hh
View file @
43cd0ea2
...
...
@@ -34,7 +34,7 @@ namespace Dune {
const
InterpolationMethod
method
;
explicit
InterpolatorBase
(
InterpolationMethod
method_
,
const
ParameterTree
&
config_
,
const
Dune
::
MPIHelper
&
helper_
,
const
int
verbose_
)
:
config
(
config_
),
helper
(
helper_
),
verbose
(
verbose_
),
eps
(
1e-
8
),
initialized
(
false
),
method
(
method_
)
config
(
config_
),
helper
(
helper_
),
verbose
(
verbose_
),
eps
(
1e-
9
),
initialized
(
false
),
method
(
method_
)
{}
RF
evaluate
(
const
Array
&
field
,
const
Domain
&
pos
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment