Changeset 99


Ignore:
Timestamp:
Mar 22, 2011, 6:59:34 PM (14 years ago)
Author:
aslmd
Message:

LMD_LES_MARS: corrections bug valeurs nulles du flux de chaleur sensible. script llsubmit universel.

Location:
trunk
Files:
3 added
1 deleted
2 edited
5 moved

Legend:

Unmodified
Added
Removed
  • trunk/deftanks/giant/compile_command

    r59 r99  
     1
     2makelmdz_fcm -arch GNOME -parallel mpi -d 320x480x15 gcm
     3...pb relocation fit
     4
    15
    26makelmdz_fcm -arch AMD64_CICLAD -parallel mpi -d 80x120x15 -p lmd gcm
  • trunk/mesoscale/LMD_MM_MARS/SIMU/gnome.sav/gnome_launch.les

    r95 r99  
    1 # @ job_name=LMD_LES_MARS
    2 # @ output = $(job_name).$(jobid)
    3 # @ error = $(output)
    4 # @ job_type = MPICH
    5 # @ total_tasks =20 
    6 # @ blocking = unlimited
    7 # @ class =AP
    8 # @ environment=tmpdir=$(job_name).$(jobid).results
     1####################################################################
     2# @ job_name            =       LMD_LES_MARS
     3# @ job_type            =       MPICH
     4# @ total_tasks         =       8
     5# @ class               =       AP
     6# @ environment         =       real=0;tmpdir=$(job_name).$(jobid).results
     7####################################################################
     8####################################################################
     9####################################################################
     10# @ output              =       $(job_name).$(jobid)
     11# @ error               =       $(output)
     12# @ blocking            =       unlimited
     13# @ notification        =       never
    914# @ queue
    1015grep "^# @" $0
     
    1722ln -sf $LOADL_STEP_INITDIR/*.def .
    1823ln -sf $LOADL_STEP_INITDIR/namelist.* .
    19 ln -sf $LOADL_STEP_INITDIR/input_* .
     24ln -sf $LOADL_STEP_INITDIR/wrfi* .   ### executer sur la frontale
     25                                     ### au prealable !!!   
    2026####################################################################
    21 ln -sf $LOADL_STEP_INITDIR/wrfi* .   ### executer ideal.exe sur la
    22                                      ### frontale au prealable
     27if [[ "${real}" == "0" ]]
     28then
     29  ln -sf $LOADL_STEP_INITDIR/input_* .
     30else
     31  ln -sf $LOADL_STEP_INITDIR/wrfb* .
     32fi
    2333####################################################################
    2434declare -x MP_STACK_SIZE=640000000
    2535mpirun wrf.exe
    26 
     36####################################################################
     37####################################################################
     38####################################################################
    2739
    2840
  • trunk/mesoscale/LMD_MM_MARS/SRC/WRFV2/phys/module_lmd_driver.F

    r94 r99  
    11011101DO i = ips,ipe
    11021102subs = (j-jps)*(ipe-ips+1)+(i-ips+1)
     1103            !!! sparadrap pour regler un probleme avec mpiifort en LES
     1104            !!! -- HFX apparaissait nul aux interfaces des tuiles
     1105            if ( output_tab2d(subs,ind_HFX) .le. 1.e-8 ) then
     1106               print *, 'HFX is zero !!! ', i, j
     1107               print *, 'I substituted the value right next to it ', output_tab2d(subs+1,ind_HFX)
     1108               output_tab2d(subs,ind_HFX) = output_tab2d(subs+1,ind_HFX)
     1109            endif
    11031110#include "module_lmd_driver_output3.inc" 
    11041111       !  ^-- generated from Registry
    1105 !TSK(i,j) = output_tab2d(subs,ind_TSURF)
    11061112ENDDO
    11071113ENDDO
Note: See TracChangeset for help on using the changeset viewer.