Changeset 1543 for trunk/LMDZ.TITAN/libf/phytitan/phyetat0.F90
- Timestamp:
- Apr 22, 2016, 9:02:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/phyetat0.F90
r1530 r1543 13 13 USE iostart 14 14 USE infotrac 15 USE comgeomphy, only: rlatd,rlond15 USE geometry_mod, only: latitude,longitude 16 16 USE time_phylmdz_mod, only: itau_phy, raz_date 17 17 … … 76 76 77 77 ! read latitudes 78 call get_field("latitude", rlatd,found)78 call get_field("latitude",latitude,found) 79 79 IF (.not.found) THEN 80 80 PRINT*, 'phyetat0: Le champ <latitude> est absent' … … 83 83 84 84 ! read longitudes 85 call get_field("longitude", rlond,found)85 call get_field("longitude",longitude,found) 86 86 IF (.not.found) THEN 87 87 PRINT*, 'phyetat0: Le champ <longitude> est absent' … … 319 319 resch4(1) = 0. ! pole nord = 1 point 320 320 DO i=2,klon 321 if (( rlatd(i).ge.75..and.rlatd(i).le.85.).or. &322 ( rlatd(i).ge.-85.and.rlatd(i).le.-75.)) then321 if ((latitude(i).ge.75..and.latitude(i).le.85.).or. & 322 (latitude(i).ge.-85.and.latitude(i).le.-75.)) then 323 323 resch4(i) = 2. 324 324 else … … 352 352 353 353 ! do some more initializations 354 call init_iophy_new( rlatd,rlond)354 call init_iophy_new(latitude,longitude) 355 355 356 356 end subroutine phyetat0
Note: See TracChangeset
for help on using the changeset viewer.