Ignore:
Timestamp:
07/25/13 09:32:50 (12 years ago)
Author:
Mathieu Morlighem
Message:

NEW: make the distinction between faces and edges for 3d Quadratic elements (quadratic requires edges, DG requires faces, the format is not the same)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/IoModel.cpp

    r15461 r15611  
    3333        this->numberofvertices=-1;
    3434        this->numberofelements=-1;
     35        this->numberoffaces=-1;
    3536        this->numberofedges=-1;
    3637        this->elements=NULL;
     38        this->faces=NULL;
    3739        this->edges=NULL;
    3840        this->elementtoedgeconnectivity      =NULL;
     
    7577        FetchData(&this->numberofelements,MeshNumberofelementsEnum);
    7678        FetchData(&this->elements,NULL,NULL,MeshElementsEnum);
     79        this->faces                           = NULL;
    7780        this->edges                           = NULL;
    7881        this->elementtoedgeconnectivity       = NULL;
     
    109112
    110113        xDelete<int>(this->elements);
     114        xDelete<int>(this->faces);
    111115        xDelete<int>(this->edges);
    112116        xDelete<int>(this->elementtoedgeconnectivity);
Note: See TracChangeset for help on using the changeset viewer.