Ignore:
Timestamp:
10/11/10 10:30:18 (14 years ago)
Author:
Eric.Larour
Message:

Took out partition and tpartition vectors, not needed anymore

File:
1 edited

Legend:

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

    r6230 r6231  
    470470                        /*Get values on the 3 vertices*/
    471471                        for (i=0;i<3;i++){
    472                                 values[i]=vector[this->nodes[i]->GetVertexDof()];
     472                                values[i]=vector[this->nodes[i]->GetSidList()]; //careful, vector of values here is not parallel distributed, but serial distributed (from a serial Dakota core!)
    473473                        }
    474474
     
    696696
    697697        /*Figure out the average for this element: */
    698         this->GetDofList1(&offset[0]);
     698        this->GetSidList(&offset[0]);
    699699        mean=0;
    700700        for(i=0;i<NUMVERTICES;i++){
     
    45614561}
    45624562/*}}}*/
     4563/*FUNCTION Tria::GetSidList {{{1*/
     4564void  Tria::GetSidList(int* sidlist){
     4565
     4566        int i;
     4567        for(i=0;i<NUMVERTICES;i++) doflist[i]=nodes[i]->GetSidList();
     4568
     4569}
     4570/*}}}*/
    45634571/*FUNCTION Tria::GetParameterListOnVertices(double* pvalue,int enumtype) {{{1*/
    45644572void Tria::GetParameterListOnVertices(double* pvalue,int enumtype){
Note: See TracChangeset for help on using the changeset viewer.