Changeset 9558


Ignore:
Timestamp:
09/01/11 09:36:08 (14 years ago)
Author:
Mathieu Morlighem
Message:

Some fixes

Location:
issm/trunk/src
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/EnumDefinitions/EnumDefinitions.h

    r9547 r9558  
    173173        CflCoefficientEnum,
    174174        ElementOnBedEnum,
     175        ElementOnIceSheetEnum,
    175176        ElementOnIceShelfEnum,
    176177        ElementOnSurfaceEnum,
  • issm/trunk/src/c/modules/EnumToStringx/EnumToStringx.cpp

    r9547 r9558  
    142142                case CflCoefficientEnum : return "CflCoefficient";
    143143                case ElementOnBedEnum : return "ElementOnBed";
     144                case ElementOnIceSheetEnum : return "ElementOnIceSheet";
    144145                case ElementOnIceShelfEnum : return "ElementOnIceShelf";
    145146                case ElementOnSurfaceEnum : return "ElementOnSurface";
  • issm/trunk/src/c/modules/StringToEnumx/StringToEnumx.cpp

    r9547 r9558  
    140140        else if (strcmp(name,"CflCoefficient")==0) return CflCoefficientEnum;
    141141        else if (strcmp(name,"ElementOnBed")==0) return ElementOnBedEnum;
     142        else if (strcmp(name,"ElementOnIceSheet")==0) return ElementOnIceSheetEnum;
    142143        else if (strcmp(name,"ElementOnIceShelf")==0) return ElementOnIceShelfEnum;
    143144        else if (strcmp(name,"ElementOnSurface")==0) return ElementOnSurfaceEnum;
  • issm/trunk/src/m/classes/model/model.m

    r9548 r9558  
    6363                 nodeonpattyn         = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',1);
    6464                 nodeonstokes         = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',1);
    65                  borderstokes         = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',3);
    6665
    6766                 %Stokes
     
    205204                 output_frequency               = modelfield('default',0,'marshall',true,'format','Integer');
    206205                 results_on_vertices            = modelfield('default',0,'marshall',true,'format','Boolean');
    207                  inputfilename                  = modelfield('default','','marshall',true,'format','String');
    208206                 outputfilename                 = modelfield('default','','marshall',true,'format','String');
    209207                 results                        = modelfield('default',struct(),'marshall',false);
     
    260258                 part                            = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',2);
    261259                 npart                           = modelfield('default',0,'marshall',true,'format','Integer');
    262                  numberofvariables               = modelfield('default',0,'marshall',true,'format','Integer');
    263260                 numberofresponses               = modelfield('default',0,'marshall',true,'format','Integer');
    264261                 variabledescriptors             = modelfield('default',{},'marshall',true,'format','StringArray');
  • issm/trunk/src/m/model/presolve.m

    r9522 r9558  
    66
    77%deal with outputfilename and inputfilename
    8 md.inputfilename=[md.name '.bin'];
    98md.outputfilename=[md.name '.outbin'];
    109
Note: See TracChangeset for help on using the changeset viewer.