Changeset 2444


Ignore:
Timestamp:
Feb 16, 2016, 11:55:49 AM (8 years ago)
Author:
Ehouarn Millour
Message:

Bug fix: Enforcing (in parallel runs) the deactivation of the FFT filter for grids with a zoom in longitude was wrongly implemented.
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/dyn3dmem/conf_gcm.F90

    r2442 r2444  
    862862
    863863     !Config  Key  = use_filtre_fft
    864      !Config  Desc = flag d'activation des FFT pour le filtre
     864     !Config  Desc = flag to activate FFTs for the filter
    865865     !Config  Def  = false
    866      !Config  Help = permet d'activer l'utilisation des FFT pour effectuer
    867      !Config         le filtrage aux poles.
     866     !Config  Help = enables to use FFts to do the longitudinal polar
     867     !Config         filtering around the poles.
    868868     use_filtre_fft=.FALSE.
    869869     CALL getin('use_filtre_fft',use_filtre_fft)
    870      use_filtre_fft_loc=use_filtre_fft
    871 
    872870     IF (use_filtre_fft .AND. grossismx /= 1.0) THEN
    873871        write(lunout,*)'WARNING !!! '
    874         write(lunout,*)"Le zoom en longitude est incompatible", &
    875              " avec l'utilisation du filtre FFT ", &
    876              "---> FFT filter not active"
     872        write(lunout,*)"A zoom in longitude is not compatible", &
     873             " with the FFT filter ", &
     874             "---> FFT filter deactivated"
    877875        use_filtre_fft=.FALSE.
    878876     ENDIF
     877     use_filtre_fft_loc=use_filtre_fft
    879878
    880879     !Config  Key  = use_mpi_alloc
Note: See TracChangeset for help on using the changeset viewer.