Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107246793
domain.hh
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
Sun, Apr 6, 07:34
Size
9 KB
Mime Type
text/x-c++
Expires
Tue, Apr 8, 07:34 (2 d)
Engine
blob
Format
Raw Data
Handle
25382571
Attached To
rCADDMESH CADD_mesher
domain.hh
View Options
/**
* @file domain.hh
* @author Till Junge <junge@lsmspc42.epfl.ch>
* @date Thu Apr 19 17:34:16 2012
*
* @brief defines the domain class.
*
* @section LICENSE
*
* <insert lisence here>
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __CADD_MESHER_DOMAIN_HH__
#define __CADD_MESHER_DOMAIN_HH__
#include "common.hh"
#include "cadd_mesh.hh"
#include "lattice.hh"
#include "point_container.hh"
#include <string>
#include <vector>
#include <forward_list>
template <Uint DIM> class Tree;
template <Uint DIM>
class Domain {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
/*! \param overall_ computational domain
* \param refined_ subset of \a overall_ where atomistic resolution is required
* in the case of CADD, this includes pad and MD
* \param atomistic_ subset of \a refined_. Contains all points which will be
* real atoms, i.e., interface and free
* \param atomistic_skinned_ subset of \a atomistic_. contains all free non- interface atoms
* \param lattice_
* \param centre The origin from where the domain is to be filled
* \param boundaries_special_treatment whether the boundaries should be meshed
* seperately. This is necessary if the overall sim box size cannot be a
* power-of-2-multiple of a lattice or if the lattice is not aligned with
* the overall geometry
* \param tolerance when deciding whether a point is inside the domain or not,
* this tol is used inclusively on the one side and exclusively on the other:
* positive tol is exclusive on the upper side and inclusive on the lower
*/
Domain(const Geometry<DIM> & overall_, const Geometry<DIM> & refined_,
const Geometry<DIM> & atomistic_,
const Geometry<DIM> & atomistic_skinned_,
const Lattice<DIM> & lattice_,
bool boundaries_special_treatment = false,
const PointRef<DIM> & centre=*reinterpret_cast<PointRef<DIM> *>(NULL),
Real tolerance = 1e-4,
const std::string & qh_flags = default_flags
);
virtual ~Domain();
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
/// function to print the contain of the class
virtual void printself(std::ostream & stream, int indent = 0) const;
/*! adds a point-refinement data point. Make sure that in the end, the convex
* hull of the points encompasses the entire Geometry \a overall_.
* \param coords
* \param refinement
*/
void setPointRefinement(const Real * coords, Real & refinement);
void setPointRefinement(const PointRef<DIM> & coords, Real & refinement){
this->setPointRefinement(coords.getArray(), refinement);
}
/// fills the domain
void fill_points(bool periodicity[DIM]) throw(std::string);
void fill_points() throw(std::string) {
bool periodicity[DIM] = {0}; this->fill_points(periodicity);
}
void fill_points(bool period_x, bool period_y, bool period_z = false) throw(std::string) {
if ((DIM==twoD) && period_z) {
throw("you cannot specify a periodicity in z for a 2D problem");
}
bool period[DIM] = {period_x, period_y};
if (DIM == threeD) {
period[DIM-1] = period_z;
}
return this->fill_points(period);
}
void complement_periodically(int direction, Uint dim) throw(std::string);
/* returns whether a point is to be considered for the fem mesh
* \param point*/
bool inFemDomain(const PointRef<DIM> & point);
bool inDomain(PointRef<DIM> & point);
/// simple exposure of Geometry::from_border
inline Real from_border(const Real * point, const Real & tol) const {
return this->overall->from_border(point, tol).distance;}
/*! returns the interpolated refinement at point \a coords
* \param coords */
inline Real interpolate(const Real * coords) const {
return this->auxiliary_mesh->interpolate(coords, this->refinement);}
inline Real interpolate(PointRef<DIM> point) const {
return this->interpolate(&(point.getComponent(0)));}
/*! dumps the atoms in lammps format
* \param filename */
void dump_atoms_lammps(std::string filename);
/*! dumps the atoms in paraview format
* \param filename */
void dump_atoms_paraview(std::string filename);
/*! computes the pad and interface atoms.
* Theoretically, the atomistic geometry does not need to be specified. In
* Practice however, it seems to be important frequently to fiddle around
* with it in order to deal correctly with periodic boundary conditions.
*/
void compute_coupling_atoms(PointContainer<DIM> & interface,
PointContainer<DIM> & pad,
const Geometry<DIM> & atomistic = *reinterpret_cast<Geometry<DIM>* >(NULL));
/*! Deprecated legacy function. Use compute_coupling_atoms instead */
void compute_interface_atoms(PointContainer<DIM> & interface,
PointContainer<DIM> & pad,
const Geometry<DIM> & atomistic =
*reinterpret_cast<Geometry<DIM>* >(NULL)) {
std::cout << "Deprecation warning. Use compute_coupling_atoms instead of "
<< "compute_interface_atoms!" << std::endl;
this->compute_coupling_atoms(interface, pad, atomistic);}
/// use with care
void insertCustomPoint(const PointRef<DIM> & point);
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public:
/// returns a pointer to the lattice
inline Lattice<DIM> * getLattice() {return this->lattice;}
/// returns a reference to the points
inline const PointContainer<DIM> & getPoints() const {return this->points;}
/*! returns a reference to the main mesh. If the mesh does not yet exist, it
* is created and then returned */
Mesh<DIM> & getMesh(Real quality = 10) throw(std::string);
/*! returns a reference to the auxiliary mesh. Throws an error \a std::string
* if the mesh does not yet exist */
Mesh<DIM> & getAuxiliaryMesh();
Tree<DIM> & getTree();
const PointContainer<DIM> & getAtoms();
void splitDegenerates(const Real & radius_threshold);
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private:
/// Creates the auxiliary Mesh using the points defined in setPointRefinement
void initialiseAuxiliaryMesh();
void fill_atoms();
void fill_coupling_atoms();
// geometric definitions
/// computational domain
Geometry<DIM> * overall;
/// subdomain of \a overall, atomistic refinement here
Geometry<DIM> * refined;
/// subdomain of \a refined. all real atoms, no pad
Geometry<DIM> * atomistic;
/// subdomain of \a atomistic. real atoms without interface atoms
Geometry<DIM> * atomistic_skinned;
// lattice
Lattice<DIM> * lattice;
// refinement definition
/// points used as nodes for the auxiliary mesh
PointContainer<DIM> refinement_points;
/// nodal refinement values to be interpolated
std::vector<Real> refinement;
/// auxiliary mesh, used to compute refinement in any point of the computational domain
Mesh<DIM> * auxiliary_mesh;
/// quadtree (2D) or octtree (3D) used to make a continuously refining mesh
Tree<DIM> * tree;
// points definition
/// all points, including pure atoms and pure fem nodes
PointContainer<DIM> points; //this is the main container with nodes and atoms
/// atoms, including pad
PointContainer<DIM> atoms;
/// pad and interface atom indices. this is filled when the atoms are
/// computed, so that we can separate interface and pad
std::forward_list<Uint> coupling_atom_ids;
/// periodic nodes, that can never be atoms
PointContainer<DIM> periodic_nodes;
/// main mesh object
Mesh<DIM> * main_mesh;
/// whether \a points has been filled
bool filled;
/// whether \a main_mesh has been meshed
bool main_meshed;
/*! whether the boundaries should be meshed seperately (important if the
* overall size cannot be a multiple of 2 lattices in every direction. */
bool boundaries_special_treatment;
Real mesh_quality;
/*! tolerance to be used to decide whether a point is within the domain
This is an inclusive tolerance on the lower bounds of the domain and
exlusive at the upper bounds */
Real tol;
std::string qh_flags;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
/// standard output stream operator
template <Uint DIM>
inline std::ostream & operator <<(std::ostream & stream, const Domain<DIM> & _this)
{
_this.printself(stream);
return stream;
}
#endif /* __CADD_MESHER_DOMAIN_HH__ */
Event Timeline
Log In to Comment