Changeset 5941 for issm/trunk


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

Added hooked fields as object properties

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

Legend:

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

    r5938 r5941  
    3535        this->helements=NULL;
    3636        this->hmatpar=NULL;
     37        this->nodes=NULL;
     38        this->elements=NULL;
     39        this->matpar=NULL;
    3740}
    3841/*}}}*/
     
    7275        riftfront_matpar_id=iomodel->numberofelements+1; //matlab indexing
    7376
     77        /*Hooks: */
    7478        this->hnodes=new Hook(riftfront_node_ids,2);
    7579        this->helements=new Hook(riftfront_elem_ids,2);
     
    103107        this->inputs->AddInput(new BoolInput(SegmentOnIceShelfEnum,riftfront_shelf));
    104108       
    105         //this->parameters: we still can't point to it, it may not even exist. Configure will handle this.
     109        //parameters and hooked fields: we still can't point to them, they may not even exist. Configure will handle this.
    106110        this->parameters=NULL;
     111        this->nodes= NULL;
     112        this->elements= NULL;
     113        this->matpar= NULL;
    107114               
    108115}
     
    266273        helements=new Hook(); helements->Demarshall(&marshalled_dataset);
    267274        hmatpar=new Hook();   hmatpar->Demarshall(&marshalled_dataset);
     275
     276        /*pointers are garbabe, until configuration is carried out: */
     277        nodes=NULL;
     278        elements=NULL;
     279        matpar=NULL;
    268280       
    269281        /*demarshall inputs: */
     
    307319        riftfront->helements=(Hook*)this->helements->copy();
    308320        riftfront->hmatpar=(Hook*)this->hmatpar->copy();
     321
     322        /*corresponding fields*/
     323        riftfront->nodes   =(Node**)riftfront->hnodes->deliverp();
     324        riftfront->elements=(Element**)riftfront->helements->deliverp();
     325        riftfront->matpar  =(Matpar*)riftfront->hmatpar->delivers();
    309326
    310327        /*internal data: */
     
    372389        hmatpar->configure(materialsin);
    373390
     391        /*Initialize hooked fields*/
     392        this->nodes   =(Node**)hnodes->deliverp();
     393        this->elements=(Element**)helements->deliverp();
     394        this->matpar  =(Matpar*)hmatpar->delivers();
     395
    374396        /*point parameters to real dataset: */
    375397        this->parameters=parametersin;
     
    467489
    468490        /*Objects: */
    469         Element   **elements            = NULL;
    470         Node      **nodes               = NULL;
    471491        Tria       *tria1               = NULL;
    472492        Tria       *tria2               = NULL;
    473 
    474         /*Recover hook objects: */
    475         elements=(Element**)helements->deliverp();
    476         nodes=(Node**)hnodes->deliverp();
    477493
    478494        /*enum of element? */
     
    564580
    565581        /*Objects: */
    566         Element   **elements            = NULL;
    567         Node      **nodes               = NULL;
    568582        Tria       *tria1               = NULL;
    569583        Tria       *tria2               = NULL;
    570         Matpar     *matpar              = NULL;
    571 
    572         /*Recover hook objects: */
    573         elements=(Element**)helements->deliverp();
    574         nodes=(Node**)hnodes->deliverp();
    575         matpar=(Matpar*)hmatpar->delivers();
    576584
    577585        /*enum of element? */
     
    668676        double      fractionincrement;
    669677
    670 
    671678        /*Objects: */
    672         Element   **elements        = NULL;
    673         Node      **nodes           = NULL;
    674679        Tria       *tria1           = NULL;
    675680        Tria       *tria2           = NULL;
    676 
    677         /*Recover hook objects: */
    678         elements=(Element**)helements->deliverp();
    679         nodes=(Node**)hnodes->deliverp();
    680681
    681682        /*enum of element? */
     
    784785
    785786        /*Objects: */
    786         Element   **elements        = NULL;
    787         Node      **nodes           = NULL;
    788787        Tria       *tria1           = NULL;
    789788        Tria       *tria2           = NULL;
    790 
    791         /*Recover hook objects: */
    792         elements=(Element**)helements->deliverp();
    793         nodes=(Node**)hnodes->deliverp();
    794789
    795790        /*enum of element? */
     
    849844
    850845        /*Objects: */
    851         Element **elements    = NULL;
    852         Node    **nodes       = NULL;
    853846        Tria     *tria1       = NULL;
    854847        Tria     *tria2       = NULL;
    855 
    856         /*Recover hook objects: */
    857         elements=(Element**)helements->deliverp();
    858         nodes=(Node**)hnodes->deliverp();
    859848
    860849        /*enum of element? */
     
    897886        double      vy2;
    898887
    899 
    900888        /*Objects: */
    901         Element   **elements        = NULL;
    902         Node      **nodes           = NULL;
    903889        Tria       *tria1           = NULL;
    904890        Tria       *tria2           = NULL;
    905 
    906         /*Recover hook objects: */
    907         elements=(Element**)helements->deliverp();
    908         nodes=(Node**)hnodes->deliverp();
    909891
    910892        /*enum of element? */
     
    953935        double      vy2;
    954936
    955 
    956937        /*Objects: */
    957         Element   **elements    = NULL;
    958         Node      **nodes       = NULL;
    959938        Tria       *tria1       = NULL;
    960939        Tria       *tria2       = NULL;
    961 
    962         /*Recover hook objects: */
    963         elements=(Element**)helements->deliverp();
    964         nodes=(Node**)hnodes->deliverp();
    965940
    966941        /*enum of element? */
  • issm/trunk/src/c/objects/Loads/Riftfront.h

    r5938 r5941  
    2121                int     analysis_type;
    2222
    23                 Hook* hnodes; //2 nodes
    24                 Hook* helements; //2 elements
     23                /*hooks: */
     24                Hook* hnodes;
     25                Hook* helements;
    2526                Hook* hmatpar;
    2627               
     28                /*Corresponding fields*/
     29                Matpar   *matpar;
     30                Node    **nodes;
     31                Element **elements;
     32
    2733                /*computational: */
    2834                int      penalty_lock;
Note: See TracChangeset for help on using the changeset viewer.