Changeset 1974 for trunk/LMDZ.MARS/libf/phymars/comsaison_h.F90
- Timestamp:
- Jul 18, 2018, 4:48:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/comsaison_h.F90
r1770 r1974 9 9 real,save,allocatable :: mu0(:) 10 10 real,save,allocatable :: fract(:) 11 real,save,allocatable :: local_time(:) ! local solar time as fraction of day (0,1) 11 12 12 13 contains … … 19 20 allocate(mu0(ngrid)) 20 21 allocate(fract(ngrid)) 22 allocate(local_time(ngrid)) 21 23 22 24 end subroutine ini_comsaison_h … … 29 31 if (allocated(mu0)) deallocate(mu0) 30 32 if (allocated(fract)) deallocate(fract) 33 if (allocated(local_time)) deallocate(local_time) 31 34 32 35 end subroutine end_comsaison_h
Note: See TracChangeset
for help on using the changeset viewer.