Changeset 5940
- Timestamp:
- 09/22/10 09:41:50 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Loads
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Loads/Penpair.cpp
r5937 r5940 31 31 32 32 this->hnodes=NULL; 33 this->nodes=NULL; 33 34 this->parameters=NULL; 34 35 return; … … 42 43 this->hnodes=new Hook(penpair_node_ids,2); 43 44 this->parameters=NULL; 45 this->nodes=NULL; 44 46 45 47 return; … … 139 141 hnodes=new Hook(); hnodes->Demarshall(&marshalled_dataset); 140 142 141 /*parameters: may not exist even yet, so let Configure handle it: */ 142 this->parameters=NULL; 143 /*pointers are garbabe, until configuration is carried out: */ 144 nodes=NULL; 145 parameters=NULL; 143 146 144 147 /*return: */ … … 166 169 /*now deal with hooks and objects: */ 167 170 penpair->hnodes=(Hook*)this->hnodes->copy(); 171 penpair->nodes =(Node**)penpair->hnodes->deliverp(); 168 172 169 173 /*point parameters: */ … … 182 186 * datasets, using internal ids and offsets hidden in hooks: */ 183 187 hnodes->configure(nodesin); 188 189 /*Initialize hooked fields*/ 190 this->nodes =(Node**)hnodes->deliverp(); 191 184 192 /*point parameters to real dataset: */ 185 193 this->parameters=parametersin; … … 265 273 ElementMatrix* Penpair::PenaltyCreateKMatrixDiagnosticHoriz(double kmax){ 266 274 267 Node** nodes=(Node**)hnodes->deliverp();268 275 int approximation0=nodes[0]->GetApproximation(); 269 276 int approximation1=nodes[1]->GetApproximation(); … … 304 311 double penalty_offset; 305 312 306 /*recover pointers: */307 Node** nodes=(Node**)hnodes->deliverp();308 309 313 /*Initialize Element vector and return if necessary*/ 310 314 ElementMatrix* Ke=NewElementMatrix(nodes,NUMVERTICES,this->parameters); … … 334 338 double penalty_offset; 335 339 336 /*recover pointers: */337 Node** nodes=(Node**)hnodes->deliverp();338 339 340 /*Initialize Element vector and return if necessary*/ 340 341 ElementMatrix* Ke=NewElementMatrix(nodes,NUMVERTICES,this->parameters); -
issm/trunk/src/c/objects/Loads/Penpair.h
r5937 r5940 21 21 22 22 Hook* hnodes; //hook to 2 nodes 23 Node** nodes; 23 24 24 25 Parameters* parameters; //pointer to solution parameters
Note:
See TracChangeset
for help on using the changeset viewer.