Changeset 5258
- Timestamp:
- 08/13/10 16:19:46 (15 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r5221 r5258 4522 4522 /*}}}*/ 4523 4523 /*FUNCTION Penta::GetDofList {{{1*/ 4524 void Penta::GetDofList(int** pdoflist ){4524 void Penta::GetDofList(int** pdoflist,int approximation_enum){ 4525 4525 4526 4526 int i,j; … … 4542 4542 count=0; 4543 4543 for(i=0;i<6;i++){ 4544 nodes[i]->GetDofList(doflist+count );4544 nodes[i]->GetDofList(doflist+count,approximation_enum); 4545 4545 count+=nodes[i]->GetNumberOfDofs(); 4546 4546 } -
issm/trunk/src/c/objects/Elements/Penta.h
r5211 r5258 140 140 void CreatePVectorThermal( Vec pg); 141 141 double* GaussFromNode(Node* node); 142 void GetDofList(int** pdoflist );142 void GetDofList(int** pdoflist,int approximation_enum=0); 143 143 void GetDofList1(int* doflist); 144 144 int GetElementType(void); -
issm/trunk/src/c/objects/Elements/Tria.cpp
r5251 r5258 5532 5532 /*}}}*/ 5533 5533 /*FUNCTION Tria::GetDofList {{{1*/ 5534 void Tria::GetDofList(int** pdoflist ){5534 void Tria::GetDofList(int** pdoflist, int approximation_enum){ 5535 5535 5536 5536 int i,j; -
issm/trunk/src/c/objects/Elements/Tria.h
r5251 r5258 141 141 double GetAreaCoordinate(double x, double y, int which_one); 142 142 int GetElementType(void); 143 void GetDofList(int** pdoflist );143 void GetDofList(int** pdoflist,int approximation_enum=0); 144 144 void GetDofList1(int* doflist); 145 145 void GetParameterValue(double* pvalue,Node* node,int enumtype); -
issm/trunk/src/c/objects/Node.cpp
r5254 r5258 332 332 /*}}}*/ 333 333 /*FUNCTION Node::GetDofList{{{1*/ 334 void Node::GetDofList(int* outdoflist ){334 void Node::GetDofList(int* outdoflist,int approximation_enum){ 335 335 int i; 336 336 for(i=0;i<this->indexing.numberofdofs;i++){ -
issm/trunk/src/c/objects/Node.h
r5114 r5258 75 75 void CreateVecSets(Vec pv_g,Vec pv_f,Vec pv_s); 76 76 int GetConnectivity(); 77 void GetDofList(int* poutdoflist );77 void GetDofList(int* poutdoflist,int approximation_enum=0); 78 78 int GetDofList1(void); 79 79 double GetX();
Note:
See TracChangeset
for help on using the changeset viewer.