Changeset 22461


Ignore:
Timestamp:
02/23/18 14:45:20 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: big change here, we do not extrapolate the nodes that are active but on places where phi>0, this will affect results and tests. Best thing to do before the week end...

File:
1 edited

Legend:

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

    r21420 r22461  
    332332        /* Intermediaries */
    333333        int extvar_enum;
    334         IssmDouble phi,value;
     334        IssmDouble active,value;
    335335        Node* node = NULL;
    336336
     
    338338        element->FindParam(&extvar_enum, ExtrapolationVariableEnum);
    339339       
    340         Input* levelset_input=element->GetInput(MaskIceLevelsetEnum); _assert_(levelset_input);
     340        Input* active_input=element->GetInput(IceMaskNodeActivationEnum); _assert_(active_input);
    341341        Input* extvar_input=element->GetInput(extvar_enum); _assert_(extvar_input);
    342342
     
    345345                gauss->GaussNode(element->GetElementType(),in);
    346346                node=element->GetNode(in);
    347                 levelset_input->GetInputValue(&phi,gauss);
     347                active_input->GetInputValue(&active,gauss);
    348348                if(node->IsActive()){
    349                         if(phi<=0.){
     349                        if(active>0.5){
    350350                                /* if ice, set dirichlet BC */
    351351                                extvar_input->GetInputValue(&value,gauss);
Note: See TracChangeset for help on using the changeset viewer.