Changeset 20500 for issm/trunk/src/c/classes/Materials/Matpar.cpp
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c/classes/Materials/Matpar.cpp
r19105 r20500 19 19 Matpar::Matpar(int matpar_mid, IoModel* iomodel){/*{{{*/ 20 20 21 rho_ice=0; 22 rho_water=0; 23 rho_freshwater=0; 24 mu_water=0; 25 heatcapacity=0; 26 thermalconductivity=0; 27 temperateiceconductivity=0; 28 latentheat=0; 29 beta=0; 30 meltingpoint=0; 31 referencetemperature=0; 32 mixed_layer_capacity=0; 33 thermal_exchange_velocity=0; 34 g=0; 35 omega=0; 36 desfac=0; 37 rlaps=0; 38 rlapslgm=0; 39 dpermil=0; 40 41 albedo_snow=0; 42 albedo_ice=0; 43 44 sediment_compressibility=0; 45 sediment_porosity=0; 46 sediment_thickness=0; 47 water_compressibility=0; 48 49 epl_compressibility=0; 50 epl_porosity=0; 51 epl_init_thickness=0; 52 epl_colapse_thickness=0; 53 epl_max_thickness=0; 54 epl_conductivity=0; 55 56 lithosphere_shear_modulus=0; 57 lithosphere_density=0; 58 mantle_shear_modulus=0; 59 mantle_density=0; 60 61 earth_density=0; 62 63 poisson=0; 64 young_modulus=0; 65 ridging_exponent=0; 66 cohesion=0; 67 internal_friction_coef=0; 68 compression_coef=0; 69 traction_coef=0; 70 time_relaxation_stress=0; 71 time_relaxation_damage=0; 72 21 73 bool isefficientlayer; 22 74 int hydrology_model,smb_model,materials_type; 23 75 iomodel->Constant(&hydrology_model,HydrologyModelEnum); 24 iomodel->Constant(&smb_model,S urfaceforcingsEnum);76 iomodel->Constant(&smb_model,SmbEnum); 25 77 iomodel->Constant(&materials_type,MaterialsEnum); 26 78 … … 46 98 47 99 switch(smb_model){ 48 case SMB Enum:100 case SMBforcingEnum: 49 101 /*Nothing to add*/ 50 102 break; 103 case SMBgembEnum: 104 iomodel->Constant(&this->albedo_ice,SmbAIceEnum); 105 iomodel->Constant(&this->albedo_snow,SmbASnowEnum); 106 break; 51 107 case SMBpddEnum: 52 iomodel->Constant(&this->desfac,SurfaceforcingsDesfacEnum); 53 iomodel->Constant(&this->s0p,SurfaceforcingsS0pEnum); 54 iomodel->Constant(&this->s0t,SurfaceforcingsS0tEnum); 55 iomodel->Constant(&this->rlaps,SurfaceforcingsRlapsEnum); 56 iomodel->Constant(&this->rlapslgm,SurfaceforcingsRlapslgmEnum); 57 break; 108 iomodel->Constant(&this->desfac,SmbDesfacEnum); 109 iomodel->Constant(&this->rlaps,SmbRlapsEnum); 110 iomodel->Constant(&this->rlapslgm,SmbRlapslgmEnum); 111 break; 112 case SMBd18opddEnum: 113 iomodel->Constant(&this->desfac,SmbDesfacEnum); 114 iomodel->Constant(&this->rlaps,SmbRlapsEnum); 115 iomodel->Constant(&this->rlapslgm,SmbRlapslgmEnum); 116 iomodel->Constant(&this->dpermil,SmbDpermilEnum); 58 117 case SMBgradientsEnum: 118 break; 59 119 /*Nothing to add*/ 60 120 break; … … 90 150 /*Nothing to add*/ 91 151 } 152 else if(hydrology_model==HydrologysommersEnum){ 153 /*Nothing to add*/ 154 } 92 155 else{ 93 156 _error_("Hydrology model "<<EnumToStringx(hydrology_model)<<" not supported yet"); … … 99 162 iomodel->Constant(&this->mantle_shear_modulus,MaterialsMantleShearModulusEnum); 100 163 iomodel->Constant(&this->mantle_density,MaterialsMantleDensityEnum); 164 165 /*slr:*/ 166 iomodel->Constant(&this->earth_density,MaterialsEarthDensityEnum); 167 101 168 break; 102 169 default: … … 130 197 _printf_(" g: " << g << "\n"); 131 198 _printf_(" desfac: " << desfac << "\n"); 132 _printf_(" s0p: " << s0p << "\n");133 _printf_(" s0t: " << s0t << "\n");134 199 _printf_(" rlaps: " << rlaps << "\n"); 135 200 _printf_(" rlapslgm: " << rlapslgm << "\n"); 201 _printf_(" dpermil: " << dpermil << "\n"); 136 202 return; 137 203 } … … 142 208 } 143 209 /*}}}*/ 144 int 145 /*}}}*/ 146 int Matpar::ObjectEnum(void){/*{{{*/210 int Matpar::Id(void){ return mid; }/*{{{*/ 211 /*}}}*/ 212 int Matpar::ObjectEnum(void){/*{{{*/ 147 213 148 214 return MatparEnum; … … 175 241 matpar->g=this->g; 176 242 matpar->desfac=this->desfac; 177 matpar->s0p=this->s0p;178 matpar->s0t=this->s0t;179 243 matpar->rlaps=this->rlaps; 180 244 matpar->rlapslgm=this->rlapslgm; 245 matpar->dpermil=this->dpermil; 181 246 182 247 matpar->sediment_compressibility=this->sediment_compressibility; … … 196 261 matpar->mantle_shear_modulus=this->mantle_shear_modulus; 197 262 matpar->mantle_density=this->mantle_density; 263 264 matpar->earth_density=this->earth_density; 198 265 199 266 return matpar; 267 } 268 /*}}}*/ 269 void Matpar::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 270 271 MARSHALLING_ENUM(MatparEnum); 272 273 MARSHALLING(mid); 274 MARSHALLING(rho_ice); 275 MARSHALLING(rho_water); 276 MARSHALLING(rho_freshwater); 277 MARSHALLING(mu_water); 278 MARSHALLING(heatcapacity); 279 MARSHALLING(thermalconductivity); 280 MARSHALLING(temperateiceconductivity); 281 MARSHALLING(latentheat); 282 MARSHALLING(beta); 283 MARSHALLING(meltingpoint); 284 MARSHALLING(referencetemperature); 285 MARSHALLING(mixed_layer_capacity); 286 MARSHALLING(thermal_exchange_velocity); 287 MARSHALLING(g); 288 MARSHALLING(omega); 289 MARSHALLING(desfac); 290 MARSHALLING(rlaps); 291 MARSHALLING(rlapslgm); 292 MARSHALLING(dpermil); 293 294 //hydrology Dual Porous Continuum: 295 MARSHALLING(sediment_compressibility); 296 MARSHALLING(sediment_porosity); 297 MARSHALLING(sediment_thickness); 298 MARSHALLING(water_compressibility); 299 300 MARSHALLING(epl_compressibility); 301 MARSHALLING(epl_porosity); 302 MARSHALLING(epl_init_thickness); 303 MARSHALLING(epl_colapse_thickness); 304 MARSHALLING(epl_max_thickness); 305 MARSHALLING(epl_conductivity); 306 307 //gia: 308 MARSHALLING(lithosphere_shear_modulus); 309 MARSHALLING(lithosphere_density); 310 MARSHALLING(mantle_shear_modulus); 311 MARSHALLING(mantle_density); 312 313 //slr: 314 MARSHALLING(earth_density); 315 316 //Sea ice: 317 MARSHALLING(poisson); 318 MARSHALLING(young_modulus); 319 MARSHALLING(ridging_exponent); 320 MARSHALLING(cohesion); 321 MARSHALLING(internal_friction_coef); 322 MARSHALLING(compression_coef); 323 MARSHALLING(traction_coef); 324 MARSHALLING(time_relaxation_stress); 325 MARSHALLING(time_relaxation_damage); 326 200 327 } 201 328 /*}}}*/ … … 259 386 this->g=constant; 260 387 break; 261 case S urfaceforcingsDesfacEnum:388 case SmbDesfacEnum: 262 389 this->desfac=constant; 263 390 break; 264 case SurfaceforcingsS0pEnum: 265 this->s0p=constant; 266 break; 267 case SurfaceforcingsS0tEnum: 268 this->s0t=constant; 269 break; 270 case SurfaceforcingsRlapsEnum: 391 case SmbRlapsEnum: 271 392 this->rlaps=constant; 272 393 break; 273 case S urfaceforcingsRlapslgmEnum:394 case SmbRlapslgmEnum: 274 395 this->rlapslgm=constant; 396 break; 397 case SmbDpermilEnum: 398 this->dpermil=constant; 275 399 break; 276 400 default: … … 395 519 case HydrologydcWaterCompressibilityEnum: return this->water_compressibility; 396 520 case ConstantsGEnum: return this->g; 397 case SurfaceforcingsDesfacEnum: return this->desfac; 398 case SurfaceforcingsS0pEnum: return this->s0p; 399 case SurfaceforcingsS0tEnum: return this->s0t; 400 case SurfaceforcingsRlapsEnum: return this->rlaps; 401 case SurfaceforcingsRlapslgmEnum: return this->rlapslgm; 521 case SmbDesfacEnum: return this->desfac; 522 case SmbRlapsEnum: return this->rlaps; 523 case SmbRlapslgmEnum: return this->rlapslgm; 524 case SmbDpermilEnum: return this->dpermil; 402 525 case MaterialsLithosphereShearModulusEnum: return this->lithosphere_shear_modulus; 403 526 case MaterialsLithosphereDensityEnum: return this->lithosphere_density; 404 527 case MaterialsMantleDensityEnum: return this->mantle_density; 405 528 case MaterialsMantleShearModulusEnum: return this->mantle_shear_modulus; 529 case MaterialsEarthDensityEnum: return this->earth_density; 406 530 default: _error_("Enum "<<EnumToStringx(enum_in)<<" not supported yet"); 407 531 }
Note:
See TracChangeset
for help on using the changeset viewer.