Ignore:
Timestamp:
Mar 19, 2024, 3:34:21 PM (2 months ago)
Author:
idelkadi
Message:

Ecrad update in LMDZ / Implementation of Ecrad double call in LMDZ

  • version 1.6.1 (commit 210d7911380f53a788c3cad73b3cf9b4e022ef87)
  • interface routines between lmdz and ecrad grouped in a new "lmdz" directory
  • double call method redesigned so as to go through the Ecrad initialization and configuration part only once for the entire simulation
  • clean-up in the read.F routine: delete unitules arguments
  • modification of default gas model in namelist (default: ECCKD)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/ecrad/radiation/radiation_cloud_optics_data.F90

    r4773 r4853  
    1313! Email:   r.j.hogan@ecmwf.int
    1414!
     15
     16#include "ecrad_config.h"
    1517
    1618module radiation_cloud_optics_data
     
    4850  subroutine setup_cloud_optics(this, liq_file_name, ice_file_name, iverbose)
    4951   
    50     use yomhook,  only : lhook, dr_hook, jphook
    51     use easy_netcdf, only : netcdf_file
     52    use yomhook,              only : lhook, dr_hook, jphook
     53#ifdef EASY_NETCDF_READ_MPI
     54    use easy_netcdf_read_mpi, only : netcdf_file
     55#else
     56    use easy_netcdf,          only : netcdf_file
     57#endif
    5258
    5359    class(cloud_optics_type), intent(inout) :: this
Note: See TracChangeset for help on using the changeset viewer.