Ignore:
Timestamp:
Nov 20, 2015, 5:23:28 PM (9 years ago)
Author:
Ehouarn Millour
Message:

Follow-up from commit 2395: get rid of rlon and rlat, longitude_deg and latitude_deg (from module geometry_mod) should be used instead. Longitudes and latitudes are no longer loaded from startphy.nc but inherited from dynamics (and compatibility with values in startphy.nc is checked). This will change bench results because of roundoffs differences between the two.
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/cpl_mod.F90

    r2345 r2399  
    292292! are stored in this module.
    293293    USE surface_data
    294     USE phys_state_var_mod, ONLY : rlon, rlat
     294    USE geometry_mod, ONLY : longitude_deg, latitude_deg
    295295    USE carbon_cycle_mod, ONLY : carbon_cycle_cpl
    296296    USE indice_sol_mod
     
    363363
    364364! Transform the longitudes and latitudes on 2D arrays
    365           CALL gather_omp(rlon,rlon_mpi)
    366           CALL gather_omp(rlat,rlat_mpi)
     365          CALL gather_omp(longitude_deg,rlon_mpi)
     366          CALL gather_omp(latitude_deg,rlat_mpi)
    367367!$OMP MASTER
    368368          CALL Grid1DTo2D_mpi(rlon_mpi,tmp_lon)
Note: See TracChangeset for help on using the changeset viewer.