Changeset 6231 for issm/trunk/src/c/objects/Elements/Tria.cpp
- Timestamp:
- 10/11/10 10:30:18 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Tria.cpp
r6230 r6231 470 470 /*Get values on the 3 vertices*/ 471 471 for (i=0;i<3;i++){ 472 values[i]=vector[this->nodes[i]->Get VertexDof()];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!) 473 473 } 474 474 … … 696 696 697 697 /*Figure out the average for this element: */ 698 this->Get DofList1(&offset[0]);698 this->GetSidList(&offset[0]); 699 699 mean=0; 700 700 for(i=0;i<NUMVERTICES;i++){ … … 4561 4561 } 4562 4562 /*}}}*/ 4563 /*FUNCTION Tria::GetSidList {{{1*/ 4564 void Tria::GetSidList(int* sidlist){ 4565 4566 int i; 4567 for(i=0;i<NUMVERTICES;i++) doflist[i]=nodes[i]->GetSidList(); 4568 4569 } 4570 /*}}}*/ 4563 4571 /*FUNCTION Tria::GetParameterListOnVertices(double* pvalue,int enumtype) {{{1*/ 4564 4572 void Tria::GetParameterListOnVertices(double* pvalue,int enumtype){
Note:
See TracChangeset
for help on using the changeset viewer.