Ignore:
Timestamp:
10/20/14 23:42:26 (10 years ago)
Author:
dubos
Message:

Partial etat0 cleanup (removed calls to xyz2lonlat)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/caldyn_gcm.f90

    r266 r286  
    328328  INTEGER :: ij 
    329329  DO ij=ij_begin_ext,ij_end_ext 
    330      CALL xyz2lonlat(xyz_e(ij+u_right,:),lon,lat) 
    331      ulon(ij+u_right)=a*omega*cos(lat) 
     330     ulon(ij+u_right)=a*omega*cos(lat_e(ij+u_right)) 
    332331     ulat(ij+u_right)=0 
    333332 
    334      CALL xyz2lonlat(xyz_e(ij+u_lup,:),lon,lat) 
    335      ulon(ij+u_lup)=a*omega*cos(lat) 
     333     ulon(ij+u_lup)=a*omega*cos(lat_e(ij+u_lup)) 
    336334     ulat(ij+u_lup)=0 
    337335 
    338      CALL xyz2lonlat(xyz_e(ij+u_ldown,:),lon,lat) 
    339      ulon(ij+u_ldown)=a*omega*cos(lat) 
     336     ulon(ij+u_ldown)=a*omega*cos(lat_e(ij+u_ldown)) 
    340337     ulat(ij+u_ldown)=0 
    341338  END DO 
Note: See TracChangeset for help on using the changeset viewer.