Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Chaofan Chen
ogs
Commits
75ace76d
Commit
75ace76d
authored
9 years ago
by
Christoph Lehmann
Browse files
Options
Downloads
Patches
Plain Diff
[NL] added nonlinear solver classes
parent
f1c9ef0c
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
NumLib/ODESolver/NonlinearSolver-impl.h
+135
-0
135 additions, 0 deletions
NumLib/ODESolver/NonlinearSolver-impl.h
NumLib/ODESolver/NonlinearSolver.h
+149
-0
149 additions, 0 deletions
NumLib/ODESolver/NonlinearSolver.h
with
284 additions
and
0 deletions
NumLib/ODESolver/NonlinearSolver-impl.h
0 → 100644
+
135
−
0
View file @
75ace76d
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#include
<logog/include/logog.hpp>
// for debugging
// #include <iostream>
#include
"MathLib/LinAlg/BLAS.h"
#include
"NonlinearSolver.h"
#include
"MathLib/LinAlg/VectorNorms.h"
// TODO: change
#include
"ODETypes.h"
// for one shot linear solver
namespace
NumLib
{
template
<
typename
Matrix
,
typename
Vector
>
void
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>::
assemble
(
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>
&
sys
,
Vector
const
&
x
)
const
{
sys
.
assembleMatricesPicard
(
x
);
}
template
<
typename
Matrix
,
typename
Vector
>
bool
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>::
solve
(
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>
&
sys
,
Vector
&
x
)
{
namespace
BLAS
=
MathLib
::
BLAS
;
bool
success
=
false
;
for
(
unsigned
iteration
=
1
;
iteration
<
_maxiter
;
++
iteration
)
{
sys
.
assembleMatricesPicard
(
x
);
sys
.
getA
(
_A
);
sys
.
getRhs
(
_rhs
);
// TODO _x_new might not have been initialized
sys
.
applyKnownComponentsPicard
(
_A
,
_rhs
,
_x_new
);
// std::cout << "A:\n" << Eigen::MatrixXd(A) << "\n";
// std::cout << "rhs:\n" << rhs << "\n\n";
oneShotLinearSolve
(
_A
,
_rhs
,
_x_new
);
BLAS
::
aypx
(
x
,
-
1.0
,
_x_new
);
// x = _x_new - x
auto
const
error
=
norm
(
x
);
// INFO(" picard iteration %u error: %e", iteration, error);
x
=
_x_new
;
if
(
error
<
_tol
)
{
success
=
true
;
break
;
}
if
(
sys
.
isLinear
())
{
// INFO(" picard linear system. not looping");
success
=
true
;
break
;
}
}
return
success
;
}
template
<
typename
Matrix
,
typename
Vector
>
void
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>::
assemble
(
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>
&
sys
,
Vector
const
&
x
)
const
{
sys
.
assembleResidualNewton
(
x
);
}
template
<
typename
Matrix
,
typename
Vector
>
bool
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>::
solve
(
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>
&
sys
,
Vector
&
x
)
{
namespace
BLAS
=
MathLib
::
BLAS
;
bool
success
=
false
;
for
(
unsigned
iteration
=
1
;
iteration
<
_maxiter
;
++
iteration
)
{
sys
.
assembleResidualNewton
(
x
);
sys
.
getResidual
(
x
,
_res
);
// std::cout << " res:\n" << res << std::endl;
if
(
norm
(
_res
)
<
_tol
)
{
success
=
true
;
break
;
}
sys
.
assembleJacobian
(
x
);
sys
.
getJacobian
(
_J
);
// TODO _minus_delta_x might not have been initialized
sys
.
applyKnownComponentsNewton
(
_J
,
_res
,
_minus_delta_x
);
// std::cout << " J:\n" << Eigen::MatrixXd(J) << std::endl;
oneShotLinearSolve
(
_J
,
_res
,
_minus_delta_x
);
// auto const dx_norm = _minus_delta_x.norm();
// INFO(" newton iteration %u, norm of delta x: %e", iteration, dx_norm);
BLAS
::
axpy
(
x
,
-
1.0
,
_minus_delta_x
);
if
(
sys
.
isLinear
())
{
// INFO(" newton linear system. not looping");
success
=
true
;
break
;
}
}
return
success
;
}
}
This diff is collapsed.
Click to expand it.
NumLib/ODESolver/NonlinearSolver.h
0 → 100644
+
149
−
0
View file @
75ace76d
/**
* \copyright
* Copyright (c) 2012-2016, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#ifndef NUMLIB_NONLINEARSOLVER_H
#define NUMLIB_NONLINEARSOLVER_H
#include
<logog/include/logog.hpp>
#include
"Types.h"
#include
"NonlinearSystem.h"
namespace
NumLib
{
//! \addtogroup ODESolver
//! @{
/*! Find a solution to a nonlinear equation.
*
* \tparam Matrix the type of matrices occuring in the linearization of the equation.
* \tparam Vector the type of the solution vector of the equation.
* \tparam NLTag a tag indicating the method used for solving the equation.
*/
template
<
typename
Matrix
,
typename
Vector
,
NonlinearSolverTag
NLTag
>
class
NonlinearSolver
;
/*! Find a solution to a nonlinear equation using the Newton-Raphson method.
*
* \tparam Matrix the type of matrices occuring in the linearization of the equation.
* \tparam Vector the type of the solution vector of the equation.
*/
template
<
typename
Matrix
,
typename
Vector
>
class
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>
final
{
public:
//! Type of the nonlinear equation system to be solved.
using
System
=
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Newton
>
;
/*! Constructs a new instance.
*
* \param tol the tolerance of the solver. \todo Be more specific about that!
* \param maxiter the maximum number of iterations used to solve the equation.
*/
explicit
NonlinearSolver
(
double
const
tol
,
const
unsigned
maxiter
)
:
_tol
(
tol
)
,
_maxiter
(
maxiter
)
{}
/*! Only assemble the equation system.
*
* \note This method is needed to preload CrankNicolson time discretization scheme.
* It is not used for the general solver steps; in those only the solve() method
* is needed.
*
* \param sys the equation system to be assembled.
* \param x the state at which the equation system will be assembled.
*/
void
assemble
(
System
&
sys
,
Vector
const
&
x
)
const
;
/*! Assemble and solve the equation system.
*
* \param sys the equation system to be solved.
* \param x in: the initial guess, out: the solution.
*
* \retval true if the equation system could be solved
* \retval false otherwise
*/
bool
solve
(
System
&
sys
,
Vector
&
x
);
private
:
const
double
_tol
;
//!< tolerance of the solver
const
unsigned
_maxiter
;
//!< maximum number of iterations
Vector
_res
;
//!< The residual.
Matrix
_J
;
//!< The Jacobian of the residual.
Vector
_minus_delta_x
;
//!< The Newton-Raphson method solves the linearized equation
//!< \f$ J \cdot (-\Delta x) = r \f$ repeatedly.
};
/*! Find a solution to a nonlinear equation using the Picard fixpoint iteration method.
*
* \tparam Matrix the type of matrices occuring in the linearization of the equation.
* \tparam Vector the type of the solution vector of the equation.
*/
template
<
typename
Matrix
,
typename
Vector
>
class
NonlinearSolver
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>
final
{
public:
//! Type of the nonlinear equation system to be solved.
using
System
=
NonlinearSystem
<
Matrix
,
Vector
,
NonlinearSolverTag
::
Picard
>
;
/*! Constructs a new instance.
*
* \param tol the tolerance of the solver. \todo Be more specific about that!
* \param maxiter the maximum number of iterations used to solve the equation.
*/
explicit
NonlinearSolver
(
double
const
tol
,
const
unsigned
maxiter
)
:
_tol
(
tol
)
,
_maxiter
(
maxiter
)
{}
/*! Only assemble the equation system.
*
* \note This method is needed to preload CrankNicolson time discretization scheme.
* It is not used for the general solver steps; in those only the solve() method
* is needed.
*
* \param sys the equation system to be assembled.
* \param x the state at which the equation system will be assembled.
*/
void
assemble
(
System
&
sys
,
Vector
const
&
x
)
const
;
/*! Assemble and solve the equation system.
*
* \param sys the equation system to be solved.
* \param x in: the initial guess, out: the solution.
*
* \retval true if the equation system could be solved
* \retval false otherwise
*/
bool
solve
(
System
&
sys
,
Vector
&
x
);
private
:
const
double
_tol
;
//!< tolerance of the solver
const
unsigned
_maxiter
;
//!< maximum number of iterations
Matrix
_A
;
//!< \c Matrix describing the linearized system.
Vector
_rhs
;
//!< \c Vector describing the linearized system.
Vector
_x_new
;
//!< \c Vector to store solutions of \f$ A \cdot x = \mathit{rhs} \f$.
};
//! @}
}
#include
"NonlinearSolver-impl.h"
#endif // NUMLIB_NONLINEARSOLVER_H
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