Changeset 24750
- Timestamp:
- 04/27/20 17:20:42 (5 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r24733 r24750 1084 1084 else this->hnodes = NULL; 1085 1085 this->hvertices->configure(verticesin); 1086 this->hmaterial->configure(materialsin);1086 if(this->hmaterial) this->hmaterial->configure(materialsin); 1087 1087 1088 1088 /*Now, go pick up the objects inside the hooks: */ … … 1090 1090 else this->nodes=NULL; 1091 1091 this->vertices = (Vertex**)this->hvertices->deliverp(); 1092 this->material = (Material*)this->hmaterial->delivers();1092 if(this->hmaterial)this->material = (Material*)this->hmaterial->delivers(); 1093 1093 1094 1094 /*point parameters to real dataset: */ -
issm/trunk-jpl/src/c/classes/IoModel.cpp
r24579 r24750 644 644 if(strcmp(record_name,"md.hydrology.model")==0) integer = IoCodeToEnumHydrology(integer); 645 645 if(strcmp(record_name,"md.materials.type")==0) integer = IoCodeToEnumMaterials(integer); 646 if(strcmp(record_name,"md.materials.nature")==0) integer = IoCodeToEnumNature(integer); 646 647 if(strcmp(record_name,"md.timestepping.type")==0) integer = IoCodeToEnumTimestepping(integer); 647 648 if(strcmp(record_name,"md.amr.type")==0) integer = IoCodeToEnumAmr(integer); -
issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateElementsVerticesAndMaterials.cpp
r24335 r24750 171 171 //make sure materials that are not tied to elements come last: for now, only Matlitho qualifies. 172 172 for(int i=0;i<nnat;i++){ 173 if (IoCodeToEnum Materials(nature[i])==MatlithoEnum){173 if (IoCodeToEnumNature(nature[i])==MatlithoEnum){ 174 174 int temp=nature[nnat-1]; 175 175 nature[nnat-1]=nature[i]; … … 180 180 //go through list of materials, and create them: 181 181 for(int i=0;i<nnat;i++){ 182 switch(IoCodeToEnum Materials(nature[i])){ //{{{182 switch(IoCodeToEnumNature(nature[i])){ //{{{ 183 183 case MaticeEnum: 184 184 iomodel->FetchDataToInput(inputs2,elements,"md.materials.rheology_B",MaterialsRheologyBEnum); … … 199 199 materials->AddObject(new Matlitho(materials->Size()+1,iomodel)); 200 200 iomodel->DeleteData(9,"md.materials.radius","md.materials.viscosity","md.materials.lame_lambda","md.materials.lame_mu","md.materials.burgers_viscosity","md.materials.burgers_mu","md.materials.isburgers","md.materials.issolid","md.materials.density"); 201 break; 202 203 case MathydroEnum: 204 { 205 /*If we don't have any materials pointed to by elements (meaning, if we are running only litho or hydro), 206 * then we need to zero out the hmaterial pointers inside the elements dataset so that it won't error out 207 * during configuration: */ 208 bool isice=false; 209 for (int j=0;j<nnat;j++){ 210 if((IoCodeToEnumNature(nature[i])==MaticeEnum)|| 211 (IoCodeToEnumNature(nature[i])==MatenhancediceEnum)|| 212 (IoCodeToEnumNature(nature[i])==MatestarEnum)|| 213 (IoCodeToEnumNature(nature[i])==MatdamageiceEnum)){ 214 isice=true; break; } 215 } 216 if (!isice){ 217 /*go through elements, and zero the hmaterials pointers: */ 218 for(int j=0;j<elements->Size();j++){ 219 Element* element=xDynamicCast<Element*>(elements->GetObjectByOffset(j)); 220 switch(element->ObjectEnum()){ 221 case TriaEnum: 222 { 223 Tria* tria= xDynamicCast<Tria*>(element); 224 tria->hmaterial=NULL; 225 } 226 break; 227 default: 228 _error_("Not implemented yet"); 229 } 230 } 231 } 232 } 201 233 break; 202 234 … … 252 284 253 285 default: 254 _error_("Materials "<<EnumToStringx(IoCodeToEnumMaterials(nature[i]))<<" not supported");286 _error_("Materials nature type "<<EnumToStringx(IoCodeToEnumNature(nature[i]))<<" not supported"); 255 287 256 288 } //}}} -
issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateParameters.cpp
r24531 r24750 341 341 iomodel->FetchData(&nature,&nnat,&dummy,"md.materials.nature"); 342 342 for(int i=0;i<nnat;i++){ 343 switch(IoCodeToEnum Materials(nature[i])){343 switch(IoCodeToEnumNature(nature[i])){ 344 344 case MatlithoEnum: 345 345 break; … … 374 374 parameters->AddObject(iomodel->CopyConstantObject("md.materials.earth_density",MaterialsEarthDensityEnum)); 375 375 break; 376 case MathydroEnum: 377 parameters->AddObject(iomodel->CopyConstantObject("md.materials.rho_ice",MaterialsRhoIceEnum)); 378 parameters->AddObject(iomodel->CopyConstantObject("md.materials.rho_water",MaterialsRhoSeawaterEnum)); 379 parameters->AddObject(iomodel->CopyConstantObject("md.materials.earth_density",MaterialsEarthDensityEnum)); 380 break; 376 381 } 377 382 } -
issm/trunk-jpl/src/c/shared/Enum/Enum.vim
r24735 r24750 1150 1150 syn keyword cConstant MaticeEnum 1151 1151 syn keyword cConstant MatlithoEnum 1152 syn keyword cConstant MathydroEnum 1152 1153 syn keyword cConstant MatrixParamEnum 1153 1154 syn keyword cConstant MaxAbsVxEnum -
issm/trunk-jpl/src/c/shared/Enum/EnumDefinitions.h
r24735 r24750 1150 1150 MaticeEnum, 1151 1151 MatlithoEnum, 1152 MathydroEnum, 1152 1153 MatrixParamEnum, 1153 1154 MaxAbsVxEnum, -
issm/trunk-jpl/src/c/shared/Enum/EnumToStringx.cpp
r24735 r24750 1152 1152 case MaticeEnum : return "Matice"; 1153 1153 case MatlithoEnum : return "Matlitho"; 1154 case MathydroEnum : return "Mathydro"; 1154 1155 case MatrixParamEnum : return "MatrixParam"; 1155 1156 case MaxAbsVxEnum : return "MaxAbsVx"; -
issm/trunk-jpl/src/c/shared/Enum/StringToEnumx.cpp
r24735 r24750 1179 1179 else if (strcmp(name,"Matice")==0) return MaticeEnum; 1180 1180 else if (strcmp(name,"Matlitho")==0) return MatlithoEnum; 1181 else if (strcmp(name,"Mathydro")==0) return MathydroEnum; 1181 1182 else if (strcmp(name,"MatrixParam")==0) return MatrixParamEnum; 1182 1183 else if (strcmp(name,"MaxAbsVx")==0) return MaxAbsVxEnum; … … 1243 1244 else if (strcmp(name,"ProfilingCurrentFlops")==0) return ProfilingCurrentFlopsEnum; 1244 1245 else if (strcmp(name,"ProfilingCurrentMem")==0) return ProfilingCurrentMemEnum; 1245 else if (strcmp(name,"ProfilingSolutionTime")==0) return ProfilingSolutionTimeEnum;1246 1246 else stage=11; 1247 1247 } 1248 1248 if(stage==11){ 1249 if (strcmp(name,"Regionaloutput")==0) return RegionaloutputEnum; 1249 if (strcmp(name,"ProfilingSolutionTime")==0) return ProfilingSolutionTimeEnum; 1250 else if (strcmp(name,"Regionaloutput")==0) return RegionaloutputEnum; 1250 1251 else if (strcmp(name,"Regular")==0) return RegularEnum; 1251 1252 else if (strcmp(name,"RecoveryAnalysis")==0) return RecoveryAnalysisEnum; -
issm/trunk-jpl/src/c/shared/io/Marshalling/IoCodeConversions.cpp
r24469 r24750 262 262 case 3: return MaticeEnum; 263 263 case 4: return MatenhancediceEnum; 264 case 5: return MatlithoEnum; 265 case 6: return MaterialsEnum; 264 case 5: return MaterialsEnum; 266 265 default: _error_("Marshalled materials code \""<<enum_in<<"\" not supported yet"); 266 } 267 }/*}}}*/ 268 int 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"); 267 278 } 268 279 }/*}}}*/ -
issm/trunk-jpl/src/c/shared/io/Marshalling/IoCodeConversions.h
r23657 r24750 10 10 int IoCodeToEnumHydrology(int enum_in); 11 11 int IoCodeToEnumMaterials(int enum_in); 12 int IoCodeToEnumNature(int enum_in); 12 13 int IoCodeToEnumTimestepping(int enum_in); 13 14 int IoCodeToEnumAmr(int enum_in); -
issm/trunk-jpl/src/m/classes/materials.m
r24060 r24750 19 19 %check this is acceptable: 20 20 for i=1:length(self.nature), 21 if ~(strcmpi(self.nature{i},'litho') | strcmpi(self.nature{i},'ice') ),22 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' )');21 if ~(strcmpi(self.nature{i},'litho') | strcmpi(self.nature{i},'ice') | strcmpi(self.nature{i},'hydro')), 22 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 23 23 end 24 24 end … … 55 55 self.addprop('density'); 56 56 self.addprop('issolid'); 57 otherwise 58 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 57 case 'hydro' 58 self.addprop('rho_ice'); 59 self.addprop('rho_water'); 60 self.addprop('earth_density'); 61 otherwise 62 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 59 63 end 60 64 end … … 126 130 self.issolid=[1;1]; % is layer solid or liquid. 127 131 128 otherwise 129 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 132 case 'hydro' 133 %ice density (kg/m^3) 134 self.rho_ice=917.; 135 136 %ocean water density (kg/m^3) 137 self.rho_water=1023.; 138 %SLR 139 self.earth_density= 5512; % average density of the Earth, (kg/m^3) 140 141 otherwise 142 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 130 143 end 131 144 end … … 166 179 fielddisplay(self,'density','array describing each layer''s density (numlayers) [kg/m^3]'); 167 180 fielddisplay(self,'issolid','array describing whether the layer is solid or liquid (default 1) (numlayers)'); 168 otherwise 169 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 181 case 'hydro' 182 disp(sprintf(' \nHydro:')); 183 fielddisplay(self,'rho_ice','ice density [kg/m^3]'); 184 fielddisplay(self,'rho_water','ocean water density [kg/m^3]'); 185 fielddisplay(self,'earth_density','Mantle density [kg/m^-3]'); 186 187 otherwise 188 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 170 189 end 171 190 end … … 209 228 error(['Fluid layers detected at layers #', num2str(ind'), ', but having 2 or more adjacent fluid layers is not supported yet. Consider merging them.']) 210 229 end 211 otherwise 212 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 230 231 case 'hydro' 232 md = checkfield(md,'fieldname','materials.rho_ice','>',0); 233 md = checkfield(md,'fieldname','materials.rho_water','>',0); 234 md = checkfield(md,'fieldname','materials.earth_density','>',0,'numel',1); 235 236 otherwise 237 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 213 238 end 214 239 end … … 218 243 219 244 %1: MatdamageiceEnum 2: MatestarEnum 3: MaticeEnum 4: MatenhancediceEnum 5: MaterialsEnum 220 WriteData(fid,prefix,'name','md.materials.type','data',6,'format','Integer');221 245 WriteData(fid,prefix,'name','md.materials.nature','data',naturetointeger(self.nature),'format','IntMat','mattype',3); 246 WriteData(fid,prefix,'name','md.materials.type','data',5,'format','Integer'); %DANGER, this can evolve if you have classes. 222 247 223 248 for i=1:length(self.nature), … … 251 276 WriteData(fid,prefix,'object',self,'class','materials','fieldname','burgers_viscosity','format','DoubleMat','mattype',3); 252 277 WriteData(fid,prefix,'object',self,'class','materials','fieldname','burgers_mu','format','DoubleMat','mattype',3); 253 otherwise 254 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 278 case 'hydro' 279 WriteData(fid,prefix,'object',self,'class','materials','fieldname','rho_ice','format','Double'); 280 WriteData(fid,prefix,'object',self,'class','materials','fieldname','rho_water','format','Double'); 281 WriteData(fid,prefix,'object',self,'class','materials','fieldname','earth_density','format','Double'); 282 283 otherwise 284 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 255 285 end 256 286 end … … 299 329 writejsdouble(fid,[modelname '.materials.burgers_viscosity'],self.burgers_viscosity); 300 330 writejsdouble(fid,[modelname '.materials.burgers_mu'],self.burgers_mu); 301 otherwise 302 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 331 332 case 'hydro' 333 writejsdouble(fid,[modelname '.materials.rho_ice'],self.rho_ice); 334 writejsdouble(fid,[modelname '.materials.rho_water'],self.rho_water); 335 writejsdouble(fid,[modelname '.materials.earth_density'],self.earth_density); 336 337 otherwise 338 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 303 339 end 304 340 end … … 313 349 for i=1:length(strnat), 314 350 switch strnat{i}, 315 case 'damageice'351 case 'damageice' 316 352 intnat(i)=1; 317 353 case 'estar' … … 321 357 case 'enhancedice' 322 358 intnat(i)=4; 323 case 'litho' 324 intnat(i)=5; 325 otherwise 326 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'')'); 327 end 328 end 329 end % }}} 359 %case 'materials' %this case will never happen, kept to ensure equivalent of codes between IoCodeToMaterialsEnumm and IoCodeToNatureEnum 360 % intnat(i)=5; 361 case 'litho' 362 intnat(i)=6; 363 case 'hydro' 364 intnat(i)=7; 365 otherwise 366 error('materials constructor error message: nature of the material not supported yet! (''ice'' or ''litho'' or ''hydro'')'); 367 end 368 end 369 end % }}} -
issm/trunk-jpl/test/NightlyRun/test2002.m
r24482 r24750 54 54 md.slr.ocean_area_scaling=0; 55 55 56 %geometry 57 di=md.materials.rho_ice/md.materials.rho_water; 58 md.geometry.thickness=ones(md.mesh.numberofvertices,1); 59 md.geometry.surface=(1-di)*zeros(md.mesh.numberofvertices,1); 60 md.geometry.base=md.geometry.surface-md.geometry.thickness; 61 md.geometry.bed=md.geometry.base; 56 %Geometry for the bed, arbitrary: 57 md.geometry.bed=-ones(md.mesh.numberofvertices,1); 62 58 63 %materials 64 md.initialization.temperature=273.25*ones(md.mesh.numberofvertices,1); 65 md.materials.rheology_B=paterson(md.initialization.temperature); 66 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 59 %Materials: 60 md.materials=materials('hydro'); 67 61 68 62 %New stuff
Note:
See TracChangeset
for help on using the changeset viewer.