Changeset 21145
- Timestamp:
- 08/17/16 09:52:54 (9 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologySommersAnalysis.cpp
r20690 r21145 8 8 #define OMEGA 0.001 // parameter controlling transition to nonlinear resistance in basal system (dimensionless) 9 9 #define NU 1.787e-6 //kinematic water viscosity m^2/s 10 #define CT 7.5e-8 // Clapeyron slope (K/Pa) 11 #define CW 4.22e3 // specific heat capacity of water (J/kg/K) 10 12 11 13 /*Model processing*/ … … 176 178 /*Get conductivity from inputs*/ 177 179 IssmDouble conductivity = GetConductivity(element); 180 //if(element->Id()==1){ 181 // printf("Conductivity at CreateKMatrix: %g \n",conductivity); 182 //} 178 183 179 184 /* Start looping on the number of gaussian points: */ … … 208 213 IssmDouble lr,br,vx,vy,beta; 209 214 IssmDouble alpha2,frictionheat; 215 IssmDouble PMPheat,dpressure_water[2],dbed[2]; 210 216 IssmDouble* xyz_list = NULL; 211 217 … … 238 244 /*Get conductivity from inputs*/ 239 245 IssmDouble conductivity = GetConductivity(element); 246 //if(element->Id()==1){ 247 // printf("Conductivity in CreatePVector: %g \n",conductivity); 248 //} 240 249 241 250 /*Build friction element, needed later: */ … … 251 260 geothermalflux_input->GetInputValue(&G,gauss); 252 261 base_input->GetInputValue(&bed,gauss); 262 base_input->GetInputDerivativeValue(&dbed[0],xyz_list,gauss); 253 263 thickness_input->GetInputValue(&thickness,gauss); 254 264 gap_input->GetInputValue(&gap,gauss); … … 283 293 if(pressure_water>pressure_ice) pressure_water = pressure_ice; 284 294 285 meltrate = 1/latentheat*(G+frictionheat+rho_water*g*conductivity*(dh[0]*dh[0]+dh[1]*dh[1])); 295 /*Compute change in sensible heat due to changes in pressure melting point*/ 296 dpressure_water[0] = rho_water*g*(dh[0] - dbed[0]); 297 dpressure_water[1] = rho_water*g*(dh[1] - dbed[1]); 298 PMPheat=-CT*CW*conductivity*(dh[0]*dpressure_water[0]+dh[1]*dpressure_water[1]); 299 300 meltrate = 1/latentheat*(G+frictionheat+rho_water*g*conductivity*(dh[0]*dh[0]+dh[1]*dh[1])-PMPheat); 286 301 _assert_(meltrate>0.); 287 302 288 303 for(int i=0;i<numnodes;i++) pe->values[i]+=Jdet*gauss->weight* 289 304 ( … … 315 330 IssmDouble* xyz_list = NULL; 316 331 332 /*Get gravity from parameters*/ 333 IssmDouble g = element->GetMaterialParameter(ConstantsGEnum); 334 317 335 /*Fetch number of nodes for this finite element*/ 318 336 int numnodes = element->GetNumberOfNodes(); … … 323 341 324 342 /*Get thickness and base on nodes to apply cap on water head*/ 343 IssmDouble* eff_pressure = xNew<IssmDouble>(numnodes); 325 344 IssmDouble* thickness = xNew<IssmDouble>(numnodes); 326 345 IssmDouble* bed = xNew<IssmDouble>(numnodes); … … 344 363 } 345 364 365 /*Calculate effective pressure*/ 366 eff_pressure[i] = rho_ice*g*thickness[i] - rho_water*g*(values[i]-bed[i]); 367 346 368 if(xIsNan<IssmDouble>(values[i])) _error_("NaN found in solution vector"); 347 369 if(xIsInf<IssmDouble>(values[i])) _error_("Inf found in solution vector"); … … 350 372 /*Add input to the element: */ 351 373 element->AddInput(HydrologyHeadEnum,values,element->GetElementType()); 374 element->AddInput(EffectivePressureEnum,eff_pressure,P1Enum); 352 375 353 376 /*Update reynolds number according to new solution*/ … … 356 379 head_input->GetInputDerivativeAverageValue(&dh[0],xyz_list); 357 380 IssmDouble conductivity = GetConductivity(element); 381 //if(element->Id()==1){ 382 // printf("Conductivity in UpdateInputFromSolution: %g \n",conductivity); 383 //} 384 358 385 IssmDouble reynolds = conductivity*sqrt(dh[0]*dh[0]+dh[1]*dh[1])/(2.*NU); 359 386 element->AddInput(HydrologyReynoldsEnum,&reynolds,P0Enum); … … 365 392 xDelete<IssmDouble>(xyz_list); 366 393 xDelete<int>(doflist); 394 xDelete<IssmDouble>(eff_pressure); 367 395 }/*}}}*/ 368 396 void HydrologySommersAnalysis::UpdateConstraints(FemModel* femmodel){/*{{{*/ … … 385 413 reynolds_input->GetInputAverage(&reynolds); 386 414 gap_input->GetInputAverage(&gap); 387 415 388 416 /*Compute conductivity*/ 389 417 IssmDouble conductivity = pow(gap,3)*g/(12.*NU*(1+OMEGA*reynolds)); … … 414 442 IssmDouble alpha2,frictionheat; 415 443 IssmDouble* xyz_list = NULL; 416 444 IssmDouble dpressure_water[2],dbed[2],PMPheat; 417 445 418 446 /*Retrieve all inputs and parameters*/ … … 438 466 /*Get conductivity from inputs*/ 439 467 IssmDouble conductivity = GetConductivity(element); 440 468 //if(element->Id()==1){ 469 // printf("Conductivity at gap update: %g \n",conductivity); 470 //} 441 471 /*Build friction element, needed later: */ 442 472 Friction* friction=new Friction(element,2); … … 454 484 geothermalflux_input->GetInputValue(&G,gauss); 455 485 base_input->GetInputValue(&bed,gauss); 486 base_input->GetInputDerivativeValue(&dbed[0],xyz_list,gauss); 456 487 thickness_input->GetInputValue(&thickness,gauss); 457 488 gap_input->GetInputValue(&gap,gauss); … … 486 517 if(pressure_water>pressure_ice) pressure_water = pressure_ice; 487 518 488 489 meltrate = 1/latentheat*(G+frictionheat+rho_water*g*conductivity*(dh[0]*dh[0]+dh[1]*dh[1])); 519 /* Compute change in sensible heat due to changes in pressure melting point*/ 520 dpressure_water[0] = rho_water*g*(dh[0] - dbed[0]); 521 dpressure_water[1] = rho_water*g*(dh[1] - dbed[1]); 522 PMPheat=-CT*CW*conductivity*(dh[0]*dpressure_water[0]+dh[1]*dpressure_water[1]); 523 524 meltrate = 1/latentheat*(G+frictionheat+rho_water*g*conductivity*(dh[0]*dh[0]+dh[1]*dh[1])-PMPheat); 490 525 _assert_(meltrate>0.); 491 526 -
issm/trunk-jpl/src/c/cores/hydrology_core.cpp
r19749 r21145 88 88 if(save_results){ 89 89 if(VerboseSolution()) _printf0_(" saving results \n"); 90 int outputs[ 2] = {HydrologyHeadEnum,HydrologyGapHeightEnum};91 femmodel->RequestedOutputsx(&femmodel->results,&outputs[0], 2);90 int outputs[3] = {HydrologyHeadEnum,HydrologyGapHeightEnum,EffectivePressureEnum}; 91 femmodel->RequestedOutputsx(&femmodel->results,&outputs[0],3); 92 92 93 93 /*unload results*/
Note:
See TracChangeset
for help on using the changeset viewer.