setSolutionIntoInterfaceFields
Hi again,
I would like to look at the eigenvectors of the \mathcal{F}=(\mathcal{I}-\mathcal{A})
operator of the Schwarz procedure.
To this end, I proceed with the following:
- get the discrete operator (associated with
\mathcal{F}
) viagmshddm::problem::Formulation::computeMatrix()
, - compute its eigenvalues and eigenvectors with
gmshfem::algebra::eigenvalues<>()
, - insert each eigenvector (i.e. a
g_{ij}
vector) in thegmshddm::problem::Formulation
and solve the volume PDEs.
Would it be a better/cleaner way?
If not, then a method to implement the last step is required, if I'm not mistaken.
To this end, I suggest simply a clean wrapper around gmshddm::problem::Formulation::_fillG()
.
The naming gmshddm::problem::Formulation::setSolutionIntoInterfaceFields()
is an echo of gmshfem::problem::Formulation::setSolutionIntoFields()
in gmshfem
.
Cheers, Nicolas.