Ignore:
Timestamp:
04/27/20 17:20:42 (5 years ago)
Author:
Eric.Larour
Message:

CHG: simplified test2002.m by skipping fields not stricly necessary for the slr solution.
In addition, created new 'hydro' material in the materials.m class. This triggered a series
of modifications to the model processor. The biggest was the fact that hmaterials hoooks in
the elements were pointing to materials that did not exist! So we did a post processing of the
hmaterials hooks to nullify them. This in trun triggered Tria.cpp modification of the Configure
routine to skip whenever hmaterial is NULL.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/io/Marshalling/IoCodeConversions.cpp

    r24469 r24750  
    262262                case 3: return MaticeEnum;
    263263                case 4: return MatenhancediceEnum;
    264                 case 5: return MatlithoEnum;
    265                 case 6: return MaterialsEnum;
     264                case 5: return MaterialsEnum;
    266265                default: _error_("Marshalled materials code \""<<enum_in<<"\" not supported yet");
     266        }
     267}/*}}}*/
     268int IoCodeToEnumNature(int enum_in){/*{{{*/
     269        switch(enum_in){
     270                case 1: return MatdamageiceEnum;
     271                case 2: return MatestarEnum;
     272                case 3: return MaticeEnum;
     273                case 4: return MatenhancediceEnum;
     274                case 5: return MaterialsEnum;
     275                case 6: return MatlithoEnum;
     276                case 7: return MathydroEnum;
     277                default: _error_("Marshalled materials nature code \""<<enum_in<<"\" not supported yet");
    267278        }
    268279}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.