Ignore:
Timestamp:
May 12, 2011, 9:27:42 PM (14 years ago)
Author:
aslmd
Message:

LMD_MM_MARS: ajout mars_lmd_new_storm avec routines modifiees par J. Faure (stage M2). modification makemeso et runmeso avec ajout d une option -s qui permet de preciser un scenario base sur une physique legerement differente comme par exemple storm. ceci cree un nouveau dossier de compilation dont le nom commence par le nom du scenario.

File:
1 edited

Legend:

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

    r81 r118  
    2525#changeregis=1 ## 1 if changed registry
    2626i_want_to_compile=1
     27
     28scenario=""
     29scenario="storm"
    2730
    2831if [[ "${LMDMOD}" = "" ]]
     
    6265         echo '**********************************************'
    6366         newphys=1
     67         if [[ ! ("${scenario}" == "") ]]
     68         then     
     69            echo '** Scenario              >>>' ${scenario}
     70            echo '**********************************************'
     71         fi
    6472       fi
    6573
     
    251259 ./makemeso -d < tmp > /dev/null
    252260 else
    253  ./makemeso -d -p < tmp > /dev/null
     261   if [[ "${scenario}" == "" ]]
     262   then
     263   ./makemeso -d -p < tmp > /dev/null
     264   else
     265   ./makemeso -d -p -s ${scenario} < tmp > /dev/null
     266   fi
    254267 fi
    255 
    256268 \rm tmp 2> /dev/null
    257269 work_folder=${meso_folder}'/'$(more what_folder)
     
    366378       ./makemeso -r < ${simu_folder}/makemeso_input
    367379     else
    368        ./makemeso -r -p < ${simu_folder}/makemeso_input
     380         if [[ "${scenario}" == "" ]]
     381         then
     382          ./makemeso -r -p < ${simu_folder}/makemeso_input
     383         else
     384          ./makemeso -r -p -s ${scenario} < ${simu_folder}/makemeso_input
     385         fi
    369386     fi
    370387     ##******
Note: See TracChangeset for help on using the changeset viewer.