Changeset 5940


Ignore:
Timestamp:
09/22/10 09:41:50 (15 years ago)
Author:
Mathieu Morlighem
Message:

Added hooked fields as element properties

Location:
issm/trunk/src/c/objects/Loads
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Loads/Penpair.cpp

    r5937 r5940  
    3131
    3232        this->hnodes=NULL;
     33        this->nodes=NULL;
    3334        this->parameters=NULL;
    3435        return;
     
    4243        this->hnodes=new Hook(penpair_node_ids,2);
    4344        this->parameters=NULL;
     45        this->nodes=NULL;
    4446       
    4547        return;
     
    139141        hnodes=new Hook(); hnodes->Demarshall(&marshalled_dataset);
    140142
    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;
    143146
    144147        /*return: */
     
    166169        /*now deal with hooks and objects: */
    167170        penpair->hnodes=(Hook*)this->hnodes->copy();
     171        penpair->nodes =(Node**)penpair->hnodes->deliverp();
    168172
    169173        /*point parameters: */
     
    182186         * datasets, using internal ids and offsets hidden in hooks: */
    183187        hnodes->configure(nodesin);
     188
     189        /*Initialize hooked fields*/
     190        this->nodes  =(Node**)hnodes->deliverp();
     191
    184192        /*point parameters to real dataset: */
    185193        this->parameters=parametersin;
     
    265273ElementMatrix* Penpair::PenaltyCreateKMatrixDiagnosticHoriz(double kmax){
    266274
    267         Node** nodes=(Node**)hnodes->deliverp();
    268275        int    approximation0=nodes[0]->GetApproximation();
    269276        int    approximation1=nodes[1]->GetApproximation();
     
    304311        double penalty_offset;
    305312
    306         /*recover pointers: */
    307         Node** nodes=(Node**)hnodes->deliverp();
    308 
    309313        /*Initialize Element vector and return if necessary*/
    310314        ElementMatrix* Ke=NewElementMatrix(nodes,NUMVERTICES,this->parameters);
     
    334338        double penalty_offset;
    335339
    336         /*recover pointers: */
    337         Node** nodes=(Node**)hnodes->deliverp();
    338 
    339340        /*Initialize Element vector and return if necessary*/
    340341        ElementMatrix* Ke=NewElementMatrix(nodes,NUMVERTICES,this->parameters);
  • issm/trunk/src/c/objects/Loads/Penpair.h

    r5937 r5940  
    2121               
    2222                Hook* hnodes;  //hook to 2 nodes
     23                Node** nodes;
    2324
    2425                Parameters* parameters; //pointer to solution parameters
Note: See TracChangeset for help on using the changeset viewer.