Skip to content

Commit

Permalink
Merge branch 'cshafer/hydro_stats' into MALI-Dev/develop
Browse files Browse the repository at this point in the history
This PR request includes updates to the global stats to include new analysis members for subglacial hydrology.

The new analysis members are:
* totalSubglacialWaterVolume
* totalSubglacialLakeVolume
* totalSubglacialLakeArea
* totalBasalMeltInput
* totalExternalWaterInput
* totalChannelMelt
* totalDistWaterFluxMarineMargin
* totalDistWaterFluxTerrestrialMargin
* totalChnlWaterFluxMarineMargin
* totalChnlWaterFluxTerrestrialMargin
* avgFlotationFraction

* origin/cshafer/hydro_stats:
  Correct flotation fraction globalStat to use ice density
  Update variable names and other code review edits
  Add grounded ice mask to BasalMeltInput term
  Fix hydro globalStats bug - protect global stats calcs if SGH disabled
  Add SGH analysis members to global stats
  • Loading branch information
matthewhoffman committed Feb 17, 2024
2 parents 6ef322e + 32f22cf commit 8be18ef
Show file tree
Hide file tree
Showing 2 changed files with 217 additions and 16 deletions.
35 changes: 35 additions & 0 deletions components/mpas-albany-landice/src/analysis_members/Registry_global_stats.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,41 @@
<var name="basalSpeedMax" type="real" dimensions="Time" units="m yr^{-1}"
description="maximum basal speed in the domain"
/>
<!-- stats related to subglacial hydrology -->
<var name="totalSubglacialWaterVolume" type="real" dimensions="Time" units="m^3"
description="total subglacial water volume"
/>
<var name="totalSubglacialLakeVolume" type="real" dimensions="Time" units="m^3"
description="total volume of subglacial lakes, defined as water volume exceeding bed bump height"
/>
<var name="totalSubglacialLakeArea" type="real" dimensions="Time" units="m^2"
description="total area of subglacial lakes"
/>
<var name="totalBasalMeltInput" type="real" dimensions="Time" units="kg s^{-1}"
description="total basal meltwater contributing to the subglacial hydrologic system"
/>
<var name="totalExternalWaterInput" type="real" dimensions="Time" units="kg s^{-1}"
description="total external meltwater contributing to the subglacial hydrologic system"
/>
<var name="totalChannelMelt" type="real" dimensions="Time" units="kg s^{-1}"
description="total melt rate in the subglacial hydrologic system "
/>
<var name="totalDistWaterFluxMarineMargin" type="real" dimensions="Time" units="kg s^{-1}"
description="total distributed subglacial water flux across marine boundaries (grounding lines or grounded marine margins)"
/>
<var name="totalDistWaterFluxTerrestrialMargin" type="real" dimensions="Time" units="kg s^{-1}"
description="total distributed subglacial water flux across terrestrial margins"
/>
<var name="totalChnlWaterFluxMarineMargin" type="real" dimensions="Time" units="kg s^{-1}"
description="total channelized subglacial water flux across marine boundaries (grounding lines or grounded marine margins)"
/>
<var name="totalChnlWaterFluxTerrestrialMargin" type="real" dimensions="Time" units="kg s^{-1}"
description="total channelized subglacial water flux across terrestrial margins"
/>
<var name="avgFlotationFraction" type="real" dimensions="Time" units="none"
description="area-weighted average of the flotation fraction under grounded ice"
/>

</var_struct>
<streams>
<stream name="globalStatsOutput" type="output"
Expand Down
Loading

0 comments on commit 8be18ef

Please sign in to comment.