Changeset 3231 for LMDZ6/trunk/libf
- Timestamp:
- Feb 21, 2018, 5:32:08 PM (7 years ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phy_common/regular_lonlat_mod.F90
r2963 r3231 20 20 REAL,SAVE,ALLOCATABLE :: lat_reg(:) ! value of longitude cell (rad) 21 21 22 REAL,SAVE,ALLOCATABLE :: boundslon_reg(:,:) ! value of boundaries cell (1=> east, 2=>west)(rad)22 REAL,SAVE,ALLOCATABLE :: boundslon_reg(:,:) ! value of boundaries cell (1=>west, 2=>east)(rad) 23 23 24 24 REAL,SAVE,ALLOCATABLE :: boundslat_reg(:,:) ! value of longitude cell (1=>north, 2=>south)(rad) -
LMDZ6/trunk/libf/phylmd/regr_horiz_time_climoz_m.F90
r2963 r3231 192 192 v1=CSHIFT(v1,SHIFT=dx1,DIM=1); v1(nlon_in-dx1+1:)=v1(nlon_in-dx1+1:)+2.*pi 193 193 194 !--- Extend input longitudes vector until last interval contains boundslon_reg(nl at_ou,east)195 dx2=0; DO WHILE(v1(1+dx2)+2.*pi< boundslon_reg(nlon_ou,east)); dx2=dx2+1; END DO194 !--- Extend input longitudes vector until last interval contains boundslon_reg(nlon_ou,east) 195 dx2=0; DO WHILE(v1(1+dx2)+2.*pi<=boundslon_reg(nlon_ou,east)); dx2=dx2+1; END DO 196 196 197 197 !--- Final edges longitudes vector (with margin and end point)
Note: See TracChangeset
for help on using the changeset viewer.