Ignore:
Timestamp:
May 10, 2013, 3:00:01 PM (12 years ago)
Author:
emillour
Message:

Common dynamics:

  • Add possibility to read a traceur.def with a different format; ie: traceur.def file with lines such as "name hadv vadv" where hadv and vadv are advection scheme number , or even just "name" on each line (advections shceme then defaults to 10, the standard VanLeer? scheme)
  • Add the "-s" (number of radiatively active scatterres) and "-b" (number of bands in the IR and visible) options to scripts makelmdz and makelmdz_fcm. Using these options only makes sense if compiling with generic physics.

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/makelmdz_fcm

    r895 r957  
    2929LIBPREFIX=""
    3030cosp=false
     31bands=""
     32scatterers=""
    3133
    3234LMDGCM=`/bin/pwd`
     
    6062  case $1 in
    6163      "-h") cat <<fin
    62 manuel complet sur http://...
    6364Usage :
    64 makegcm [options] -m arch exec
    65 [-h]                       : manuel abrégé
    66 [-d [[IMx]JMx]LM]          : IM, JM, LM sont les dims en x, y, z (def: $dim)
    67 [-p PHYS]                  : compilation avec la physique libf/phyPHYS, (def: lmd)
    68 [-prod / -dev / -debug]    : compilation en mode production (default) / developpement / debug .
    69 [-c false/MPI1/MPI2]       : couplé océan : MPI1/MPI2/false (def: false)
    70 [-v false/true]            : avec ou sans végétation (def: false)
    71 [-chimie INCA/false]       : avec ou sans model de chimie INCA (def: false)
    72 [-parallel none/mpi/omp/mpi_omp] : parallelisation (default: none) : mpi, openmp ou mixte mpi_openmp
    73 [-g GRI]                   : conf. grille dans dyn3d/GRI_xy.h  (def: reg inclue un zoom)
    74 [-io IO]                   : choix d'une librairie I/O, experts (def: ioipsl)
    75 [-include INCLUDES]        : variables supplementaires pour include
    76 [-cpp CPP_KEY]             : cle cpp supplementaires
    77 [-adjnt]                   : adjoint, a remettre en route ...
    78 [-filtre NOMFILTRE]        : prend le filtre dans libf/NOMFILTRE (def: filtrez)
    79 [-link LINKS]              : liens optionels avec d'autres librairies
    80 [-fcm_path path]           : chemin pour fcm (def: tools/fcm/bin)
    81 [-ext_src path]            : chemin d'un repertoire source avec des sources externe a compiler avec le modele
    82  -arch nom_arch            : nom de l'architecture cible
    83  exec                      : exécutable généré
     65makegcm [options] -arch arch exec
     66[-h]                       : brief help
     67[-d [[IMx]JMx]LM]          : IM, JM, LM are the dimensions in x, y, z (default: $dim)
     68[-s nscat]                 : (Generic) Number of radiatively active scatterers
     69[-b IRxVIS]                : (Generic) Number of infrared (IR) and visible (VIS) bands for radiative transfer
     70[-p PHYS]                  : set of physical parametrizations (in libf/phyPHYS), (default: lmd)
     71[-prod / -dev / -debug]    : compilation mode production (default) / developement / debug .
     72[-c false/MPI1/MPI2]       : (Earth) coupling with ocean model : MPI1/MPI2/false (default: false)
     73[-v false/true]            : (Earth) with or without vegetation (default: false)
     74[-chimie INCA/false]       : (Earth) with INCA chemistry model or without (default: false)
     75[-cosp cosp/false]         : (Earth) add the cosp model (default: false)
     76[-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp
     77[-g GRI]                   : grid configuration in dyn3d/GRI_xy.h  (default: reg, inclues a zoom)
     78[-io IO]                   : Input/Output library (default: ioipsl)
     79[-include INCLUDES]        : extra include path to add
     80[-cpp CPP_KEY]             : additional preprocessing definitions
     81[-adjnt]                   : adjoint model, not operational ...
     82[-filtre NOMFILTRE]        : use filtre from libf/NOMFILTRE (default: filtrez)
     83[-link LINKS]              : additional links with other libraries
     84[-fcm_path path]           : path to the fcm tool (default: tools/fcm/bin)
     85[-ext_src path]            : path to an additional set of routines to compile with the model
     86 -arch arch                : target architecture
     87 exec                      : executable to build
    8488fin
    8589          exit;;
     
    8892          dim=$2 ; shift ; shift ;;
    8993     
    90       "-O")
    91           echo "option obsolete dans cette version intermediaire de makegcm"
    92           exit;;
    93 
    9494      "-p")
    9595          physique="$2" ;  shift ; shift ;;
     96
     97      "-s")
     98          scatterers=$2 ; shift ; shift ;;
     99
     100      "-b")
     101          bands=$2 ; shift ; shift ;;
    96102
    97103      "-g")
     
    129135
    130136      "-adjnt")
    131           echo "otpion a reactiver ";exit
     137          echo "not operational ... work to be done here ";exit
    132138          opt_dep="$opt_dep adjnt" ; adjnt="-ladjnt -ldyn3d "
    133139          optim="$optim -Dadj" ; shift ;;
     
    295301cd $LMDGCM
    296302
    297 if [[ "$physique" == "generic" ]]
    298 then
    299    cd $LIBFGCM/phygeneric
    300    ./generatedoth.sh
    301    cd $LMDGCM
    302 fi
     303if [[ "$bands" != "" ]]
     304then
     305  # Generic model, recreate bands.h (IR & VIS bands for radiative transfer)
     306  bands=$(echo $bands | sed -e 's/[^0-9]/ /g')
     307  cd $LIBFGCM/phy$physique/bands
     308  ./makbands $bands
     309  cat $LIBFGCM/phy$physique/bands.h
     310  cd $LMDGCM
     311fi
     312
     313if [[ "$scatterers" != "" ]]
     314then
     315  # Generic model, recreate scatterers.h
     316  cd $LIBFGCM/phy$physique/scatterers
     317  ./make_scatterers $scatterers
     318  cat $LIBFGCM/phy$physique/scatterers.h
     319  cd $LMDGCM
     320fi
     321
    303322
    304323########################################################################
Note: See TracChangeset for help on using the changeset viewer.