Changeset 533 for LMDZ4/trunk/libf/dyn3d/startvar.F
- Timestamp:
- Jun 1, 2004, 4:29:52 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/dyn3d/startvar.F
r524 r533 558 558 ! LOCAL 559 559 ! 560 REAL :: lev(1), date, dt 560 !ac REAL :: lev(1), date, dt 561 REAL :: date, dt 562 REAL, DIMENSION(:), ALLOCATABLE :: levphys_ini 563 !ac 561 564 INTEGER :: itau(1) 562 565 INTEGER :: llm_tmp, ttm_tmp 563 566 INTEGER :: i, j 564 INTEGER :: iret565 567 ! 566 568 CHARACTER*25 title … … 579 581 . ttm_tmp, fid_phys) 580 582 ! 581 !582 583 ALLOCATE (lat_phys(iml_phys,jml_phys)) 583 584 ALLOCATE (lon_phys(iml_phys,jml_phys)) 585 !ac 586 ALLOCATE (levphys_ini(llm_tmp)) 587 ! 588 ! CALL flinopen(physfname, .FALSE., iml_phys, jml_phys, 589 ! . llm_tmp, lon_phys, lat_phys, lev, ttm_tmp, 590 ! . itau, date, dt, fid_phys) 584 591 ! 585 592 CALL flinopen(physfname, .FALSE., iml_phys, jml_phys, 586 . llm_tmp, lon_phys, lat_phys, lev , ttm_tmp,593 . llm_tmp, lon_phys, lat_phys, levphys_ini, ttm_tmp, 587 594 . itau, date, dt, fid_phys) 588 595 ! 596 DEALLOCATE (levphys_ini) 597 !ac 598 ! 589 599 ! Allocate the space we will need to get the data out of this file 590 600 ! … … 593 603 ! In case we have a file which is in degrees we do the transformation 594 604 ! 595 if (allocated(lon_rad)) DEALLOCATE(lon_rad, stat=iret)596 if (allocated(lon_ini)) DEALLOCATE(lon_ini, stat=iret)597 598 605 ALLOCATE(lon_rad(iml_phys)) 599 606 ALLOCATE(lon_ini(iml_phys))
Note: See TracChangeset
for help on using the changeset viewer.