Ignore:
Timestamp:
Aug 27, 2017, 8:58:01 AM (7 years ago)
Author:
aslmd
Message:

LMDZ.MARS setting the stage for maybe fixing nesting in the LMD_MM_MARS 4. ensure arrays not allocated in read_dust_scenario if already allocated -- other changes are useful comments for subsequent developments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/read_dust_scenario.F90

    r1544 r1775  
    118118
    119119
    120    allocate(tautes(lonlen,latlen,timelen))
    121    allocate(lat(latlen), lon(lonlen), time(timelen))
     120   if (.not.allocated(tautes)) allocate(tautes(lonlen,latlen,timelen))
     121   if (.not.allocated(lat)) allocate(lat(latlen), lon(lonlen), time(timelen))
    122122
    123123   ! "dustop" if loading visible extinction opacity
Note: See TracChangeset for help on using the changeset viewer.