Ignore:
Timestamp:
Jul 11, 2014, 8:37:21 AM (10 years ago)
Author:
emillour
Message:

Mars GCM:
Bug fix in testphys1d: routine ini_fillgeom expects arrays and not scalars as arguments, so define longitude and latitude as arrays (of 1 element).
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/testphys1d.F

    r1273 r1311  
    104104      Logical  tracerdyn
    105105      integer :: nq=1 ! number of tracers
    106       real :: latitude, longitude
     106      real :: latitude(1), longitude(1)
    107107
    108108      character*2 str2
     
    464464c  latitude/longitude
    465465c  ------------------
    466       latitude=0 ! default value for latitude
     466      latitude(1)=0 ! default value for latitude
    467467      PRINT *,'latitude (in degrees) ?'
    468       call getin("latitude",latitude)
     468      call getin("latitude",latitude(1))
    469469      write(*,*) " latitude = ",latitude
    470470      latitude=latitude*pi/180.E+0
     
    478478      call phys_state_var_init(1,llm,nq,
    479479     .          daysec,dtphys,rad,g,r,cpp)
    480       call ini_fillgeom(1,latitude,longitude,1.0)
     480      call ini_fillgeom(1,latitude,longitude,(/1.0/))
    481481      call conf_phys(1,llm,nq)
    482482
Note: See TracChangeset for help on using the changeset viewer.