Changeset 261 for trunk/MESOSCALE


Ignore:
Timestamp:
Aug 4, 2011, 8:39:55 PM (13 years ago)
Author:
aslmd
Message:

MESOSCALE: user manual. a decent complete version. needs to be read again. also moved python graphical scripts to /home/aymeric/Science/MODELESMESOSCALELMD_MM_MARS/SRC/PYTHON so that it is available to users (and not only developers)

Location:
trunk/MESOSCALE/LMD_MM_MARS
Files:
1 added
2 edited
10 moved

Legend:

Unmodified
Added
Removed
  • trunk/MESOSCALE/LMD_MM_MARS/SIMU/runmeso

    r248 r261  
    2222###########################################
    2323
    24 changeregis=0 ## 1 if changed registry
    25 #changeregis=1 ## 1 if changed registry
     24
    2625i_want_to_compile=1
    27 
    2826scenario=""
    2927#scenario="storm"
     28
     29###########################################
     30###########################################
     31
     32changeregis=0
     33while getopts "r" options; do
     34  case $options in
     35   r ) changeregis=1;;       
     36  esac
     37done   
    3038
    3139if [[ "${MESO}" = "" ]]
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/POSTPROC/namelist.api

    r186 r261  
    11&io
    2  path_to_input  = './'
    3  path_to_output = './'
    4  input_name     = 'wrfout_d01_9999-09-09_09:00:00'
    5  process        = 'list'    !! list fields required in "fields" (available tk, tpot, GHT)     
    6  fields         = 'tk,W,uvmet' 
     2 path_to_input  = './'                             !! where input wrfout* files are located
     3 path_to_output = './'                             !! where output API files will be located
     4 input_name     = 'wrfout_d01_9999-09-09_09:00:00' !! input file to API (could be wrfout*)
     5 process        = 'list'                           !! [do not modify]     
     6 fields         = 'tk,W,uvmet'                     !! a list of fields to interpolate
     7                                                   !! - either fields in wrfout*
     8                                                   !! - or tk for temperature
     9                                                           uvmet for meteorological winds
     10                                                           tpot for potential temperature
     11 debug          = .TRUE.                           !! [add this if you want more information on screen]
    712/
    813
    914&interp_in
    10  interp_method = 4
    11  interp_levels = 0.050
     15 interp_method = 4                 !! 1 --> INTERPOLATION: PRESSURE [LINEAR in p]         output: wrfout*_p
     16                                   !! 2 --> INTERPOLATION: PRESSURE [LINEAR in log(p)]    output: wrfout*_p
     17                                   !! 3 --> INTERPOLATION: ALTITUDE ABOVE MOLA AREOID     output: wrfout*_z
     18                                   !! 4 --> INTERPOLATION: ALTITUDE ABOVE LOCAL SURFACE   output: wrfout*_zabg
     19 interp_levels = 0.050             !! Interpolation levels: - pressure in hPa for interp_method = 1 or 2
     20                                   !!                       - altitude in km  for interp_method = 3 or 4
     21                                   !!                       - [pressure shall be in decreasing order]
    1222/
Note: See TracChangeset for help on using the changeset viewer.