Page MenuHomec4science

coupling_dd_continuum.hh
No OneTemporary

File Metadata

Created
Wed, Jul 3, 20:09

coupling_dd_continuum.hh

/**
* @file coupling_dd_continuum.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Mon Jan 28 16:59:02 2013
*
* @brief Coupling object between DDD and continuum
*
* @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 COUPLING_DD_CONTINUUM_H
#define COUPLING_DD_CONTINUUM_H
#include "coupling.hh"
__BEGIN_LIBMULTISCALE__
/** this class represent a low-level coupling zone between dd and continuum.
The Needleman Method for instance is based on it */
template <typename DomainDD, typename DomainC, UInt Dim>
class CouplingDDContinuum : public Coupling<DomainDD, DomainC, Dim> {
public:
CouplingDDContinuum<DomainDD, DomainC, Dim>(const std::string &name,
DomainInterface &A,
DomainInterface &C)
: Coupling<DomainDD, DomainC, Dim>(name, A, C){};
virtual ~CouplingDDContinuum() {}
typedef typename DomainDD::RefNode RefDDNode;
typedef typename DomainDD::ContainerNodes ContainerDDNodes;
typedef typename DomainDD::IteratorNodes IteratorDDNodes;
typedef typename DomainC::RefElem RefElem;
typedef typename DomainC::RefNode RefNode;
typedef typename DomainC::_Vec_ _Vec_;
typedef typename DomainC::ContainerElems ContainerElems;
typedef typename DomainC::IteratorElems IteratorElems;
typedef typename DomainC::ContainerNodes ContainerNodes;
typedef typename DomainC::IteratorNodes IteratorNodes;
};
__END_LIBMULTISCALE__
#endif // COUPLING_DD_CONTINUUM

Event Timeline