Ignore:
Timestamp:
Jul 19, 2010, 5:11:24 PM (14 years ago)
Author:
jghattas
Message:

Following bug corrections are already done at branch LMDZ4_AR5 rev
1417,1416 :

Bug corrections for nudged run (pres2lev.F90, guide_p_mod.F90) :

  • now the results are the same for sequentiel and parallel mode(if adjust=n and compiled with vsafe at mercure).
  • the results are the same as the sequential mode in previous revision.
  • test done only with guide_u=y,guide_v=y
  • copied optimized version of pres2lev.F90 from dyn3dpar to dyn3d


Added condition read_climoz for the variable O3daySTD(calcul_STDlev.h,
undefSTD.F)

Corrected bug in calculation of the diagnostic variable ec550aer
"Extinction at 550nm" (aeropt_5wv.F90) (Maria Raffaella Vuolo, LSCE)

Added stop if use_filtre_fft=y with dyn3d (conf_gcm.F) : this option is
not implemented in dyn3d.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk/libf/dyn3d/conf_gcm.F

    r1403 r1418  
    5454      LOGICAL  fxyhypbb, ysinuss
    5555      INTEGER i
    56      
     56      LOGICAL use_filtre_fft
    5757c
    5858c  -------------------------------------------------------------------
     
    795795      CALL getin('ok_dyn_ave',ok_dyn_ave)
    796796
     797!Config  Key  = use_filtre_fft
     798!Config  Desc = flag d'activation des FFT pour le filtre
     799!Config  Def  = false
     800!Config  Help = permet d'activer l'utilisation des FFT pour effectuer
     801!Config         le filtrage aux poles.
     802! Le filtre fft n'est pas implemente dans dyn3d
     803      use_filtre_fft=.FALSE.
     804      CALL getin('use_filtre_fft',use_filtre_fft)
     805
     806      IF (use_filtre_fft) THEN
     807        write(lunout,*)'STOP !!!'
     808        write(lunout,*)'use_filtre_fft n est pas implemente dans dyn3d'
     809        STOP
     810      ENDIF
     811     
    797812!Config key = ok_strato
    798813!Config  Desc = activation de la version strato
Note: See TracChangeset for help on using the changeset viewer.