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
214ad0f3
Commit
214ad0f3
authored
9 years ago
by
Stefan Girke
Browse files
Options
Downloads
Patches
Plain Diff
more adjustments
parent
8b9db3bf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/fem-dg/algorithm/sub/elliptic.hh
+9
-6
9 additions, 6 deletions
dune/fem-dg/algorithm/sub/elliptic.hh
dune/fem-dg/examples/poisson/algorithmcreator.hh
+1
-1
1 addition, 1 deletion
dune/fem-dg/examples/poisson/algorithmcreator.hh
with
10 additions
and
7 deletions
dune/fem-dg/algorithm/sub/elliptic.hh
+
9
−
6
View file @
214ad0f3
...
...
@@ -558,9 +558,10 @@ namespace Fem
/**
* \brief Adaptation indicator doing no indication and marking of the entities.
*/
template
<
class
EstimatorImp
,
class
SigmaEstimatorImp
>
template
<
class
EstimatorImp
,
class
SigmaEstimatorImp
,
class
ProblemImp
>
class
PAdaptIndicator
{
typedef
ProblemImp
ProblemType
;
typedef
SigmaEstimatorImp
SigmaEstimatorType
;
typedef
typename
SigmaEstimatorType
::
DiscreteFunctionType
DiscreteFunctionType
;
typedef
typename
SigmaEstimatorType
::
AssemblerType
AssemblerType
;
...
...
@@ -577,9 +578,10 @@ namespace Fem
public
:
typedef
uint64_t
UInt64Type
;
PAdaptIndicator
(
GridType
&
grid
,
const
DiscreteFunctionType
&
solution
,
AssemblerType
&
assembler
,
const
std
::
string
name
=
""
)
PAdaptIndicator
(
GridType
&
grid
,
const
DiscreteFunctionType
&
solution
,
const
ProblemType
&
problem
,
AssemblerType
&
assembler
,
const
std
::
string
name
=
""
)
:
pAdapt_
(
grid
,
solution
.
space
()
),
sigmaEstimator_
(
solution
.
gridPart
(),
solution
,
assembler
,
name
)
sigmaEstimator_
(
solution
.
gridPart
(),
solution
,
assembler
,
name
),
problem_
(
problem
)
{}
bool
adaptive
()
const
{
return
false
;
}
...
...
@@ -604,9 +606,9 @@ namespace Fem
sigmaEstimator_
.
update
();
//TODO extract from parameter file
//TODO extract
tolerance
from parameter file
double
tolerance
=
1.0
;
pAdapt_
.
estimateMark
(
problem
()
,
tolerance
);
pAdapt_
.
estimateMark
(
problem
_
,
tolerance
);
}
void
postAdapt
()
...
...
@@ -639,6 +641,7 @@ namespace Fem
PAdaptivityType
pAdapt_
;
SigmaEstimatorType
sigmaEstimator_
;
const
ProblemType
&
problem_
;
};
...
...
@@ -719,7 +722,7 @@ namespace Fem
space_
(
container_
.
space
()
),
assembler_
(
container_
,
model
()
),
matrix_
(
container_
.
matrix
()
),
adaptIndicator_
(
grid
,
container_
.
solution
(),
assembler_
,
name
()
),
adaptIndicator_
(
grid
,
container_
.
solution
(),
problem
(),
assembler_
,
name
()
),
step_
(
0
),
time_
(
0
)
{
...
...
This diff is collapsed.
Click to expand it.
dune/fem-dg/examples/poisson/algorithmcreator.hh
+
1
−
1
View file @
214ad0f3
...
...
@@ -132,7 +132,7 @@ namespace Fem
typedef
SubSolverMonitor
<
SolverMonitor
>
SolverMonitorType
;
typedef
SubDiagnostics
<
Diagnostics
>
DiagnosticsType
;
typedef
PAdaptIndicator
<
EstimatorType
,
SigmaEstimatorType
>
AdaptIndicatorType
;
typedef
PAdaptIndicator
<
EstimatorType
,
SigmaEstimatorType
,
ProblemInterfaceType
>
AdaptIndicatorType
;
};
template
<
int
polOrd
>
...
...
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