Ignore:
Timestamp:
May 2, 2016, 8:31:27 AM (9 years ago)
Author:
emillour
Message:

Venus and Titan GCMs:

Adaptation wrt previous changes for Titan and Venus where
longitude and latitude arrays (in phycommon/geometry_mod) were overwritten
with values from startphy.nc files, where values are given in degrees.
For the sake of homegeneity with other physics package, revert to "default"
behaviour: longitude/latitude are in radians and longitude_deg/latitude_deg
are in degrees.
Also added checking in phyetat0 that the longitude/latitude read in the
restartphy.nc files match the ones provided by the dynamics.

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/phytitan/phyredem.F90

    r1543 r1545  
    1212                          put_var,put_field
    1313      USE infotrac
    14       USE geometry_mod,  only: longitude, latitude
     14      USE geometry_mod,  only: longitude_deg, latitude_deg
    1515      USE time_phylmdz_mod, only: day_end, annee_ref, itau_phy, raz_date
    1616
     
    6464
    6565      CALL put_field("longitude", &
    66                      "Longitudes de la grille physique",longitude)
     66                     "Longitudes de la grille physique",longitude_deg)
    6767     
    6868      CALL put_field("latitude", &
    69                      "Latitudes de la grille physique",latitude)
     69                     "Latitudes de la grille physique",latitude_deg)
    7070
    7171! variables
Note: See TracChangeset for help on using the changeset viewer.