source: trunk/LMDZ.MARS/libf/phymars/nir_leedat.F @ 1627

Last change on this file since 1627 was 498, checked in by emillour, 13 years ago

Mars GCM: Cleanup of the NLTE routines which have been packed together to limit the number of files.
Also enforced that file names are non-capitalized (needed by the create_make_gcm scripts to better evaluate dependencies when building the makefile).
FGG+EM

File size: 1.2 KB
Line 
1c***********************************************************************
2      subroutine NIR_leedat                             
3                                               
4c       reads parameters for NIR NLTE calculation   
5                                               
6c       nov 2011    fgg+malv    first version               
7c***********************************************************************
8
9      implicit none                                 
10                                               
11      include 'datafile.h'
12      include 'nirdata.h'
13                                               
14                                               
15c local variables                               
16
17      integer   ind                     
18
19                             
20c***********************************************************************
21
22      open(43,file=trim(datafile)//'/NIRcorrection_feb2011.dat',
23     $       status='old')         
24      do ind=1,9
25         read(43,*)
26      enddo
27     
28      do ind=1,npres
29         read(43,*)pres1d(ind),corgcm(ind),oco21d(ind),p1999(ind),
30     $        alfa(ind)
31                                !Tabulated pression to Pa
32         pres1d(ind)=pres1d(ind)*100.
33      enddo
34      close(43)
35
36      return
37
38      end
Note: See TracBrowser for help on using the repository browser.