- Timestamp:
- 02/05/15 15:24:10 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyDCEfficientAnalysis.cpp
r19082 r19091 646 646 }/*}}}*/ 647 647 648 void HydrologyDCEfficientAnalysis::HydrologyEPLGetMask(Vector<IssmDouble>* vec_mask, int* eplzigzag_counter, Element* element){648 void HydrologyDCEfficientAnalysis::HydrologyEPLGetMask(Vector<IssmDouble>* vec_mask, Vector<IssmDouble>* recurence, int* eplzigzag_counter, Element* element){ 649 649 650 650 bool active_element; … … 672 672 int eplflip_lock; 673 673 int numnodes =basalelement->GetNumberOfNodes(); 674 IssmDouble new_active; 675 IssmDouble recurent; 674 676 IssmDouble* epl_thickness =xNew<IssmDouble>(numnodes); 675 677 IssmDouble* old_active =xNew<IssmDouble>(numnodes); … … 697 699 698 700 for(i=0;i<numnodes;i++){ 699 /*Activate EPL if residual is >0 */ 701 702 /*Dealing with the initial value to define zigzaging, preceding iteration the first time we see the node and current evolving vector after*/ 703 recurence->GetValue(&recurent,basalelement->nodes[i]->Sid()); 704 if (recurent>0)vec_mask->GetValue(&old_active[i],basalelement->nodes[i]->Sid()); 705 new_active=old_active[i]; 706 recurence->SetValue(basalelement->nodes[i]->Sid(),1.,ADD_VAL); 707 708 /*Now starting to look at the activations*/ 700 709 if(residual[i]>0.){ 701 if(old_active[i]==0) eplzigzag_counter[basalelement->nodes[i]->Lid()] ++;702 710 vec_mask->SetValue(basalelement->nodes[i]->Sid(),1.,INS_VAL); 703 }704 711 new_active=1.0; 712 } 705 713 /*If mask was already one, keep one or colapse*/ 706 714 else if(old_active[i]>0.){ 707 708 715 vec_mask->SetValue(basalelement->nodes[i]->Sid(),1.,INS_VAL); 716 new_active=1.0; 709 717 /*If epl thickness gets under colapse thickness, close the layer*/ 710 718 if(epl_thickness[i]<colapse_thick){ 711 eplzigzag_counter[basalelement->nodes[i]->Lid()] ++; 712 /*Avoid flipfloping between open and closed states*/ 713 if(eplzigzag_counter[basalelement->nodes[i]->Lid()]<eplflip_lock |eplflip_lock==0){ 714 vec_mask->SetValue(basalelement->nodes[i]->Sid(),0.,INS_VAL); 715 epl_thickness[i]=init_thick; 716 } 719 vec_mask->SetValue(basalelement->nodes[i]->Sid(),0.,INS_VAL); 720 new_active=0.0; 717 721 } 722 } 723 724 if(basalelement->nodes[i]->Sid()==42){ 725 printf("old active is %e, and new active is %e, with counter= %i\n",old_active[i],new_active,eplzigzag_counter[basalelement->nodes[i]->Lid()]); 718 726 } 719 727 /*Increase of the efficient system is needed if the epl head reach the maximum value (sediment max value for now)*/ … … 723 731 /*Increase of the domain is on the downstream node in term of sediment head*/ 724 732 if(sedhead[j] == sedheadmin){ 725 if(old_active[j]==0) { 726 eplzigzag_counter[basalelement->nodes[j]->Lid()] ++; 727 if(eplzigzag_counter[basalelement->nodes[i]->Lid()]<eplflip_lock |eplflip_lock==0){ 728 vec_mask->SetValue(basalelement->nodes[j]->Sid(),1.,INS_VAL); 729 } 730 else{ 731 vec_mask->SetValue(basalelement->nodes[j]->Sid(),0.,INS_VAL); 732 } 733 } 733 vec_mask->SetValue(basalelement->nodes[j]->Sid(),1.,INS_VAL); 734 734 } 735 735 } 736 } 737 /*Now checking for nodes zigzaging between open and close*/ 738 if (old_active[i] != new_active){ 739 eplzigzag_counter[basalelement->nodes[i]->Lid()] ++; 740 /*If node changed too much of state, fix it to it's last known state*/ 741 if(eplzigzag_counter[basalelement->nodes[i]->Lid()]>eplflip_lock & eplflip_lock!=0){ 742 vec_mask->SetValue(basalelement->nodes[i]->Sid(),old_active[i],INS_VAL); 743 new_active=old_active[i]; 744 } 745 } 746 /*If node is now closed bring its thickness back to initial*/ 747 if (new_active==0.){ 748 epl_thickness[i]=init_thick; 736 749 } 737 750 }
Note:
See TracChangeset
for help on using the changeset viewer.