Ignore:
Timestamp:
Jul 23, 2024, 3:29:36 PM (3 months 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/surf_landice_mod.F90

    r5102 r5103  
    227227      PRINT*, 'alb_nir_sno_lic', alb_nir_sno_lic
    228228
    229       firstcall = .false.
     229      firstcall = .FALSE.
    230230    ENDIF
    231231    !******************************************************************************************
     
    248248    !****************************************************************************************
    249249    !  landice_opt = 0 : soil_model, calcul_flux, fonte_neige, ...
    250     !  landice_opt = 1  : prepare and call INterace Lmdz SISvat (INLANDSIS)
     250    !  landice_opt = 1  : prepare and CALL INterace Lmdz SISvat (INLANDSIS)
    251251    !****************************************************************************************
    252252
     
    263263
    264264        debut_is = debut
    265         lafin_is = .false.
     265        lafin_is = .FALSE.
    266266        ! Suppose zero surface speed
    267267        u0(:) = 0.0
     
    299299
    300300        IF (lafin) THEN
    301           lafin_is = .true.
     301          lafin_is = .TRUE.
    302302        END IF
    303303
     
    312312                emis_new, z0m, z0h, qsurf)
    313313
    314         debut_is = .false.
     314        debut_is = .FALSE.
    315315
    316316
     
    330330
    331331      ELSE
    332         abort_message = 'Pb de coherence: landice_opt = 1  mais CPP_INLANDSIS = .false.'
     332        abort_message = 'Pb de coherence: landice_opt = 1  mais CPP_INLANDSIS = .FALSE.'
    333333        CALL abort_physic(modname, abort_message, 1)
    334334      END IF
     
    506506
    507507            if (precip_snow(j) > abs(fluxbs_1(j))) then
    508               ok_remaining_freshsnow(j) = .true.
     508              ok_remaining_freshsnow(j) = .TRUE.
    509509              bsweight_fresh(j) = 1.
    510510            else
    511               ok_remaining_freshsnow(j) = .false.
     511              ok_remaining_freshsnow(j) = .FALSE.
    512512              bsweight_fresh(j) = exp(-(abs(fluxbs_1(j)) - precip_snow(j)) / precip_snow(j))
    513513            endif
    514514          else
    515             ok_remaining_freshsnow(j) = .false.
     515            ok_remaining_freshsnow(j) = .FALSE.
    516516            fluxbs_1(j) = 0.
    517517            bsweight_fresh(j) = 0.
     
    626626     )
    627627
    628 !        call fonte_neige_export_xtrun_off_lic_0(knon,xtrun_off_lic_0_diag)
     628!        CALL fonte_neige_export_xtrun_off_lic_0(knon,xtrun_off_lic_0_diag)
    629629
    630630#endif
     
    639639    ! Send run-off on land-ice to coupler if coupled ocean.
    640640    ! run_off_lic has been calculated in fonte_neige or surf_inlandsis
    641     ! If landice_opt>=2, corresponding call is done from surf_land_orchidee
     641    ! If landice_opt>=2, corresponding CALL is done from surf_land_orchidee
    642642    !****************************************************************************************
    643643    IF (type_ocean=='couple' .AND. landice_opt < 2) THEN
Note: See TracChangeset for help on using the changeset viewer.