Skip to content

Commit

Permalink
fix masking for SIuice and SIvice in the same way as for oceTAUX/Y (#279
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mjlosch committed Aug 17, 2021
1 parent 3b341ad commit e31502b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions xmitgcm/llcreader/known_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class LLC2160Model(BaseLLCModel):
'RC','RF','RhoRef','rLowC','rLowS','rLowW',
'rSurfC','rSurfS','rSurfW','XC','YC',
'RAZ','XG','YG','DXV','DYU']
mask_override = {'oceTAUX': 'c', 'oceTAUY': 'c'}

mask_override = {'oceTAUX': 'c', 'oceTAUY': 'c',
'SIuice': 'c', 'SIvice': 'c'}

class LLC4320Model(BaseLLCModel):
nx = 4320
Expand All @@ -80,7 +80,8 @@ class LLC4320Model(BaseLLCModel):
'hFacC','hFacS','hFacW','PHrefC','PHrefF',
'RAC','RAS','RAW','RC','RF',
'RhoRef','XC','YC','RAZ','XG','YG','DXV','DYU']
mask_override = {'oceTAUX': 'c', 'oceTAUY': 'c'}
mask_override = {'oceTAUX': 'c', 'oceTAUY': 'c',
'SIuice': 'c', 'SIvice': 'c'}

class ASTE270Model(BaseLLCModel):
nface = 6
Expand Down

0 comments on commit e31502b

Please sign in to comment.