Changeset 9558
- Timestamp:
- 09/01/11 09:36:08 (14 years ago)
- Location:
- issm/trunk/src
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/EnumDefinitions/EnumDefinitions.h
r9547 r9558 173 173 CflCoefficientEnum, 174 174 ElementOnBedEnum, 175 ElementOnIceSheetEnum, 175 176 ElementOnIceShelfEnum, 176 177 ElementOnSurfaceEnum, -
issm/trunk/src/c/modules/EnumToStringx/EnumToStringx.cpp
r9547 r9558 142 142 case CflCoefficientEnum : return "CflCoefficient"; 143 143 case ElementOnBedEnum : return "ElementOnBed"; 144 case ElementOnIceSheetEnum : return "ElementOnIceSheet"; 144 145 case ElementOnIceShelfEnum : return "ElementOnIceShelf"; 145 146 case ElementOnSurfaceEnum : return "ElementOnSurface"; -
issm/trunk/src/c/modules/StringToEnumx/StringToEnumx.cpp
r9547 r9558 140 140 else if (strcmp(name,"CflCoefficient")==0) return CflCoefficientEnum; 141 141 else if (strcmp(name,"ElementOnBed")==0) return ElementOnBedEnum; 142 else if (strcmp(name,"ElementOnIceSheet")==0) return ElementOnIceSheetEnum; 142 143 else if (strcmp(name,"ElementOnIceShelf")==0) return ElementOnIceShelfEnum; 143 144 else if (strcmp(name,"ElementOnSurface")==0) return ElementOnSurfaceEnum; -
issm/trunk/src/m/classes/model/model.m
r9548 r9558 63 63 nodeonpattyn = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',1); 64 64 nodeonstokes = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',1); 65 borderstokes = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',3);66 65 67 66 %Stokes … … 205 204 output_frequency = modelfield('default',0,'marshall',true,'format','Integer'); 206 205 results_on_vertices = modelfield('default',0,'marshall',true,'format','Boolean'); 207 inputfilename = modelfield('default','','marshall',true,'format','String');208 206 outputfilename = modelfield('default','','marshall',true,'format','String'); 209 207 results = modelfield('default',struct(),'marshall',false); … … 260 258 part = modelfield('default',NaN,'marshall',true,'format','DoubleMat','mattype',2); 261 259 npart = modelfield('default',0,'marshall',true,'format','Integer'); 262 numberofvariables = modelfield('default',0,'marshall',true,'format','Integer');263 260 numberofresponses = modelfield('default',0,'marshall',true,'format','Integer'); 264 261 variabledescriptors = modelfield('default',{},'marshall',true,'format','StringArray'); -
issm/trunk/src/m/model/presolve.m
r9522 r9558 6 6 7 7 %deal with outputfilename and inputfilename 8 md.inputfilename=[md.name '.bin'];9 8 md.outputfilename=[md.name '.outbin']; 10 9
Note:
See TracChangeset
for help on using the changeset viewer.