Page MenuHomec4science

facet_synchronizer.hh
No OneTemporary

File Metadata

Created
Sat, Jul 13, 23:57

facet_synchronizer.hh

/**
* @file facet_synchronizer.hh
*
* @author Marco Vocialta <marco.vocialta@epfl.ch>
*
*
* @brief Facet synchronizer for parallel simulations with cohesive elments
*
* @section LICENSE
*
* Copyright (©) 2010-2012, 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AKANTU_FACET_SYNCHRONIZER_HH__
#define __AKANTU_FACET_SYNCHRONIZER_HH__
#include "distributed_synchronizer.hh"
#include "fe_engine.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_AKANTU__
class FacetSynchronizer : public DistributedSynchronizer {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
protected:
FacetSynchronizer(Mesh & mesh,
SynchronizerID id = "facet_synchronizer",
MemoryID memory_id = 0);
// public:
// virtual ~FacetSynchronizer() {};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
/// get a distributed synchronizer and a facet mesh, and create the
/// associated FacetSynchronizer
static FacetSynchronizer *
createFacetSynchronizer(DistributedSynchronizer & distributed_synchronizer,
Mesh & mesh,
SynchronizerID id = "facet_synchronizer",
MemoryID memory_id = 0);
/// update distributed synchronizer after elements' insertion
void updateDistributedSynchronizer(DistributedSynchronizer & distributed_synchronizer,
DataAccessor & data_accessor,
const Mesh & mesh_cohesive);
protected:
/// update elements list based on facets list
void updateElementList(Array<Element> * elements,
const Array<Element> * facets,
const Mesh & mesh_cohesive);
/// setup facet synchronization
void setupFacetSynchronization(DistributedSynchronizer & distributed_synchronizer);
/// build send facet arrays
void buildSendElementList(const Array<ElementTypeMapArray<UInt> *> & send_connectivity,
const Array<ElementTypeMapArray<UInt> *> & recv_connectivity,
const Array<ElementTypeMapArray<UInt> *> & temp_send_element);
/// build recv facet arrays
void buildRecvElementList(const Array<ElementTypeMapArray<UInt> *> & temp_recv_element);
/// get facets' global connectivity for a list of elements
template<GhostType ghost_facets>
inline void getFacetGlobalConnectivity(const DistributedSynchronizer & distributed_synchronizer,
const ElementTypeMapArray<UInt> & rank_to_facet,
const Array<Element> * elements,
Array<ElementTypeMapArray<UInt> *> & connectivity,
Array<ElementTypeMapArray<UInt> *> & facets);
/// initialize ElementTypeMap containing correspondance between
/// facets and processors
void initRankToFacet(ElementTypeMapArray<UInt> & rank_to_facet);
/// find which processor a facet is assigned to
void buildRankToFacet(ElementTypeMapArray<UInt> & rank_to_facet,
const Array<Element> * elements);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public:
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private:
friend class FacetStressSynchronizer;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
#include "facet_synchronizer_inline_impl.cc"
__END_AKANTU__
#endif /* __AKANTU_FACET_SYNCHRONIZER_HH__ */

Event Timeline