Changeset 16034
- Timestamp:
- 08/30/13 10:24:28 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r16033 r16034 4768 4768 for(i=0;i<numdof;i++) pe->values[i]+=scalar*basis[i]; 4769 4769 } 4770 else{ 4771 /*do nothing (water layer acts as insulation)*/ 4772 } 4770 else{ /*do nothing (water layer acts as insulation)*/ } 4773 4771 } 4774 4772 } … … 5308 5306 IssmDouble xyz_list[NUMVERTICES][3]; 5309 5307 IssmDouble xyz_list_tria[NUMVERTICES2D][3]; 5310 IssmDouble heatflux, geothermalflux_value,kappa;5308 IssmDouble heatflux,kappa; 5311 5309 IssmDouble vec_heatflux[3]; 5312 5310 IssmDouble normal_base[3], d1enthalpy[3]; 5313 IssmDouble basalmeltingrate[NUMVERTICES], watercolumn[NUMVERTICES] , meltingrate_enthalpy;5311 IssmDouble basalmeltingrate[NUMVERTICES], watercolumn[NUMVERTICES]; 5314 5312 IssmDouble enthalpy[NUMVERTICES], enthalpyup; 5315 IssmDouble pressure , pressureup;5313 IssmDouble pressure[NUMVERTICES], pressureup; 5316 5314 IssmDouble temperature, waterfraction; 5317 5315 IssmDouble latentheat, rho_ice; 5318 5316 IssmDouble basalfriction, alpha2; 5319 IssmDouble vx,vy,vz,dt,connectivity; 5317 IssmDouble vx[NUMVERTICES],vy[NUMVERTICES],vz[NUMVERTICES]; 5318 IssmDouble geothermalflux[NUMVERTICES]; 5319 IssmDouble dt,meltingrate_enthalpy; 5320 5320 Friction *friction = NULL; 5321 5321 … … 5330 5330 latentheat=matpar->GetLatentHeat(); 5331 5331 rho_ice=this->matpar->GetRhoIce(); 5332 Input* watercolumn_input=inputs->GetInput(WatercolumnEnum); _assert_(watercolumn_input); 5333 Input* basalmeltingrate_input=inputs->GetInput(BasalforcingsMeltingRateEnum); _assert_(basalmeltingrate_input); 5334 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input); 5335 Input* pressure_input=inputs->GetInput(PressureEnum); _assert_(pressure_input); 5336 Input* vx_input=inputs->GetInput(VxEnum); _assert_(vx_input); 5337 Input* vy_input=inputs->GetInput(VyEnum); _assert_(vy_input); 5338 Input* vz_input=inputs->GetInput(VzEnum); _assert_(vz_input); 5339 Input* geothermalflux_input=inputs->GetInput(BasalforcingsGeothermalfluxEnum); _assert_(geothermalflux_input); 5332 GetInputListOnVertices(&vx[0],VxEnum); 5333 GetInputListOnVertices(&vy[0],VyEnum); 5334 GetInputListOnVertices(&vz[0],VzEnum); 5335 GetInputListOnVertices(&enthalpy[0],EnthalpyEnum); 5336 GetInputListOnVertices(&pressure[0],PressureEnum); 5337 GetInputListOnVertices(&watercolumn[0],WatercolumnEnum); 5338 GetInputListOnVertices(&basalmeltingrate[0],BasalforcingsMeltingRateEnum); 5339 GetInputListOnVertices(&geothermalflux[0],BasalforcingsGeothermalfluxEnum); 5340 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input); 5340 5341 5341 5342 for(i=0;i<NUMVERTICES2D;i++) for(j=0;j<3;j++) xyz_list_tria[i][j]=xyz_list[i][j]; … … 5349 5350 GaussPenta* gaussup=new GaussPenta(); 5350 5351 for(int iv=0;iv<3;iv++){ 5352 5351 5353 gauss->GaussVertex(iv); 5352 5354 gaussup->GaussVertex(iv+3); 5353 5354 5355 checkpositivethickness=true; 5355 watercolumn_input->GetInputValue(&watercolumn[iv], gauss);5356 basalmeltingrate_input->GetInputValue(&basalmeltingrate[iv],gauss);5357 enthalpy_input->GetInputValue(&enthalpy[iv], gauss);5358 pressure_input->GetInputValue(&pressure, gauss);5359 5356 5360 5357 /*Calculate basal meltingrate after Fig.5 of A.Aschwanden 2012*/ 5361 5358 meltingrate_enthalpy=0.; 5362 if((watercolumn[iv]>0.) && (enthalpy[iv]<matpar->PureIceEnthalpy(pressure ))){5359 if((watercolumn[iv]>0.) && (enthalpy[iv]<matpar->PureIceEnthalpy(pressure[iv]))){ 5363 5360 /*ensure that no ice is at T<Tm(p), if water layer present*/ 5364 enthalpy[iv]=matpar->PureIceEnthalpy(pressure );5361 enthalpy[iv]=matpar->PureIceEnthalpy(pressure[iv]); 5365 5362 //meltingrate_enthalpy=0.; 5366 5363 } 5367 else if(enthalpy[iv]<matpar->PureIceEnthalpy(pressure )){5364 else if(enthalpy[iv]<matpar->PureIceEnthalpy(pressure[iv])){ 5368 5365 /*cold base: set q*n=q_geo*n+frictionheating as Neumann BC in Penta::CreatePVectorEnthalpySheet*/ 5369 5366 meltingrate_enthalpy=0.; … … 5375 5372 /*ok, from here on all basal ice is temperate. Check for positive thickness of layer of temperate ice. */ 5376 5373 istemperatelayer=false; 5377 enthalpy_input->GetInputValue(&enthalpyup, gaussup); 5378 pressure_input->GetInputValue(&pressureup, gaussup); 5379 if(enthalpyup>=matpar->PureIceEnthalpy(pressureup)) istemperatelayer=true; 5374 if(enthalpy[iv+3]>=matpar->PureIceEnthalpy(pressure[iv+3])) istemperatelayer=true; 5380 5375 if(istemperatelayer) for(i=0;i<3;i++) vec_heatflux[i]=0.; 5381 5376 else{ 5382 5377 enthalpy_input->GetInputDerivativeValue(&d1enthalpy[0],&xyz_list[0][0],gauss); 5383 kappa=matpar->GetEnthalpyDiffusionParameter(enthalpy[iv],pressure );5378 kappa=matpar->GetEnthalpyDiffusionParameter(enthalpy[iv],pressure[iv]); 5384 5379 for(i=0;i<3;i++) vec_heatflux[i]=-kappa*d1enthalpy[i]; 5385 5380 } … … 5389 5384 heatflux=0.; 5390 5385 for(i=0;i<3;i++) heatflux+=(vec_heatflux[i])*normal_base[i]; 5391 geothermalflux_input->GetInputValue(&geothermalflux_value,gauss);5392 5386 5393 5387 /*basal friction*/ 5394 5388 friction->GetAlpha2(&alpha2,gauss,VxEnum,VyEnum,VzEnum); 5395 vx_input->GetInputValue(&vx,gauss); 5396 vy_input->GetInputValue(&vy,gauss); 5397 vz_input->GetInputValue(&vz,gauss); 5398 basalfriction=alpha2*(pow(vx,2.0)+pow(vy,2.0)+pow(vz,2.0)); 5399 5400 matpar->EnthalpyToThermal(&temperature, &waterfraction, enthalpy[iv],pressure); 5401 meltingrate_enthalpy=(basalfriction-(heatflux-geothermalflux_value))/((1-waterfraction)*latentheat*rho_ice); // m/yr water equivalent 5389 basalfriction=alpha2*(pow(vx[iv],2.0)+pow(vy[iv],2.0)+pow(vz[iv],2.0)); 5390 5391 matpar->EnthalpyToThermal(&temperature, &waterfraction, enthalpy[iv],pressure[iv]); 5392 meltingrate_enthalpy=(basalfriction-(heatflux-geothermalflux[iv]))/((1-waterfraction)*latentheat*rho_ice); // m/yr water equivalent 5402 5393 } 5403 5394 5404 5395 /*Update water column, basal meltingrate*/ 5405 connectivity=IssmDouble(vertices[iv]->Connectivity());5406 meltingrate_enthalpy/=connectivity; // divide meltingrate_enthalpy by connectivity to address multiple iterations over vertex5407 5396 basalmeltingrate[iv]+=meltingrate_enthalpy; 5408 5397 this->parameters->FindParam(&dt,TimesteppingTimeStepEnum); … … 5431 5420 IssmDouble enthalpy[NUMVERTICES], pressure[NUMVERTICES]; 5432 5421 IssmDouble latentheat, dt; 5433 IssmDouble connectivity;5434 5422 GaussPenta* gauss; 5435 5423 5436 Input* watercolumn_input=inputs->GetInput(WatercolumnEnum); 5437 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); 5438 Input* pressure_input=inputs->GetInput(PressureEnum); 5424 Input* watercolumn_input=inputs->GetInput(WatercolumnEnum); _assert_(watercolumn_input); 5425 Input* enthalpy_input=inputs->GetInput(EnthalpyEnum); _assert_(enthalpy_input); 5426 Input* pressure_input=inputs->GetInput(PressureEnum); _assert_(pressure_input); 5439 5427 5440 5428 /*Check wether enthalpy is activated*/ … … 5453 5441 5454 5442 /*drain water fraction & update enthalpy*/ 5455 // TODO: replace connectivity-wise draining by draining once per node per timestep 5456 connectivity=IssmDouble(vertices[iv]->Connectivity()); 5457 waterfraction[iv]-=DrainageFunctionWaterfraction(waterfraction[iv], dt)/connectivity; 5443 waterfraction[iv]-=DrainageFunctionWaterfraction(waterfraction[iv], dt); 5458 5444 matpar->ThermalToEnthalpy(&enthalpy[iv], temperature[iv], waterfraction[iv], pressure[iv]); 5459 5445 }
Note:
See TracChangeset
for help on using the changeset viewer.