Changeset 23695


Ignore:
Timestamp:
02/05/19 11:10:17 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: make min thickness work in 3d

Location:
issm/trunk-jpl/src/c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/analyses/LevelsetAnalysis.cpp

    r23657 r23695  
    718718                                gauss->GaussNode(element->GetElementType(),in);
    719719                                Node* node=element->GetNode(in);
     720                                if(!node->IsActive()) continue;
     721
    720722                                H_input->GetInputValue(&thickness,gauss);
    721723                                if(thickness<min_thickness){
     
    755757                                gauss->GaussNode(element->GetElementType(),in);
    756758                                Node* node=element->GetNode(in);
     759                                if(!node->IsActive()) continue;
     760
    757761                                H_input->GetInputValue(&thickness,gauss);
    758762                                bed_input->GetInputValue(&water_depth,gauss);
     
    800804                                        gauss->GaussNode(element->GetElementType(),in);
    801805                                        Node* node=element->GetNode(in);
     806                                        if(!node->IsActive()) continue;
     807
    802808                                        crevassedepth_input->GetInputValue(&crevassedepth,gauss);
    803809                                        bed_input->GetInputValue(&bed,gauss);
     
    882888                                gauss->GaussNode(element->GetElementType(),in);
    883889                                Node* node=element->GetNode(in);
     890                                if(!node->IsActive()) continue;
    884891
    885892                                if(constraint_nodes[node->Sid()]>0.){
  • issm/trunk-jpl/src/c/modules/Calvingx/Calvingx.cpp

    r22488 r23695  
    1717                case DefaultCalvingEnum:
    1818                case CalvingMinthicknessEnum:
    19                         break;
    2019                case CalvingHabEnum:
    2120                        break;
Note: See TracChangeset for help on using the changeset viewer.