Changeset 21513


Ignore:
Timestamp:
02/03/17 15:24:11 (8 years ago)
Author:
tsantos
Message:

NEW: added a method to get inputs interpolation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/Elements/Element.cpp

    r21390 r21513  
    10411041        if(!input) _error_("Input " << EnumToStringx(inputenum) << " not found in element");
    10421042        input->GetInputValue(pvalue,gauss);
     1043
     1044}/*}}}*/
     1045void       Element::GetInputsInterpolations(Vector<IssmDouble>* interpolations){/*{{{*/
     1046
     1047        int interpolation;
     1048
     1049        /*Go through all inputs and assign interpolation in vector*/
     1050        _assert_(this->inputs);
     1051        for(int i=0;i<this->inputs->Size();i++){
     1052                Input* input=xDynamicCast<Input*>(this->inputs->GetObjectByOffset(i));
     1053                switch(input->ObjectEnum()){
     1054                        case BoolInputEnum:
     1055                        case DoubleInputEnum:
     1056                        case IntInputEnum:
     1057                                interpolations->SetValue(input->InstanceEnum(),reCast<IssmDouble>(input->ObjectEnum()),INS_VAL);
     1058                                break;
     1059                        case TriaInputEnum:
     1060                                interpolation = input->GetResultInterpolation();
     1061                                interpolations->SetValue(input->InstanceEnum(),interpolation,INS_VAL);
     1062                                break;
     1063                        default:
     1064                                _error_("Input "<<EnumToStringx(input->ObjectEnum())<<" not supported yet");
     1065                }
     1066        }
    10431067
    10441068}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.