Changeset 25697
- Timestamp:
- 10/20/20 11:43:06 (4 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyGlaDSAnalysis.cpp
r25540 r25697 129 129 iomodel->FetchDataToInput(inputs,elements,"md.geometry.base",BaseEnum); 130 130 iomodel->FetchDataToInput(inputs,elements,"md.geometry.bed",BedEnum); 131 iomodel->FetchDataToInput(inputs,elements,"md.solidearth.sealevel",SealevelEnum,0); /*Needed for friction*/ 131 132 iomodel->FetchDataToInput(inputs,elements,"md.basalforcings.geothermalflux",BasalforcingsGeothermalfluxEnum); 132 133 iomodel->FetchDataToInput(inputs,elements,"md.basalforcings.groundedice_melting_rate",BasalforcingsGroundediceMeltingRateEnum); -
issm/trunk-jpl/src/c/classes/Loads/Moulin.cpp
r25683 r25697 6 6 /*{{{*/ 7 7 #ifdef HAVE_CONFIG_H 8 8 #include <config.h> 9 9 #else 10 10 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" … … 367 367 368 368 /*Load vector*/ 369 Ke->values[0] = +Am/(rho_water*g)/dt; 369 if(dt>0){ 370 Ke->values[0] = +Am/(rho_water*g)/dt; 371 } 370 372 371 373 /*Clean up and return*/ … … 393 395 element->GetInputValue(&moulin_load,node,HydrologyMoulinInputEnum); 394 396 395 pe->values[0] = moulin_load +Am/(rho_water*g) * phi_old/dt; 397 pe->values[0] = moulin_load; 398 if(dt>0.){ 399 pe->values[0] += Am/(rho_water*g) * phi_old/dt; 400 } 396 401 397 402 /*Clean up and return*/ … … 447 452 /*Clean up and return*/ 448 453 return pe; 449 454 } 450 455 /*}}}*/ 451 456 ElementVector* Moulin::CreatePVectorHydrologyDCEfficient(void){/*{{{*/
Note:
See TracChangeset
for help on using the changeset viewer.