source: issm/trunk/src/c/modules/PostprocessingEnthalpyx/PostprocessingEnthalpyx.cpp@ 16560

Last change on this file since 16560 was 16560, checked in by Mathieu Morlighem, 11 years ago

merged trunk-jpl and trunk for revision 16554

File size: 998 bytes
RevLine 
[16027]1/*!\file PostprocessingEnthalpyx.cpp
2 * \brief: execute processing of variables after computation: water drainage, subglacial melting rates, update of thermal BCs
3 */
4
5#include "./PostprocessingEnthalpyx.h"
6#include "../../shared/shared.h"
7#include "../../toolkits/toolkits.h"
8
9void PostprocessingEnthalpyx(FemModel* femmodel){
10 /*Intermediary*/
11 int i;
12 Element* element=NULL;
[16560]13
14 /*Compute basal melting rates: */
[16032]15 for (i=0;i<femmodel->elements->Size();i++){
16 element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i));
[16560]17 element->ComputeBasalMeltingrate();
[16027]18 }
19
[16560]20 /*drain excess water fraction: */
21 /*for (i=0;i<femmodel->elements->Size();i++){
[16032]22 element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i));
[16560]23 element->DrainWaterfraction();
[16027]24 }
[16560]25 */
[16027]26
[16032]27 /*Update basal dirichlet BCs for enthalpy: */
28 for (i=0;i<femmodel->elements->Size();i++){
29 element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i));
[16560]30 element->UpdateBasalConstraintsEnthalpy();
[16027]31 }
32}
Note: See TracBrowser for help on using the repository browser.