Changeset 5941 for issm/trunk
- Timestamp:
- 09/22/10 09:50:28 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Loads
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Loads/Riftfront.cpp
r5938 r5941 35 35 this->helements=NULL; 36 36 this->hmatpar=NULL; 37 this->nodes=NULL; 38 this->elements=NULL; 39 this->matpar=NULL; 37 40 } 38 41 /*}}}*/ … … 72 75 riftfront_matpar_id=iomodel->numberofelements+1; //matlab indexing 73 76 77 /*Hooks: */ 74 78 this->hnodes=new Hook(riftfront_node_ids,2); 75 79 this->helements=new Hook(riftfront_elem_ids,2); … … 103 107 this->inputs->AddInput(new BoolInput(SegmentOnIceShelfEnum,riftfront_shelf)); 104 108 105 // this->parameters: we still can't point to it, itmay 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. 106 110 this->parameters=NULL; 111 this->nodes= NULL; 112 this->elements= NULL; 113 this->matpar= NULL; 107 114 108 115 } … … 266 273 helements=new Hook(); helements->Demarshall(&marshalled_dataset); 267 274 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; 268 280 269 281 /*demarshall inputs: */ … … 307 319 riftfront->helements=(Hook*)this->helements->copy(); 308 320 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(); 309 326 310 327 /*internal data: */ … … 372 389 hmatpar->configure(materialsin); 373 390 391 /*Initialize hooked fields*/ 392 this->nodes =(Node**)hnodes->deliverp(); 393 this->elements=(Element**)helements->deliverp(); 394 this->matpar =(Matpar*)hmatpar->delivers(); 395 374 396 /*point parameters to real dataset: */ 375 397 this->parameters=parametersin; … … 467 489 468 490 /*Objects: */ 469 Element **elements = NULL;470 Node **nodes = NULL;471 491 Tria *tria1 = NULL; 472 492 Tria *tria2 = NULL; 473 474 /*Recover hook objects: */475 elements=(Element**)helements->deliverp();476 nodes=(Node**)hnodes->deliverp();477 493 478 494 /*enum of element? */ … … 564 580 565 581 /*Objects: */ 566 Element **elements = NULL;567 Node **nodes = NULL;568 582 Tria *tria1 = NULL; 569 583 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();576 584 577 585 /*enum of element? */ … … 668 676 double fractionincrement; 669 677 670 671 678 /*Objects: */ 672 Element **elements = NULL;673 Node **nodes = NULL;674 679 Tria *tria1 = NULL; 675 680 Tria *tria2 = NULL; 676 677 /*Recover hook objects: */678 elements=(Element**)helements->deliverp();679 nodes=(Node**)hnodes->deliverp();680 681 681 682 /*enum of element? */ … … 784 785 785 786 /*Objects: */ 786 Element **elements = NULL;787 Node **nodes = NULL;788 787 Tria *tria1 = NULL; 789 788 Tria *tria2 = NULL; 790 791 /*Recover hook objects: */792 elements=(Element**)helements->deliverp();793 nodes=(Node**)hnodes->deliverp();794 789 795 790 /*enum of element? */ … … 849 844 850 845 /*Objects: */ 851 Element **elements = NULL;852 Node **nodes = NULL;853 846 Tria *tria1 = NULL; 854 847 Tria *tria2 = NULL; 855 856 /*Recover hook objects: */857 elements=(Element**)helements->deliverp();858 nodes=(Node**)hnodes->deliverp();859 848 860 849 /*enum of element? */ … … 897 886 double vy2; 898 887 899 900 888 /*Objects: */ 901 Element **elements = NULL;902 Node **nodes = NULL;903 889 Tria *tria1 = NULL; 904 890 Tria *tria2 = NULL; 905 906 /*Recover hook objects: */907 elements=(Element**)helements->deliverp();908 nodes=(Node**)hnodes->deliverp();909 891 910 892 /*enum of element? */ … … 953 935 double vy2; 954 936 955 956 937 /*Objects: */ 957 Element **elements = NULL;958 Node **nodes = NULL;959 938 Tria *tria1 = NULL; 960 939 Tria *tria2 = NULL; 961 962 /*Recover hook objects: */963 elements=(Element**)helements->deliverp();964 nodes=(Node**)hnodes->deliverp();965 940 966 941 /*enum of element? */ -
issm/trunk/src/c/objects/Loads/Riftfront.h
r5938 r5941 21 21 int analysis_type; 22 22 23 Hook* hnodes; //2 nodes 24 Hook* helements; //2 elements 23 /*hooks: */ 24 Hook* hnodes; 25 Hook* helements; 25 26 Hook* hmatpar; 26 27 28 /*Corresponding fields*/ 29 Matpar *matpar; 30 Node **nodes; 31 Element **elements; 32 27 33 /*computational: */ 28 34 int penalty_lock;
Note:
See TracChangeset
for help on using the changeset viewer.