Changeset 1952


Ignore:
Timestamp:
Jun 21, 2018, 1:00:16 AM (6 years ago)
Author:
aslmd
Message:

cosmetic: remove useless comments and one external function in comgeomfi_h.F90

File:
1 edited

Legend:

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

    r1770 r1952  
    44       implicit none
    55
    6        ! These arrays are allocated in phys_state_var_init
    7 !       REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: long ! longitudes (rad)
    8 !       REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: lati ! latitudes (rad)
    9 !       REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: area ! mesh area (m2)
    10 !       REAL,SAVE :: totarea
    116       REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: sinlon
    127       REAL,ALLOCATABLE,SAVE,DIMENSION(:) :: coslon
     
    2116         integer,intent(in) :: ngrid ! number of atmospheric columns
    2217
    23 !        allocate(lati(ngrid))
    24 !         allocate(long(ngrid))
    25 !         allocate(area(ngrid))
    2618         allocate(sinlat(ngrid))
    2719         allocate(coslat(ngrid))
     
    4840         INTEGER,INTENT(IN) :: ngrid ! number of atmospheric columns
    4941         REAL,INTENT(IN) :: plat(ngrid),plon(ngrid),parea(ngrid)
    50          EXTERNAL SSUM
    51          REAL SSUM
    5242         integer :: ig
    5343
    54          ! fill "comgeomfi_h" data
    55 !         call SCOPY(ngrid,plon,1,long,1)
    56 !         call SCOPY(ngrid,plat,1,lati,1)
    57 !         call SCOPY(ngrid,parea,1,area,1)
    58 !         totarea=SSUM(ngrid,area,1)
    5944         DO ig=1,ngrid
    6045            sinlat(ig)=sin(plat(ig))
Note: See TracChangeset for help on using the changeset viewer.