Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (8 weeks ago)
Author:
abarral
Message:

Handle CPP_INLANDSIS in lmdz_cppkeys_wrapper.F90
Remove obsolete key wrgrads_thermcell, _ADV_HALO, _ADV_HALLO, isminmax
Remove redundant uses of CPPKEY_INCA (thanks acozic)
Remove obsolete misc/write_field.F90
Remove unused ioipsl_* wrappers
Remove calls to WriteField_u with wrong signature
Convert .F -> .[fF]90
(lint) uppercase fortran operators
[note: 1d and iso still broken - working on it]

File:
1 edited

Legend:

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

    r5101 r5103  
    216216      SELECT CASE(type_trac)
    217217      CASE('inca', 'inco')
    218         IF (CPPKEY_INCA) THEN
     218        IF (.NOT. CPPKEY_INCA) THEN
    219219          CALL abort_physic(modname, 'You must add cpp key INCA and compile with INCA code', 1)
    220220        END IF
     
    259259    IF(fType == 1 .AND. ANY(['inca', 'inco']==type_trac) .AND. lInit) THEN  !=== FOUND OLD STYLE INCA "traceur.def"
    260260      !---------------------------------------------------------------------------------------------------------------------------
    261       IF (CPPKEY_INCA) THEN
    262261        nqo = SIZE(tracers) - nqCO2
    263262        CALL Init_chem_inca_trac(nqINCA)                               !--- Get nqINCA from INCA
     
    290289        IF(setGeneration(tracers)) CALL abort_physic(modname, 'See below', 1) !- SET FIELDS %iGeneration, %gen0Name
    291290        DEALLOCATE(had, hadv_inca, vad, vadv_inca, conv_flg_inca, pbl_flg_inca, solsym_inca)
    292       END IF
    293291      !---------------------------------------------------------------------------------------------------------------------------
    294292    ELSE                                                              !=== OTHER CASES (OLD OR NEW FORMAT, NO INCA MODULE)
     
    299297      nbtr = nqtrue - COUNT(delPhase(tracers(:)%gen0Name) == 'H2O' &
    300298              .AND. tracers(:)%component == 'lmdz') !--- Number of tracers passed to phytrac
    301       IF (CPPKEY_INCA) THEN
    302299        nqINCA = COUNT(tracers(:)%component == 'inca')
    303       END IF
    304300      lerr = getKey('hadv', hadv, ky = tracers(:)%keys)
    305301      lerr = getKey('vadv', vadv, ky = tracers(:)%keys)
Note: See TracChangeset for help on using the changeset viewer.