Changeset 15634


Ignore:
Timestamp:
07/26/13 08:18:34 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: nodecounter should work on the maximum ID because we might skip some numbers, same for loads and constraints??

Location:
issm/trunk-jpl/src/c
Files:
6 edited

Legend:

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

    r15628 r15634  
    357357}
    358358/*}}}*/
    359                 /*FUNCTION Penta::Configure {{{*/
     359/*FUNCTION Penta::Configure {{{*/
    360360void  Penta::Configure(Elements* elementsin, Loads* loadsin, Nodes* nodesin,Vertices* verticesin, Materials* materialsin, Parameters* parametersin){
    361361
  • issm/trunk-jpl/src/c/classes/Node.cpp

    r15594 r15634  
    11471147void TransformStiffnessMatrixCoord(ElementMatrix* Ke,Node** nodes,int numnodes,int* cs_array){/*{{{*/
    11481148
    1149         int     i,j;
    1150         int     numdofs   = 0;
     1149        int         numdofs = 0;
    11511150        IssmDouble *transform = NULL;
    11521151        IssmDouble *values    = NULL;
    11531152
    11541153        /*Get total number of dofs*/
    1155         for(i=0;i<numnodes;i++){
     1154        for(int i=0;i<numnodes;i++){
    11561155                switch(cs_array[i]){
    11571156                        case XYEnum:   numdofs+=2; break;
     
    11631162        /*Copy current stiffness matrix*/
    11641163        values=xNew<IssmDouble>(Ke->nrows*Ke->ncols);
    1165         for(i=0;i<Ke->nrows;i++) for(j=0;j<Ke->ncols;j++) values[i*Ke->ncols+j]=Ke->values[i*Ke->ncols+j];
     1164        for(int i=0;i<Ke->nrows*Ke->ncols;i++) values[i]=Ke->values[i];
    11661165
    11671166        /*Get Coordinate Systems transform matrix*/
  • issm/trunk-jpl/src/c/classes/Nodes.cpp

    r15439 r15634  
    175175int   Nodes::MaxNumDofs(int analysis_type,int setenum){
    176176
    177         int i;
    178177        int max=0;
    179         int allmax;
    180         int numdofs=0;
     178        int allmax,numdofs;
    181179
    182180        /*Now go through all nodes, and get how many dofs they own, unless they are clone nodes: */
    183         for(i=0;i<this->Size();i++){
     181        for(int i=0;i<this->Size();i++){
    184182
    185183                Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(i));
     
    198196        max=allmax;
    199197        #endif
     198
     199        return max;
     200}
     201/*}}}*/
     202/*FUNCTION Nodes::MaximymId{{{*/
     203int Nodes::MaximumId(){
     204
     205        int max=-1;
     206        int id,allmax;
     207
     208        /*Now go through all nodes, and get how many dofs they own, unless they are clone nodes: */
     209        if(!sorted){
     210                for(int i=0;i<this->Size();i++){
     211                        Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(i));
     212                        id=node->Id();
     213                        if(id>max)max=id;
     214                }
     215        }
     216        else{
     217                Node* node=dynamic_cast<Node*>(this->GetObjectByOffset(this->Size()-1));
     218                max = node->Id();
     219        }
     220
     221        /*Grab max of all cpus: */
     222#ifdef _HAVE_MPI_
     223        MPI_Allreduce((void*)&max,(void*)&allmax,1,MPI_INT,MPI_MAX,IssmComm::GetComm());
     224        max=allmax;
     225#endif
    200226
    201227        return max;
  • issm/trunk-jpl/src/c/classes/Nodes.h

    r15439 r15634  
    2828                void  FlagClones(int analysis_type);
    2929                int   MaxNumDofs(int analysis_type,int setenum);
     30                int   MaximumId(void);
    3031                int   NumberOfDofs(int analysis_type,int setenum);
    3132                int   NumberOfDofsLocal(int analysis_type,int setenum);
  • issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateNodes.cpp

    r15631 r15634  
    1313        /*Intermediaries*/
    1414        int   i,j,counter;
    15         int   numberofvertices2d;
    1615        bool *my_edges = NULL;
    1716        bool *my_nodes = NULL;
     
    5352                        }
    5453
    55                         iomodel->Constant(&numberofvertices2d,MeshNumberofvertices2dEnum);
    56                         counter = i;
     54                        counter = iomodel->numberofvertices;
    5755                        for(i=0;i<iomodel->numberofedges;i++){
    5856                                if(iomodel->edges[i*3+2]!=2){
  • issm/trunk-jpl/src/c/modules/ModelProcessorx/UpdateCounters.cpp

    r15000 r15634  
    2424        constraints=*pconstraints;
    2525
    26         if(nodes) iomodel->nodecounter=nodes->NumberOfNodes();
     26        if(nodes) iomodel->nodecounter=nodes->MaximumId();
    2727        else iomodel->nodecounter=0;
    2828
Note: See TracChangeset for help on using the changeset viewer.