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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
// -------------------------------------------------------------------
// MAdLib - Copyright (C) 2008-2009 Universite catholique de Louvain
//
// See the Copyright.txt and License.txt files for license information.
// You should have received a copy of these files along with MAdLib.
// If not, see <http://www.madlib.be/license/>
//
// Please report all bugs and problems to <contrib@madlib.be>
//
// Authors: Jean-Francois Remacle, Gaetan Compere
// -------------------------------------------------------------------
#ifdef _HAVE_GMSH_
#include "GmshEntities.h"
#include "GmshModel.h"
namespace MAd {
// -------------------------------------------------------------------
// -------------------------------------------------------------------
void GmshGEntity::setPhysical(int d, int t)
{
// if ( phys ) phys.delGE(this);
phys = model->getPhysical(d,t);
// phys.addGE(this);
}
// -------------------------------------------------------------------
// -------------------------------------------------------------------
GmshGRegion::GmshGRegion(GmshModel& m, int tag, Physical *_p) :
GmshGEntity(&m,_p)
{
gr = model->getModel()->getRegionByTag(tag);
if ( !gr ) {
gr = new discreteRegion(model->getModel(),tag);
model->getModel()->add(gr);
}
}
// -------------------------------------------------------------------
GmshGRegion::GmshGRegion(const GmshGRegion& ggr) :
GmshGEntity(ggr),gr(ggr.gr) {}
// -------------------------------------------------------------------
GmshGRegion::~GmshGRegion() {}
// -------------------------------------------------------------------
std::list<GmshGFace *> GmshGRegion::faces() const
{
std::list<GmshGFace*> res;
std::list<GFace*> lst = gr->faces();
std::list<GFace*>::const_iterator it = lst.begin();
for (; it != lst.end(); it++ ){
res.push_back( model->getFaceByTag( (*it)->tag() ) );
}
return res;
}
// -------------------------------------------------------------------
// -------------------------------------------------------------------
GmshGFace::GmshGFace(GmshModel& m, int tag, Physical *_p) :
GmshGEntity(&m, _p)
{
gf = model->getModel()->getFaceByTag(tag);
if ( !gf ) {
gf = new discreteFace(model->getModel(),tag);
model->getModel()->add(gf);
}
}
// -------------------------------------------------------------------
GmshGFace::GmshGFace(const GmshGFace& ggf) :
GmshGEntity(ggf),gf(ggf.gf) {}
// -------------------------------------------------------------------
GmshGFace::~GmshGFace() {}
// -------------------------------------------------------------------
std::list<GmshGEdge*> GmshGFace::edges() const
{
std::list<GmshGEdge*> res;
std::list<GEdge*> lst = gf->edges();
std::list<GEdge*>::const_iterator it = lst.begin();
for (; it != lst.end(); it++ ){
res.push_back( model->getEdgeByTag( (*it)->tag() ) );
}
return res;
}
// -------------------------------------------------------------------
GPoint GmshGFace::point(double par1, double par2) const
{
return gf->point(par1,par2);
}
// -------------------------------------------------------------------
double GmshGFace::curvatures(const SPoint2 ¶m, SVector3 *dirMax,
SVector3 *dirMin, double *curvMax,
double *curvMin) const
{
return gf->curvatures(param,dirMax,dirMin,curvMax,curvMin);
}
// -------------------------------------------------------------------
double GmshGFace::curvatureDiv(const SPoint2 ¶m) const
{
return gf->curvatureDiv(param);
}
// -------------------------------------------------------------------
SPoint2 GmshGFace::geodesic(const SPoint2 &pt1, const SPoint2 &pt2, double t)
{
return gf->geodesic(pt1,pt2,t);
}
// -------------------------------------------------------------------
// -------------------------------------------------------------------
GmshGEdge::GmshGEdge(GmshModel& m, int tag, Physical *_p) :
GmshGEntity(&m,_p)
{
ge = model->getModel()->getEdgeByTag(tag);
if ( !ge ) {
ge = new discreteEdge(model->getModel(),tag,NULL,NULL);
model->getModel()->add(ge);
}
}
// -------------------------------------------------------------------
GmshGEdge::GmshGEdge(const GmshGEdge& gge) :
GmshGEntity(gge),ge(gge.ge) {}
// -------------------------------------------------------------------
GmshGEdge::~GmshGEdge() {}
// -------------------------------------------------------------------
std::list<GmshGVertex *> GmshGEdge::vertices() const
{
std::list<GmshGVertex *> res;
res.push_back(getBeginVertex());
res.push_back(getEndVertex());
return res;
}
// -------------------------------------------------------------------
GmshGVertex *GmshGEdge::getBeginVertex() const
{
GVertex * v = ge->getBeginVertex();
return model->getVertexByTag(v->tag());
}
// -------------------------------------------------------------------
GmshGVertex *GmshGEdge::getEndVertex() const
{
GVertex * v = ge->getEndVertex();
return model->getVertexByTag(v->tag());
}
// -------------------------------------------------------------------
SPoint2 GmshGEdge::reparamOnFace(const GmshGFace *face, double epar, int dir) const
{
return ge->reparamOnFace(face->getGFace(),epar,dir);
}
// -------------------------------------------------------------------
Range<double> GmshGEdge::parBounds(int i) const
{
return ge->parBounds(i);
}
// -------------------------------------------------------------------
double GmshGEdge::curvature(double par) const
{
return ge->curvature(par);
}
// -------------------------------------------------------------------
bool GmshGEdge::isSeam(const GmshGFace *face) const
{
return ge->isSeam(face->getGFace());
}
// -------------------------------------------------------------------
GPoint GmshGEdge::point(double p) const
{
return ge->point(p);
}
// -------------------------------------------------------------------
// -------------------------------------------------------------------
GmshGVertex::GmshGVertex(GmshModel& m, int tag, Physical *_p) :
GmshGEntity(&m,_p)
{
gv = model->getModel()->getVertexByTag(tag);
if ( !gv ) {
gv = new discreteVertex(model->getModel(),tag);
model->getModel()->add(gv);
}
}
// -------------------------------------------------------------------
GmshGVertex::GmshGVertex(const GmshGVertex& ggv) :
GmshGEntity(ggv),gv(ggv.gv) {}
// -------------------------------------------------------------------
GmshGVertex::~GmshGVertex() {}
// -------------------------------------------------------------------
std::list<GmshGEdge*> GmshGVertex::edges() const
{
std::list<GmshGEdge*> res;
std::list<GEdge*> lst = gv->edges();
std::list<GEdge*>::const_iterator it = lst.begin();
for (; it != lst.end(); it++ ){
res.push_back( model->getEdgeByTag( (*it)->tag() ) );
}
return res;
}
// -------------------------------------------------------------------
SPoint2 GmshGVertex::reparamOnFace(const GmshGFace *gf, int i) const
{
return gv->reparamOnFace(gf->getGFace(),i);
}
// -------------------------------------------------------------------
bool GmshGVertex::isOnSeam(const GmshGFace *gf) const
{
return gv->isOnSeam(gf->getGFace());
}
// -------------------------------------------------------------------
}
#endif
|