Changeset 23169


Ignore:
Timestamp:
08/24/18 09:51:44 (7 years ago)
Author:
Mathieu Morlighem
Message:

BUG: preserve interpolation when calling InputUpdateOneDof

Location:
issm/trunk-jpl/src/c/classes/Elements
Files:
3 edited

Legend:

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

    r23066 r23169  
    16051605
    16061606        /*Add input to the element: */
    1607         this->inputs->AddInput(new PentaInput(enum_type,values,P1Enum));
     1607        this->inputs->AddInput(new PentaInput(enum_type,values,this->element_type));
    16081608
    16091609        /*Free ressources:*/
  • issm/trunk-jpl/src/c/classes/Elements/Tetra.cpp

    r22990 r23169  
    501501
    502502        /*Add input to the element: */
    503         this->inputs->AddInput(new TetraInput(enum_type,values,P1Enum));
     503        this->inputs->AddInput(new TetraInput(enum_type,values,this->element_type));
    504504
    505505        /*Free ressources:*/
  • issm/trunk-jpl/src/c/classes/Elements/Tria.cpp

    r23066 r23169  
    21762176
    21772177        /*Add input to the element: */
    2178         this->inputs->AddInput(new TriaInput(enum_type,values,P1Enum));
     2178        this->inputs->AddInput(new TriaInput(enum_type,values,this->element_type));
    21792179
    21802180        /*Free ressources:*/
Note: See TracChangeset for help on using the changeset viewer.