Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90968343
sparse_bicgstab.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Nov 6, 12:14
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Nov 8, 12:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22169367
Attached To
rSPECMICP SpecMiCP / ReactMiCP
sparse_bicgstab.hpp
View Options
#ifndef SPECMICP_SPARSESOLVERS_SPARSEBICGSTAB_HPP
#define SPECMICP_SPARSESOLVERS_SPARSEBICGSTAB_HPP
#include "sparse_solver_structs.hpp"
#include "sparse_solver_base.hpp"
#include <Eigen/IterativeLinearSolvers>
namespace
specmicp
{
namespace
sparse_solvers
{
template
<
class
MatrixT
,
class
DerivedR
,
class
DerivedS
>
class
SparseSolverBiCGSTAB
:
public
SparseSolverBase
<
MatrixT
,
DerivedR
,
DerivedS
>
{
using
SolverT
=
Eigen
::
BiCGSTAB
<
MatrixT
,
Eigen
::
IncompleteLUT
<
typename
MatrixT
::
Scalar
>>
;
public
:
//! \brief Decompose the jacboian
SparseSolverReturnCode
decompose
(
MatrixT
&
jacobian
)
{
m_solver
.
compute
(
jacobian
);
if
(
m_solver
.
info
()
!=
Eigen
::
Success
)
{
return
SparseSolverReturnCode
::
FailedDecomposition
;
}
return
SparseSolverReturnCode
::
Success
;
}
//! \brief Solve the problem
SparseSolverReturnCode
solve
(
const
DerivedR
&
residuals
,
DerivedS
&
solution
)
{
solution
=
m_solver
.
solve
(
-
residuals
);
if
(
m_solver
.
info
()
!=
Eigen
::
Success
)
{
return
SparseSolverReturnCode
::
FailedSystemSolving
;
}
return
SparseSolverReturnCode
::
Success
;
}
SparseSolverReturnCode
solve_scaling
(
const
DerivedR
&
residuals
,
const
DerivedR
&
scaling
,
DerivedS
&
solution
)
{
solution
=
m_solver
.
solve
(
scaling
.
asDiagonal
()
*
(
-
residuals
));
if
(
m_solver
.
info
()
!=
Eigen
::
Success
)
{
return
SparseSolverReturnCode
::
FailedSystemSolving
;
}
return
SparseSolverReturnCode
::
Success
;
}
private
:
SolverT
m_solver
;
};
}
// end namespace sparse_solvers
}
// end namespace specmicp
#endif
//SPECMICP_SPARSESOLVERS_SPARSEBICGSTAB_HPP
Event Timeline
Log In to Comment