Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mpas_analysis/ocean/climatology_map_antarctic_melt.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ def setup_and_check(self):
super(ClimatologyMapAntarcticMelt, self).setup_and_check()

landIceFluxMode = self.namelist.get('config_land_ice_flux_mode')
if landIceFluxMode not in ['data', 'standalone', 'coupled']:
if landIceFluxMode not in ['data', 'active']:
raise ValueError('*** climatologyMapMeltAntarctic requires '
'config_land_ice_flux_mode \n'
' to be data, standalone or coupled. '
' to be data or active. '
' Otherwise, no melt rates are available \n'
' for plotting.')

Expand Down
4 changes: 2 additions & 2 deletions mpas_analysis/ocean/time_series_antarctic_melt.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ def setup_and_check(self):
raiseException=True)

landIceFluxMode = self.namelist.get('config_land_ice_flux_mode')
if landIceFluxMode not in ['data', 'standalone', 'coupled']:
if landIceFluxMode not in ['data', 'active']:
raise ValueError('*** timeSeriesAntarcticMelt requires '
'config_land_ice_flux_mode \n'
' to be data, standalone or coupled. '
' to be data or active. '
' Otherwise, no melt rates are available \n'
' for plotting.')

Expand Down