[Ncep.list.wwatch3.discussion-group] Tim's ww3_multi.inp redesign

Erick Rogers erick.rogers at nrlssc.navy.mil
Wed Nov 12 18:08:02 UTC 2014


ncep.list.wwatch3.discussion-group at noaa.gov,

Tim will be sending a follow-up email with a coherent explanation but 
for folks that are impatient, here is his multi.inp snippet (attached).

Erick

++++++++++++++++++++++++++++++
W. Erick Rogers
Naval Research Laboratory
Code 7322
Stennis Space Center, MS, USA 39529
Office Phone #: (228) 688-4727/4870
email: Erick.Rogers at nrlssc.navy.mil
++++++++++++++++++++++++++++++


On 11/12/14 08:53, Arun Chawla - NOAA Federal wrote:
> Hello
>
> This is a reminder that we will be having the Waves discussion meeting
> in 40 minutes (10:30 local time here). Talks will be by Fabrice, UKMO
> (Jian-Guo and group) and NRL (Erick and Tim).
>
> Attached are some of the presentations that you can use to follow along,
> plus Jian Guo has also provided a copy of their paper on the SMC grid
> (which I should have sent earlier but forgot. My apologies)
>
> On Wed, Nov 5, 2014 at 11:40 AM, Arun Chawla - NOAA Federal
> <arun.chawla at noaa.gov <mailto:arun.chawla at noaa.gov>> wrote:
>
>     Hi
>
>     Please mark your calendar. We shall have the next WAVEWATCH III
>     meeting on Wednesday Nov 12th from 10:30 - 11:30 EST.
>
>     Please note that daylight saving time has changed so do make sure
>     that you have the right time for attending the meeting.
>
>     Next week's meeting will have
>
>     1. Fabrice give a presentation on developments at IFREMER including
>     wave ice interactions (this was going to be in the last meeting but
>     could not be done because of disturbance in the phones)
>
>     2. Jian-Guo from UKMO will give a presentation on the SMC grid
>     option that his team has implemented in WAVEWATCH III
>
>     3. Erick and Tim from NRL will lead a discussion on some proposed
>     changes to the code which include using CPP pre processors instead
>     of switches and changes to ww3_multi that reflect the increasing
>     number of forcing fields capabilities that are being developed for
>     the wave model
>
>     During the presentations please remember to mute your phones except
>     when asking questions, otherwise we can get swamped by background
>     noise. Also it will be great if more groups can give presentations
>     as a way to introduce yourselves to everyone and for us to learn
>     about all the wonderful activities that you are doing or planning to
>     do. It does not have to be specific to the work done on the code. It
>     can be ideas of research that you plan to use the code for. Maybe
>     you will find people here to collaborate with.
>
>     Now for the important stuff (I put this at the end so as to force
>     people to read everything).
>
>     For the meeting
>
>     1.  GoToMeeting - MMAB/WW  (Mehra)
>     https://global.gotomeeting.com/join/599995453
>     Meeting ID: 599-995-453
>
>     2. Join the conference call:
>     877-577-6071 <tel:877-577-6071>
>     3124918#
>
>     For those who do not have gotomeeting the slides will be distributed
>     before hand.
>
>     --
>     ---------------------------------------------------------------
>     Arun Chawla
>     Waves Team Lead
>     Marine Modelling & Analysis Branch
>     Room 2101
>     National Center for Weather & Climate Prediction
>     5830 University Research Court
>     College Park, MD 20740
>     Ph: 301-683-3740 <tel:301-683-3740>
>     Fx: 301-683-3703 <tel:301-683-3703>
>     ------------------------------------------------------------
>
>
>
>
> --
> ---------------------------------------------------------------
> Arun Chawla
> Waves Team Lead
> Marine Modelling & Analysis Branch
> Room 2101
> National Center for Weather & Climate Prediction
> 5830 University Research Court
> College Park, MD 20740
> Ph: 301-683-3740
> Fx: 301-683-3703
> ------------------------------------------------------------
>
>
>
> _______________________________________________
> Ncep.list.wwatch3.discussion-group mailing list
> Ncep.list.wwatch3.discussion-group at lstsrv.ncep.noaa.gov
> https://lstsrv.ncep.noaa.gov/mailman/listinfo/ncep.list.wwatch3.discussion-group
>
-------------- next part --------------
$ -------------------------------------------------------------------- $
$ Notes on comments:
$ * Whitespace lines are skipped
$ * Lines with '$' as the first non-whitespace character are skipped
$ -------------------------------------------------------------------- $


$ -------------------------------------------------------------------- $
$ (1) Number of wave model grids
$ (2) Number of grids defining input fields
$ (3) Flag for using unified point output file
$ -------------------------------------------------------------------- $
  5 3 T



$ -------------------------------------------------------------------- $
$ Define each input grid via the input_grid_nml namelist
$ * namelist must be terminated with /
$ * grid(i)%name must be set for each active input grid i
$ * defaults:
$      grid(i)%name          = 'unset'
$      grid(i)%water_levels  = f
$      grid(i)%currents      = f
$      grid(i)%winds         = f
$      grid(i)%ice_conc      = f
$      grid(i)%ice_param1    = f
$      grid(i)%ice_param2    = f
$      grid(i)%ice_param3    = f
$      grid(i)%ice_param4    = f
$      grid(i)%ice_param5    = f
$      grid(i)%mud_density   = f
$      grid(i)%mud_thickness = f
$      grid(i)%mud_viscosity = f
$      grid(i)%assim_mean    = f
$      grid(i)%assim_spec1d  = f
$      grid(i)%assim_spec2d  = f
$ -------------------------------------------------------------------- $
&input_grid_nml

  grid(1)%name          = 'atm'
  grid(1)%winds         = t

  grid(2)%name          = 'ocn'
  grid(2)%water_levels  = t
  grid(2)%currents      = t

  grid(3)%name          = 'ice'
  grid(3)%ice_conc      = t
  grid(3)%ice_param1    = t
  grid(3)%ice_param2    = t

/



$ -------------------------------------------------------------------- $
$ If unified point output, then define the name of grid on next line
$ -------------------------------------------------------------------- $
  'points'



$ -------------------------------------------------------------------- $
$ Define each model grid via the model_grid_nml namelist
$ * namelist must be terminated with /
$ * grid(i)%name must be set for each active model grid i
$ * defaults:
$      grid(i)%name          = 'unset'
$      grid(i)%water_levels  = 'no'
$      grid(i)%currents      = 'no'
$      grid(i)%winds         = 'no'
$      grid(i)%ice_conc      = 'no'
$      grid(i)%ice_param1    = 'no'
$      grid(i)%ice_param2    = 'no'
$      grid(i)%ice_param3    = 'no'
$      grid(i)%ice_param4    = 'no'
$      grid(i)%ice_param5    = 'no'
$      grid(i)%mud_density   = 'no'
$      grid(i)%mud_thickness = 'no'
$      grid(i)%mud_viscosity = 'no'
$      grid(i)%assim_mean    = 'no'
$      grid(i)%assim_spec1d  = 'no'
$      grid(i)%assim_spec2d  = 'no'
$      grid(i)%rank_id       = i
$      grid(i)%group_id      = 1
$      grid(i)%sibling_id    = 0
$      grid(i)%comm_frac     = 0.00,1.00
$      grid(i)%bound_flag    = f
$ -------------------------------------------------------------------- $
&model_grid_nml

  grid(1)%name          = 'grd1'
  grid(1)%winds         = 'atm'
  grid(1)%currents      = 'ocn'
  grid(1)%water_levels  = 'ocn'
  grid(1)%ice_conc      = 'ice'
  grid(1)%comm_frac     = 0.00,0.50

  grid(2)%name          = 'grd2'
  grid(2)%winds         = 'atm'
  grid(2)%currents      = 'ocn'
  grid(2)%water_levels  = 'ocn'
  grid(2)%ice_conc      = 'ice'
  grid(2)%comm_frac     = 0.25,0.75

  grid(3)%name          = 'grd3'
  grid(3)%winds         = 'atm'
  grid(3)%currents      = 'ocn'
  grid(3)%water_levels  = 'ocn'
  grid(3)%ice_conc      = 'ice'
  grid(3)%comm_frac     = 0.50,1.00

  grid(4)%name          = 'grd4'
  grid(4)%winds         = 'atm'
  grid(4)%currents      = 'ocn'
  grid(4)%water_levels  = 'ocn'
  grid(4)%ice_conc      = 'ice'
  grid(4)%ice_param1    = 'ice'
  grid(4)%ice_param2    = 'ice'
  grid(4)%rank_id       = 4

  grid(5)%name          = 'grd5'
  grid(5)%winds         = 'atm'
  grid(5)%currents      = 'ocn'
  grid(5)%water_levels  = 'ocn'
  grid(5)%ice_conc      = 'ice'
  grid(5)%ice_param1    = 'ice'
  grid(5)%ice_param2    = 'ice'
  grid(5)%rank_id       = 4

/



$ -------------------------------------------------------------------- $
$ Starting and ending dates
$ -------------------------------------------------------------------- $
  19680606 000000   19680607 000000


More information about the Ncep.list.wwatch3.discussion-group mailing list