Ignore:
Timestamp:
Jul 1, 2010, 11:02:53 AM (14 years ago)
Author:
Laurent Fairhead
Message:

Merged LMDZ4V5.0-dev branch changes r1292:r1399 to trunk.

Validation:
Validation consisted in compiling the HEAD revision of the trunk,
LMDZ4V5.0-dev branch and the merged sources and running different
configurations on local and SX8 machines comparing results.

Local machine: bench configuration, 32x24x11, gfortran

  • IPSLCM5A configuration (comparison between trunk and merged sources):
    • numerical convergence on dynamical fields over 3 days
    • start files are equivalent (except for RN and PB fields)
    • daily history files equivalent
  • MH07 configuration, new physics package (comparison between LMDZ4V5.0-dev branch and merged sources):
    • numerical convergence on dynamical fields over 3 days
    • start files are equivalent (except for RN and PB fields)
    • daily history files equivalent

SX8 machine (brodie), 96x95x39 on 4 processors:

  • IPSLCM5A configuration:
    • start files are equivalent (except for RN and PB fields)
    • monthly history files equivalent
  • MH07 configuration:
    • start files are equivalent (except for RN and PB fields)
    • monthly history files equivalent

Changes to the makegcm and create_make_gcm scripts to take into account
main programs in F90 files


Fusion de la branche LMDZ4V5.0-dev (r1292:r1399) au tronc principal

Validation:
La validation a consisté à compiler la HEAD de le trunk et de la banche
LMDZ4V5.0-dev et les sources fusionnées et de faire tourner le modéle selon
différentes configurations en local et sur SX8 et de comparer les résultats

En local: 32x24x11, config bench/gfortran

  • pour une config IPSLCM5A (comparaison tronc/fusion):
    • convergence numérique sur les champs dynamiques après 3 jours
    • restart et restartphy égaux (à part sur RN et Pb)
    • fichiers histoire égaux
  • pour une config nlle physique (MH07) (comparaison LMDZ4v5.0-dev/fusion):
    • convergence numérique sur les champs dynamiques après 3 jours
    • restart et restartphy égaux
    • fichiers histoire équivalents

Sur brodie, 96x95x39 sur 4 proc:

  • pour une config IPSLCM5A:
    • restart et restartphy égaux (à part sur RN et PB)
    • pas de différence dans les fichiers histmth.nc
  • pour une config MH07
    • restart et restartphy égaux (à part sur RN et PB)
    • pas de différence dans les fichiers histmth.nc

Changement sur makegcm et create_make-gcm pour pouvoir prendre en compte des
programmes principaux en *F90

Location:
LMDZ4/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk

  • LMDZ4/trunk/libf/phylmd/phys_state_var_mod.F90

    r1398 r1403  
     1!
     2! $Id$
     3!
    14      MODULE phys_state_var_mod
    25! Variables sauvegardees pour le startphy.nc
     
    201204! wake_Cstar  : vitesse d'etalement de la poche
    202205! wake_s      : fraction surfacique occupee par la poche froide
     206! wake_pe     : wake potential energy - WAPE
    203207! wake_fip    : Gust Front Impinging power - ALP
    204208! dt_wake, dq_wake: LS tendencies due to wake
     
    211215      REAL,ALLOCATABLE,SAVE :: wake_s(:)
    212216!$OMP THREADPRIVATE(wake_s)
     217      REAL,ALLOCATABLE,SAVE :: wake_pe(:)
     218!$OMP THREADPRIVATE(wake_pe)
    213219      REAL,ALLOCATABLE,SAVE :: wake_fip(:)
    214220!$OMP THREADPRIVATE(wake_fip)
     
    321327SUBROUTINE phys_state_var_init(read_climoz)
    322328use dimphy
     329USE control_mod
    323330use aero_mod
    324331IMPLICIT NONE
     
    333340
    334341#include "indicesol.h"
    335 #include "control.h"
    336342      ALLOCATE(rlat(klon), rlon(klon))
    337343      ALLOCATE(pctsrf(klon,nbsrf))
     
    416422      ALLOCATE(wght_th(klon,klev))
    417423      ALLOCATE(wake_deltat(klon,klev), wake_deltaq(klon,klev))
    418       ALLOCATE(wake_Cstar(klon), wake_s(klon), wake_fip(klon))
     424      ALLOCATE(wake_Cstar(klon), wake_s(klon))
     425      ALLOCATE(wake_pe(klon), wake_fip(klon))
    419426      ALLOCATE(dt_wake(klon,klev), dq_wake(klon,klev))
    420427      ALLOCATE(pfrac_impa(klon,klev), pfrac_nucl(klon,klev))
     
    457464SUBROUTINE phys_state_var_end
    458465use dimphy
     466use control_mod
    459467IMPLICIT NONE
    460468#include "indicesol.h"
    461 #include "control.h"
    462469
    463470      deallocate(rlat, rlon, pctsrf, ftsol, falb1, falb2)
     
    516523      deallocate(lalim_conv, wght_th)
    517524      deallocate(wake_deltat, wake_deltaq)
    518       deallocate(wake_Cstar, wake_s, wake_fip)
     525      deallocate(wake_Cstar, wake_s, wake_pe, wake_fip)
    519526      deallocate(dt_wake, dq_wake)
    520527      deallocate(pfrac_impa, pfrac_nucl)
Note: See TracChangeset for help on using the changeset viewer.