[Ncep.list.emc.fv3gfs_tickets] FV3GFS Ticket #19: Modify CHGRES to output boundary conditions for stand-alone nests

FV3GFS Trac Ticket ncep.list.emc.fv3gfs_tickets at noaa.gov
Mon Jul 31 13:09:21 UTC 2017


#19: Modify CHGRES to output boundary conditions for stand-alone nests
-----------------------------+----------------------------
  Reporter:  george.gayno@…  |      Owner:  george.gayno@…
      Type:  task            |     Status:  new
  Priority:  major           |  Milestone:
 Component:  component1      |    Version:
Resolution:                  |   Keywords:
-----------------------------+----------------------------

Comment (by george.gayno@…):

 The changes at r96132 were run on Theia for a (216 x 198) CONUS nest and a
 halo of '3'.  A brief explanation of the boundary file structure:

 {{{
 /scratch3/NCEPDEV/stmp1/George.Gayno/save $ ncdump -h gfs_bndy.tile7.nc
 netcdf gfs_bndy.tile7 {
 dimensions:
         lon = 216 ;
         lat = 192 ;
         lonp = 217 ;
         latm = 191 ;
         halo = 3 ;
         halop = 4 ;
         lev = 65 ;
         levp = 66 ;
 variables:
         int i_south(lon) ;
         int j_south(halo) ;
         int i_north(lon) ;
         int j_north(halo) ;
         int i_east(halo) ;
         int j_east(lat) ;
         int i_west(halo) ;
         int j_west(lat) ;
         float ps_south(halo, lon) ;
         float ps_north(halo, lon) ;
         float ps_east(lat, halo) ;
         float ps_west(lat, halo) ;
         float w_south(lev, halo, lon) ;
         float w_north(lev, halo, lon) ;
         float w_east(lev, lat, halo) ;
         float w_west(lev, lat, halo) ;
         float zh_south(levp, halo, lon) ;
         float zh_north(levp, halo, lon) ;
         float zh_east(levp, lat, halo) ;
         float zh_west(levp, lat, halo) ;
         float sphum_south(lev, halo, lon) ;
         float sphum_north(lev, halo, lon) ;
         float sphum_east(lev, lat, halo) ;
         float sphum_west(lev, lat, halo) ;
         float o3mr_south(lev, halo, lon) ;
         float o3mr_north(lev, halo, lon) ;
         float o3mr_east(lev, lat, halo) ;
         float o3mr_west(lev, lat, halo) ;
         float liq_wat_south(lev, halo, lon) ;
         float liq_wat_north(lev, halo, lon) ;
         float liq_wat_east(lev, lat, halo) ;
         float liq_wat_west(lev, lat, halo) ;
         int i_w_south(lonp) ;
         int j_w_south(halo) ;
         int i_w_north(lonp) ;
         int j_w_north(halo) ;
         int i_w_east(halop) ;
         int j_w_east(lat) ;
         int i_w_west(halop) ;
         int j_w_west(lat) ;
         float u_w_south(lev, halo, lonp) ;
         float u_w_north(lev, halo, lonp) ;
         float u_w_east(lev, lat, halop) ;
         float u_w_west(lev, lat, halop) ;
         float v_w_south(lev, halo, lonp) ;
         float v_w_north(lev, halo, lonp) ;
         float v_w_east(lev, lat, halop) ;
         float v_w_west(lev, lat, halop) ;
         int i_s_south(lon) ;
         int j_s_south(halop) ;
         int i_s_north(lon) ;
         int j_s_north(halop) ;
         int i_s_east(halo) ;
         int j_s_east(latm) ;
         int i_s_west(halo) ;
         int j_s_west(latm) ;
         float u_s_south(lev, halop, lon) ;
         float u_s_north(lev, halop, lon) ;
         float u_s_east(lev, latm, halo) ;
         float u_s_west(lev, latm, halo) ;
         float v_s_south(lev, halop, lon) ;
         float v_s_north(lev, halop, lon) ;
         float v_s_east(lev, latm, halo) ;
         float v_s_west(lev, latm, halo) ;
 }
 }}}

 There are separate records for each side of the domain, which I called
 'south, 'north', 'east' and 'west'.  The directions have no meaning.  I
 could have called them 'up', 'down', 'left', and 'right'.

 The i/j indices of each record are included.  For the fields located at
 the grid center (like surface pressure), the i/j dimensions for the
 'south' side are:

 {{{
  i_south = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
 19,
     20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
 37,
     38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
 55,
     56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
 73,
     74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
 91,
     92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
 107,
     108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121,
     122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135,
     136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
     150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
     164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
     178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
     192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205,
     206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216 ;

  j_south = 1, 2, 3 ;
 }}}

 and for the 'east' side:

 {{{
  i_east = 214, 215, 216 ;

  j_east = 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
 21,
     22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
 39,
     40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56,
 57,
     58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
 75,
     76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92,
 93,
     94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
 109,
     110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123,
     124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137,
     138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151,
     152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
     166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,
     180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193,
     194, 195 ;
 }}}

--
Ticket URL: <https://svnemc.ncep.noaa.gov/trac/fv3gfs/ticket/19#comment:3>
fv3gfs <https://svnemc.ncep.noaa.gov/trac/fv3gfs>
NGGPS FV3GFS Development



More information about the Ncep.list.emc.fv3gfs_tickets mailing list