Changeset 17166
- Timestamp:
- 01/24/14 11:41:17 (11 years ago)
- Location:
- issm/trunk-jpl/src/c/analyses
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.cpp
r17157 r17166 821 821 822 822 /*Modules*/ 823 /*{{{*/824 void EnthalpyAnalysis::PostProcessing(FemModel* femmodel){ 823 void EnthalpyAnalysis::PostProcessing(FemModel* femmodel){/*{{{*/ 824 825 825 /*Intermediaries*/ 826 int solution_type; 827 828 /*Compute basal melting rates: */ 829 for(int i=0;i<femmodel->elements->Size();i++){ 830 Element* element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i)); 831 ComputeBasalMeltingrate(element); 832 } 833 834 /*Update basal dirichlet BCs for enthalpy in transient runs: */ 835 femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum); 836 if(solution_type==TransientSolutionEnum){ 837 for(int i=0;i<femmodel->elements->Size();i++){ 826 int solution_type, i; 827 bool computebasalmeltingrates=true; 828 bool isdrainage=true; 829 bool updatebasalconstraints=true; 830 831 if(isdrainage){ 832 /*Drain excess water fraction in ice column: */ 833 for(i=0;i<femmodel->elements->Size();i++){ 838 834 Element* element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i)); 839 UpdateBasalConstraints(element); 840 } 841 } 842 }/*}}}*/ 843 835 DrainWaterfractionIcecolumn(element); 836 } 837 } 838 839 if(computebasalmeltingrates){ 840 /*Compute basal melting rates: */ 841 for(i=0;i<femmodel->elements->Size();i++){ 842 Element* element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i)); 843 ComputeBasalMeltingrate(element); 844 } 845 } 846 847 if(updatebasalconstraints){ 848 /*Update basal dirichlet BCs for enthalpy in transient runs: */ 849 femmodel->parameters->FindParam(&solution_type,SolutionTypeEnum); 850 if(solution_type==TransientSolutionEnum){ 851 for(i=0;i<femmodel->elements->Size();i++){ 852 Element* element=dynamic_cast<Element*>(femmodel->elements->GetObjectByOffset(i)); 853 UpdateBasalConstraints(element); 854 } 855 } 856 } 857 }/*}}}*/ 844 858 void EnthalpyAnalysis::ComputeBasalMeltingrate(Element* element){/*{{{*/ 845 859 /*Calculate the basal melt rates of the enthalpy model after Aschwanden 2012*/ … … 946 960 } 947 961 } 948 949 /******** DRAINAGE *****************************************/950 IssmDouble* drainrate_column = xNew<IssmDouble>(numsegments);951 IssmDouble* drainrate_element = xNew<IssmDouble>(numsegments);952 for(is=0;is<numsegments;is++) drainrate_column[is]=0.;953 Element* elementi = element;954 for(;;){955 for(is=0;is<numsegments;is++) drainrate_element[is]=0.;956 DrainWaterfraction(elementi,drainrate_element); // TODO: make sure every vertex is only drained once957 for(is=0;is<numsegments;is++) drainrate_column[is]+=drainrate_element[is];958 959 if(elementi->IsOnSurface()) break;960 elementi=elementi->GetUpperElement();961 }962 /* add drained water to melting rate*/963 for(is=0;is<numsegments;is++) meltingrate_enthalpy[is]+=drainrate_column[is];964 965 962 /******** UPDATE MELTINGRATES AND WATERCOLUMN **************/ 966 963 element->FindParam(&dt,TimesteppingTimeStepEnum); … … 970 967 if(dt!=0.){ 971 968 if(watercolumn[vertexdown]+meltingrate_enthalpy[is]*dt<0.){ // prevent too much freeze on 972 melting_overshoot=watercolumn[vertexdown]+meltingrate_enthalpy[is]*dt; 973 lambda=melting_overshoot/(meltingrate_enthalpy[is]*dt); _assert_(lambda>0); _assert_(lambda<1); 974 basalmeltingrate[vertexdown]=(1.-lambda)*meltingrate_enthalpy[is]; 969 lambda = -watercolumn[vertexdown]/(dt*meltingrate_enthalpy[is]); _assert_(lambda>=0.); _assert_(lambda<1.); 975 970 watercolumn[vertexdown]=0.; 976 yts=365.*24.*60.*60.;977 enthalpy[vertexdown]+= dt/yts*lambda*heating[is];971 basalmeltingrate[vertexdown]=lambda*meltingrate_enthalpy[is]; // restrict freeze on only to size of watercolumn 972 enthalpy[vertexdown]+=(1.-lambda)*meltingrate_enthalpy[is]*dt*latentheat; // use rest of energy to cool down base 978 973 } 979 974 else{ … … 1004 999 xDelete<IssmDouble>(meltingrate_enthalpy); 1005 1000 xDelete<IssmDouble>(heating); 1001 xDelete<IssmDouble>(xyz_list); 1002 }/*}}}*/ 1003 void EnthalpyAnalysis::DrainWaterfractionIcecolumn(Element* element){/*{{{*/ 1004 1005 /* Only drain waterfraction of ice column from element at base*/ 1006 if(!element->IsOnBed()) return; //FIXME: allow freeze on for floating elements 1007 1008 /* Intermediaries*/ 1009 int is, numvertices, numsegments; 1010 int *pairindices = NULL; 1011 1012 numvertices=element->GetNumberOfVertices(); 1013 element->VerticalSegmentIndices(&pairindices,&numsegments); 1014 1015 IssmDouble* watercolumn = xNew<IssmDouble>(numvertices); 1016 IssmDouble* drainrate_column = xNew<IssmDouble>(numsegments); 1017 IssmDouble* drainrate_element = xNew<IssmDouble>(numsegments); 1018 1019 element->GetInputListOnVertices(watercolumn,WatercolumnEnum); 1020 1021 for(is=0;is<numsegments;is++) drainrate_column[is]=0.; 1022 Element* elementi = element; 1023 for(;;){ 1024 for(is=0;is<numsegments;is++) drainrate_element[is]=0.; 1025 DrainWaterfraction(elementi,drainrate_element); // TODO: make sure every vertex is only drained once 1026 for(is=0;is<numsegments;is++) drainrate_column[is]+=drainrate_element[is]; 1027 1028 if(elementi->IsOnSurface()) break; 1029 elementi=elementi->GetUpperElement(); 1030 } 1031 /* add drained water to water column*/ 1032 for(is=0;is<numsegments;is++) watercolumn[is]+=drainrate_column[is]; 1033 /* Feed updated water column back into model */ 1034 element->AddInput(WatercolumnEnum,watercolumn,P1Enum); 1035 1036 delete pairindices; 1006 1037 xDelete<IssmDouble>(drainrate_column); 1007 1038 xDelete<IssmDouble>(drainrate_element); 1008 xDelete<IssmDouble>(xyz_list); 1009 }/*}}}*/ 1010 1039 xDelete<IssmDouble>(watercolumn); 1040 }/*}}}*/ 1011 1041 void EnthalpyAnalysis::DrainWaterfraction(Element* element, IssmDouble* pdrainrate_element){/*{{{*/ 1012 1042 … … 1056 1086 height_element=fabs(xyz_list[vertexup*3+2]-xyz_list[vertexdown*3+2]); 1057 1087 pdrainrate_element[is]=(deltawaterfractions[vertexdown]+deltawaterfractions[vertexup])/2.*height_element; // return water equivalent of drainage 1088 _assert_(pdrainrate_element[is]>=0.); 1058 1089 } 1059 1090 … … 1066 1097 xDelete<IssmDouble>(deltawaterfractions); 1067 1098 }/*}}}*/ 1068 1069 1099 void EnthalpyAnalysis::UpdateBasalConstraints(Element* element){/*{{{*/ 1070 1100 … … 1120 1150 setspc = false; 1121 1151 1122 1123 1124 1152 node=element->GetNode(indices[i]); 1125 1153 if (setspc) 1126 node->ApplyConstraint(1,h_pmp); /*apply spc*/ //nodes[indices[i]]->ApplyConstraint(1,h_pmp);1154 node->ApplyConstraint(1,h_pmp); /*apply spc*/ 1127 1155 else 1128 node->DofInFSet(0); /*remove spc*/ //nodes[indices[i]]->DofInFSet(0);1156 node->DofInFSet(0); /*remove spc*/ 1129 1157 } 1130 1158 -
issm/trunk-jpl/src/c/analyses/EnthalpyAnalysis.h
r17014 r17166 40 40 static void PostProcessing(FemModel* femmodel); 41 41 static void ComputeBasalMeltingrate(Element* element); 42 static void DrainWaterfractionIcecolumn(Element* element); 42 43 static void DrainWaterfraction(Element* element, IssmDouble* pdrainrate_element); 43 44 static void UpdateBasalConstraints(Element* element);
Note:
See TracChangeset
for help on using the changeset viewer.