Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
<tt>continuation_option</tt>

continuation solver options

Description

This class is used to send options to the continuation algorithm.

Options

tol
max_iter

‍ These options are transmitted to the damped_newton algorithm during the continuation algorithm.

ini_delta_parameter
max_delta_parameter
max_delta_parameter

‍ These options control the continuation evolution along the branch of solution. When using the Keller continuation, these options control the arc-length parameter.

n_adapt

‍ When non-zero, it allows one to activate the optional mesh adaptation feature (see adapt) embedded in the continuation algorithm.

TODO

Complete the documentation of all the others options.

Implementation

This documentation has been generated from file main/lib/continuation_option.h

The continuation_option class is simply derivated from the adapt_option one (see adapt):

struct continuation_option : adapt_option {
size_t max_iter;
size_t n_adapt;
continuation_option(const adapt_option& aopt = adapt_option());
void check() const;
};
see the Float page for the full documentation