Changeset 1918 for trunk/LMDZ.MARS/libf/phymars/improvedCO2clouds.F
- Timestamp:
- Apr 12, 2018, 8:35:48 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/improvedCO2clouds.F
r1913 r1918 13 13 & rho_ice_co2 14 14 use conc_mod, only: mmean 15 use datafile_mod, only: datadir 15 16 16 17 implicit none … … 55 56 include "callkeys.h" 56 57 include "microphys.h" 57 include "datafile.h"58 58 c------------------------------------------------------------------ 59 59 c Arguments: … … 247 247 ! Initialisation of the flux: it is constant and is it saved 248 248 !We must interpolate the table to the GCM pressures 249 INQUIRE(FILE= datafile(1:LEN_TRIM(datafile))//249 INQUIRE(FILE=TRIM(datadir)// 250 250 & '/Meteo_flux_Plane.dat', EXIST=file_ok) 251 251 IF (.not. file_ok) THEN 252 252 write(*,*) 'file Meteo_flux_Plane.dat should be in ' 253 & , datafile253 & ,trim(datadir) 254 254 STOP 255 255 endif 256 256 !used Variables 257 ! open(newunit=uMeteor,file=trim(data file)//258 open(unit=uMeteor,file=trim(data file)//257 ! open(newunit=uMeteor,file=trim(datadir)// 258 open(unit=uMeteor,file=trim(datadir)// 259 259 & '/Meteo_flux_Plane.dat' 260 260 & ,FORM='formatted')
Note: See TracChangeset
for help on using the changeset viewer.