Changeset 5941


Ignore:
Timestamp:
10/11/21 14:42:41 (3 years ago)
Author:
snguyen
Message:

post final version ;-) which applies zero to southernmost boundary only if nperio = (3, 4, 5, 6)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TOOLS/MOSAIX/Build_coordinates_mask.ipynb

    r5939 r5941  
    271271   "source": [ 
    272272    "Bathymetry = nemo.lbc (Bathymetry, nperio=nperio, cd_type='T')\n", 
    273     "#Suppress ocean points at southernmost position\n", 
    274     "Bathymetry[0,:] = 0.0 " 
     273    "#Suppress ocean points at southernmost position for periodicity (3, 4, 5, 6)\n", 
     274    "if nperio in (3 , 4 , 5 , 6) :\n", 
     275    "    Bathymetry[0,:] = 0.0 " 
    275276   ] 
    276277  }, 
Note: See TracChangeset for help on using the changeset viewer.