Changeset 5152
- Timestamp:
- 08/11/10 12:09:27 (15 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Penta.cpp
r5129 r5152 1673 1673 this->element_type=this->element_type_list[analysis_counter]; 1674 1674 1675 /*Pick up the objects inside the hooks:*/1675 /*Pick up nodes */ 1676 1676 if (this->hnodes[analysis_counter]) this->nodes=(Node**)this->hnodes[analysis_counter]->deliverp(); 1677 1677 else this->nodes=NULL; 1678 this->matice=(Matice*)this->hmatice->delivers();1679 this->matpar=(Matpar*)this->hmatpar->delivers();1680 this->neighbors=(Penta**)this->hneighbors->deliverp();1681 1682 /*point parameters to real dataset: */1683 this->parameters=parametersin;1684 1678 } 1685 1679 /*}}}*/ -
issm/trunk/src/c/objects/Elements/Tria.cpp
r5135 r5152 511 511 this->element_type=this->element_type_list[analysis_counter]; 512 512 513 /*Pick up the objects inside the hooks:*/513 /*Pick up nodes*/ 514 514 if(this->hnodes[analysis_counter]) this->nodes=(Node**)this->hnodes[analysis_counter]->deliverp(); 515 515 else this->nodes=NULL; 516 this->matice=(Matice*)this->hmatice->delivers();517 this->matpar=(Matpar*)this->hmatpar->delivers();518 519 /*point parameters to real dataset: */520 this->parameters=parametersin;521 516 522 517 } -
issm/trunk/src/c/objects/Loads/Icefront.cpp
r5138 r5152 274 274 void Icefront::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 275 275 276 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective277 * datasets, using internal ids and offsets hidden in hooks: */278 hnodes->configure(nodesin);279 helement->configure(elementsin);280 hmatpar->configure(materialsin);281 282 /*point parameters to real dataset: */283 this->parameters=parametersin;284 276 } 285 277 /*}}}*/ -
issm/trunk/src/c/objects/Loads/Numericalflux.cpp
r5103 r5152 294 294 void Numericalflux::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 295 295 296 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective297 * datasets, using internal ids and offsets hidden in hooks: */298 hnodes->configure(nodesin);299 helement->configure(elementsin);300 301 /*point parameters to real dataset: */302 this->parameters=parametersin;303 304 296 } 305 297 /*}}}*/ -
issm/trunk/src/c/objects/Loads/Pengrid.cpp
r5103 r5152 257 257 void Pengrid::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 258 258 259 /*Take care of hooking up all objects for this load, ie links the objects in the hooks to their respective260 * datasets, using internal ids and offsets hidden in hooks: */261 hnode->configure(nodesin);262 helement->configure(elementsin);263 hmatpar->configure(materialsin);264 265 /*point parameters to real dataset: */266 this->parameters=parametersin;267 259 } 268 260 /*}}}1*/ -
issm/trunk/src/c/objects/Loads/Penpair.cpp
r5103 r5152 181 181 void Penpair::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 182 182 183 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective184 * datasets, using internal ids and offsets hidden in hooks: */185 hnodes->configure(nodesin);186 187 /*point parameters to real dataset: */188 this->parameters=parametersin;189 183 } 190 184 /*}}}1*/ -
issm/trunk/src/c/objects/Loads/Riftfront.cpp
r5103 r5152 305 305 /*FUNCTION Riftfront::SetCurrentConfiguration {{{1*/ 306 306 void Riftfront::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 307 308 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective309 * datasets, using internal ids and offsets hidden in hooks: */310 hnodes->configure(nodesin);311 helements->configure(elementsin);312 hmatpar->configure(materialsin);313 314 /*point parameters to real dataset: */315 this->parameters=parametersin;316 307 317 308 } -
issm/trunk/src/c/objects/Materials/Matice.cpp
r5103 r5152 245 245 void Matice::SetCurrentConfiguration(Elements* elementsin,Loads* loadsin,Nodes* nodesin,Vertices* verticesin,Materials* materialsin,Parameters* parametersin){ 246 246 247 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective248 * datasets, using internal ids and offsets hidden in hooks: */249 helement->configure(elementsin);250 247 } 251 248 /*}}}*/ -
issm/trunk/src/c/objects/Node.cpp
r5114 r5152 313 313 void Node::SetCurrentConfiguration(DataSet* nodesin,Vertices* verticesin){ 314 314 315 int i;316 317 /*Take care of hooking up all objects for this element, ie links the objects in the hooks to their respective318 * datasets, using internal ids and offsets hidden in hooks: */319 hvertex->configure(verticesin);320 321 315 } 322 316 /*FUNCTION Node::GetDof {{{1*/
Note:
See TracChangeset
for help on using the changeset viewer.