Changeset 2233


Ignore:
Timestamp:
Feb 4, 2020, 8:17:49 AM (5 years ago)
Author:
aslmd
Message:

generic: corrected a last problem when compiling with no ioipsl. so now it works with -io noioipsl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/profile.F

    r1150 r2233  
    11      SUBROUTINE profile(nlev,zkm,temp)
    2 ! to use  'getin'
    3       USE ioipsl_getincom
     2      use ioipsl_getin_p_mod, only: getin_p
    43      IMPLICIT NONE
    54c=======================================================================
     
    6261
    6362      ichoice=1 ! default value for ichoice
    64       call getin("ichoice",ichoice)
     63      call getin_p("ichoice",ichoice)
    6564      tref=200 ! default value for tref
    66       call getin("tref",tref)
     65      call getin_p("tref",tref)
    6766      isin=0 ! default value for isin (=0 means no perturbation)
    68       call getin("isin",isin)
     67      call getin_p("isin",isin)
    6968      pic=26.522 ! default value for pic
    70       call getin("pic",pic)
     69      call getin_p("pic",pic)
    7170      largeur=10 ! default value for largeur
    72       call getin("largeur",largeur)
     71      call getin_p("largeur",largeur)
    7372      hauteur=30 ! default value for hauteur
    74       call getin("hauteur",hauteur)
     73      call getin_p("hauteur",hauteur)
    7574
    7675c-----------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.