Ignore:
Timestamp:
04/07/10 15:00:38 (15 years ago)
Author:
Eric.Larour
Message:

Massive commit. Simplified diagnostic horiz. Almost compiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Node.cpp

    r3417 r3420  
    6060        int partitionborder;
    6161        int vertex_id;
     62        int upper_node_id;
    6263
    6364
     
    6768        /*indexing:*/
    6869        DistributeNumDofs(&numdofs,iomodel->analysis_type,iomodel->sub_analysis_type); //number of dofs per node
    69         if(my_bordervertices[i])partitionborder=1; else partitionborder=0;//is this node on a partition border?
     70        if(iomodel->my_bordervertices[i])partitionborder=1; else partitionborder=0;//is this node on a partition border?
    7071
    7172        this->indexing.Init(numdofs,partitionborder);
     
    9495        }
    9596
    96         this->hvertex->Init(vertex_id,1); //node id is the same as the vertex id, continuous galerkin!
    97         this->hupper_node->Init(upper_node_id,1);
     97        this->hvertex.Init(&vertex_id,1); //node id is the same as the vertex id, continuous galerkin!
     98        this->hupper_node.Init(&upper_node_id,1);
    9899       
    99100
     
    103104                if (iomodel->deadgrids[i]){
    104105                        for(k=1;k<=numdofs;k++){
    105                                 node->FreezeDof(k);
     106                                this->FreezeDof(k);
    106107                        }
    107108                }
     
    109110        if (iomodel->gridonhutter[i]){
    110111                for(k=1;k<=numdofs;k++){
    111                         node->FreezeDof(k);
     112                        this->FreezeDof(k);
    112113                }
    113114        }
Note: See TracChangeset for help on using the changeset viewer.