Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (4 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/phys_output_mod.F90

    r5116 r5117  
    3535    USE dimphy
    3636    USE infotrac_phy, ONLY: nqtot, tracers, niso, ntraciso => ntiso
    37     USE strings_mod, ONLY: maxlen
     37    USE lmdz_strings, ONLY: maxlen
    3838    USE ioipsl
    3939    USE phys_cal_mod, ONLY: hour, calend
     
    4747    USE time_phylmdz_mod, ONLY: day_ini, itau_phy, start_time, annee_ref, day_ref
    4848    ! ug Pour les sorties XIOS
    49     USE wxios
     49    USE lmdz_wxios
    5050    USE infotrac_phy, ONLY: nbtr_bin
    5151#ifdef ISO
    5252    USE isotopes_mod, ONLY: isoName,iso_HTO
    5353#ifdef ISOTRAC
    54     use isotrac_mod, ONLY: index_zone,index_iso,strtrac
     54    USE isotrac_mod, ONLY: index_zone,index_iso,strtrac
    5555#endif
    5656#endif
     
    190190    ALLOCATE(o_dxtthe(ntraciso))
    191191    ALLOCATE(o_dxtch4(ntraciso))
    192     if (iso_HTO.gt.0) THEN
     192    IF (iso_HTO.gt.0) THEN
    193193      ALLOCATE(o_dxtprod_nucl(ntraciso))
    194194      ALLOCATE(o_dxtcosmo(ntraciso))
     
    361361      IF (using_xios) THEN
    362362        !!! Ouverture de chaque fichier XIOS !!!!!!!!!!!
    363         IF (.not. ok_all_xml) THEN
     363        IF (.NOT. ok_all_xml) THEN
    364364          IF (prt_level >= 10) THEN
    365365            PRINT*, 'phys_output_open: CALL wxios_add_file with phys_out_filenames(iff)=', trim(phys_out_filenames(iff))
     
    632632  SUBROUTINE convers_timesteps(str, dtime, timestep)
    633633
    634     use ioipsl
     634    USE ioipsl
    635635    USE phys_cal_mod
    636636    USE time_phylmdz_mod, ONLY: day_ref, annee_ref
     
    660660    ENDIF
    661661
    662     IF (type == 'day'.or.type == 'days'.or.type == 'jours'.or.type == 'jour') timestep = ttt * dayseconde
    663     IF (type == 'mounths'.or.type == 'mth'.or.type == 'mois') THEN
     662    IF (type == 'day'.OR.type == 'days'.OR.type == 'jours'.OR.type == 'jour') timestep = ttt * dayseconde
     663    IF (type == 'mounths'.OR.type == 'mth'.OR.type == 'mois') THEN
    664664      WRITE(lunout, *)'annee_ref,day_ref mon_len', annee_ref, day_ref, mth_len
    665665      timestep = ttt * dayseconde * mth_len
    666666    ENDIF
    667     IF (type == 'hours'.or.type == 'hr'.or.type == 'heurs') timestep = ttt * dayseconde / 24.
    668     IF (type == 'mn'.or.type == 'minutes') timestep = ttt * 60.
    669     IF (type == 's'.or.type == 'sec'.or.type == 'secondes') timestep = ttt
     667    IF (type == 'hours'.OR.type == 'hr'.OR.type == 'heurs') timestep = ttt * dayseconde / 24.
     668    IF (type == 'mn'.OR.type == 'minutes') timestep = ttt * 60.
     669    IF (type == 's'.OR.type == 'sec'.OR.type == 'secondes') timestep = ttt
    670670    IF (type == 'TS') timestep = ttt * dtime
    671671
Note: See TracChangeset for help on using the changeset viewer.