Page MenuHomec4science

kobayashi.hh
No OneTemporary

File Metadata

Created
Wed, Jul 31, 05:19

kobayashi.hh

/**
* @file kobayashi.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Fri Jul 11 15:47:44 2014
*
* @brief Kobayashi's bridging method
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* LibMultiScale is free software: you can redistribute it and/or modify it
* under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* LibMultiScale is distributed in the hope that it will be useful, but
* WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with LibMultiScale. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __LIBMULTISCALE_KOBAYASHI_HH__
#define __LIBMULTISCALE_KOBAYASHI_HH__
/* -------------------------------------------------------------------------- */
#include "arlequin_template.hh"
#include "lib_continuum.hh"
#include "lib_md.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_LIBMULTISCALE__
template <typename DomainA, typename DomainC, UInt Dim>
class Kobayashi : public ArlequinTemplate<DomainA, DomainC, Dim> {
/* ------------------------------------------------------------------------ */
/* Typedefs */
/* ------------------------------------------------------------------------ */
public:
using Parent = ArlequinTemplate<DomainA, DomainC, Dim>;
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
Kobayashi<DomainA, DomainC, Dim>(const std::string &name, DomainInterface &A,
DomainInterface &C);
~Kobayashi(){};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
void init();
void coupling(CouplingStage stage);
void declareParams();
protected:
void buildCGMatrix();
void correctContinuum();
void correctAtoms();
void buildLeastSquareRHS();
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
Array *rhs;
Array *CG_disp;
Array *CG_vel;
math::Matrix *A;
};
__END_LIBMULTISCALE__
#endif /* __LIBMULTISCALE_KOBAYASHI_HH__ */

Event Timeline