1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2011 by The University of Queensland //
// Earth Systems Science Computational Centre (ESSCC) //
// http://www.uq.edu.au/esscc //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.opensource.org/licenses/osl-3.0.php //
// //
/////////////////////////////////////////////////////////////
#ifndef __ESYS_LSM_SPHEREBLOCKGENERATOR
#define __ESYS_LSM_SPHEREBLOCKGENERATOR
// --- project includes ---
#include <Geometry/ParticleGenerator.h>
#include <Geometry/SimpleParticle.h>
// --- STL includes ---
#include <set>
using std::set;
namespace esys
{
namespace lsm
{
/*!
\class SphereBlockGenerator
*/
class SphereBlockGenerator : public ParticleGenerator
{
public:
// types
typedef NTable::ParticleVector ParticleVector;
typedef NTable::ParticleIterator ParticleIterator;
typedef set<int> IdSet;
// functions
SphereBlockGenerator(NTable&,ParticlePool&,double,const Vec3&,double,double,double,int,int);
virtual ~SphereBlockGenerator();
virtual void generate();
virtual void generateSeedParticles();
virtual void generateFillParticles();
virtual SimpleParticle generateParticle(const Vec3 &point);
virtual void insertParticle(const SimpleParticle&);
virtual double getRadius() const;
int getNextId();
size_t getNumParticles() const {return m_idSet.size();};
const BoundingBox getBBox() const;
virtual double getGridRadius() const;
virtual bool particleFits(const SimpleParticle &particle) const;
ParticleIterator getParticleIterator(){return ParticleIterator(m_particleVector);}
vector<SimpleParticle*> getClosestNeighbors(const SimpleParticle&,int);
bool findAFitWithSphere(SimpleParticle&, const vector<SimpleParticle*>&);
bool findAFit(SimpleParticle&, const vector<SimpleParticle*>&);
bool checkAFit(const SimpleParticle&);
Vec3 getAPoint();
private:
ParticleVector m_particleVector;
double m_tol;
IdSet m_idSet;
Vec3 m_center;
double m_radius;
double m_min_rad;
double m_max_rad;
int m_max_tries;
int m_tag;
};
};
};
#endif // __ESYS_LSM_SPHEREBLOCKGENERATOR
|