Ignore:
Timestamp:
04/07/10 12:23:51 (15 years ago)
Author:
Eric.Larour
Message:

Massive temporary commit: redesign to include vertices (for galerkin discontinous), to simplify ModelProcessor.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/mex/Dof/Dof.cpp

    r2333 r3417  
    1212        /*input datasets: */
    1313        DataSet* nodes=NULL;
     14        DataSet* vertices=NULL;
    1415        DataSet* elements=NULL;
    1516        DataSet* params=NULL;
     
    2829        FetchData(&elements,ELEMENTS);
    2930        FetchData(&nodes,NODESIN);
     31        FetchData(&vertices,VERTICESIN);
    3032        FetchData(&params,PARAMS);
    3133
    3234        /*!Generate internal degree of freedom numbers: */
    33         Dofx(&partition, &tpartition,elements,nodes,params);
     35        Dofx(&partition, &tpartition,elements,nodes, vertices, params);
    3436
    3537        /*partition and tpartition should be incremented by 1: */
     
    3941        /*write output datasets: */
    4042        WriteData(NODES,nodes);
     43        WriteData(VERTICES,vertices);
    4144        WriteData(PARTITION,partition);
    4245        WriteData(TPARTITION,tpartition);
     
    4447        /*Free ressources: */
    4548        delete nodes;
     49        delete vertices;
    4650        delete elements;
    4751        delete params;
Note: See TracChangeset for help on using the changeset viewer.