ASPECT
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Functions
a
c
d
e
f
g
h
i
m
n
o
p
r
s
t
w
x
z
Variables
Typedefs
Enumerations
+
Enumerator
a
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
+
Enumerations
a
c
d
f
k
l
m
o
p
r
s
t
v
y
+
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
u
v
z
Related Functions
+
Files
File List
+
File Members
All
Functions
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
include
aspect
time_stepping
repeat_on_nonlinear_fail.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2018 - 2024 by the authors of the ASPECT code.
3
4
This file is part of ASPECT.
5
6
ASPECT is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2, or (at your option)
9
any later version.
10
11
ASPECT is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
15
16
You should have received a copy of the GNU General Public License
17
along with ASPECT; see the file LICENSE. If not see
18
<http://www.gnu.org/licenses/>.
19
*/
20
21
22
#ifndef _aspect_time_stepping_repeat_on_nonlinear_fail_h
23
#define _aspect_time_stepping_repeat_on_nonlinear_fail_h
24
25
#include <
aspect/time_stepping/interface.h
>
26
27
namespace
aspect
28
{
29
namespace
TimeStepping
30
{
43
template
<
int
dim>
44
class
RepeatOnNonlinearFail
:
public
Interface
<dim>,
public
SimulatorAccess
<dim>
45
{
46
public
:
50
RepeatOnNonlinearFail
();
51
55
double
56
execute
()
override
;
57
62
void
nonlinear_solver_has_failed
()
const
;
63
67
std::pair<Reaction, double>
68
determine_reaction
(
const
TimeStepInfo
&info)
override
;
69
70
static
71
void
72
declare_parameters
(ParameterHandler &prm);
73
74
void
75
parse_parameters
(ParameterHandler &prm)
override
;
76
77
private
:
82
double
cut_back_factor
;
83
88
mutable
bool
nonlinear_solver_just_failed
;
89
93
unsigned
int
maximum_number_of_repeats
;
94
98
unsigned
int
current_number_of_repeats
;
99
};
100
}
101
}
102
103
104
#endif
aspect::TimeStepping::RepeatOnNonlinearFail::maximum_number_of_repeats
unsigned int maximum_number_of_repeats
Definition:
repeat_on_nonlinear_fail.h:93
aspect::TimeStepping::RepeatOnNonlinearFail::determine_reaction
std::pair< Reaction, double > determine_reaction(const TimeStepInfo &info) override
interface.h
aspect::TimeStepping::RepeatOnNonlinearFail::nonlinear_solver_has_failed
void nonlinear_solver_has_failed() const
aspect::TimeStepping::TimeStepInfo
Definition:
interface.h:69
aspect::TimeStepping::RepeatOnNonlinearFail::current_number_of_repeats
unsigned int current_number_of_repeats
Definition:
repeat_on_nonlinear_fail.h:98
aspect::TimeStepping::RepeatOnNonlinearFail::execute
double execute() override
aspect::TimeStepping::RepeatOnNonlinearFail
Definition:
repeat_on_nonlinear_fail.h:44
aspect::TimeStepping::RepeatOnNonlinearFail::nonlinear_solver_just_failed
bool nonlinear_solver_just_failed
Definition:
repeat_on_nonlinear_fail.h:88
aspect::TimeStepping::Interface
Definition:
interface.h:90
aspect::SimulatorAccess
Definition:
plugins.h:46
aspect::TimeStepping::RepeatOnNonlinearFail::parse_parameters
void parse_parameters(ParameterHandler &prm) override
aspect
Definition:
compat.h:59
aspect::TimeStepping::RepeatOnNonlinearFail::RepeatOnNonlinearFail
RepeatOnNonlinearFail()
aspect::TimeStepping::RepeatOnNonlinearFail::cut_back_factor
double cut_back_factor
Definition:
repeat_on_nonlinear_fail.h:82
aspect::TimeStepping::RepeatOnNonlinearFail::declare_parameters
static void declare_parameters(ParameterHandler &prm)