Changeset 68
- Timestamp:
- Feb 17, 2011, 11:56:05 AM (14 years ago)
- Location:
- trunk/mesoscale
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mesoscale/LMD_MM_MARS/makemeso
r60 r68 15 15 ############################## 16 16 17 ############################# 18 # Use: 19 # 20 # makemeso ## basic use (real configuration) 21 # 22 # makemeso -d ## no compilation, just check the name of the compile folder 23 # 24 # makemeso -c real ## real-case mode [default] 25 # makemeso -c convection ## idealized mode: convective cell 26 # 27 # makemeso < last ## basic use + skip questions [! script must have been executed at least once] 28 # makemeso -r < last ## basic use + skip questions + only known config 29 # makemeso -nr < last ## basic use + skip questions + only known config + no LMD phys recompile 30 # 31 # makemeso -j ## just compile the LMD physics 32 # 33 # makemeso -g ## debug mode 34 # 35 # makemeso -h ## display options 36 # 37 ############################# 38 39 40 # todo: netcdf support 17 ############################### 18 #### Type makemeso -h for help 19 ############################### 20 41 21 42 22 … … 72 52 # 73 53 # makemeso -c real ## real-case mode [default] 74 # makemeso -c convection ## idealized mode: convective cell 54 # makemeso -c ideal ## idealized mode (convective cell, mountain wave, etc...) 55 # 56 # makemeso -r ## do not recompile LMD physics (must have been compiled before) 75 57 # 76 58 # makemeso < last ## basic use + skip questions [! script must have been executed at least once] … … 560 542 # save executables 561 543 cd main 544 if [[ -f real.exe ]] 545 then 546 echo 'Looks good ! real.exe is here...' 547 fi 562 548 if [[ -f wrf.exe ]] 563 549 then … … 567 553 cp -f wrf.exe ../../wrf_x${lon}_y${lat}_z${level}_d${dom}_t${tra}_p${numproc}.exe 568 554 cd .. ;; 569 ' convection')#mkdir 'test/em_quarter_ss' 2> /dev/null555 'ideal') #mkdir 'test/em_quarter_ss' 2> /dev/null 570 556 compile em_quarter_ss > log_compile 2> log_error 571 557 # save executables 572 558 cd main 559 if [[ -f ideal.exe ]] 560 then 561 echo 'Looks good ! ideal.exe is here...' 562 fi 573 563 if [[ -f wrf.exe ]] 574 564 then … … 578 568 cp -f wrf.exe ../../wrf_x${lon}_y${lat}_z${level}_d${dom}_t${tra}_p${numproc}.exe 579 569 cd .. ;; 580 *) echo not supported please use ; echo real convection; exit ;;570 *) echo not supported... please use ; echo real ideal ; exit ;; 581 571 esac 582 572 echo '*******last lines from log_error*********'
Note: See TracChangeset
for help on using the changeset viewer.