/[lmdze]/trunk/phylmd/YOMCST.f90
ViewVC logotype

Contents of /trunk/phylmd/YOMCST.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (show annotations)
Thu Jun 13 14:40:06 2019 UTC (4 years, 11 months ago) by guez
File size: 699 byte(s)
Change all `.f` suffixes to `.f90`. (The opposite was done in revision
82.)  Because of change of philosopy in GNUmakefile: we already had a
rewritten rule for `.f`, so it does not make the makefile longer to
replace it by a rule for `.f90`. And it spares us options of
makedepf90 and of the compiler. Also we prepare the way for a simpler
`CMakeLists.txt`.

1 module YOMCST
2
3 implicit none
4
5 ! From phylmd/YOMCST.h, version 1.2 2005/06/06 13:16:33
6
7 ! A1.1.bis Constantes concernant l'orbite de la Terre
8 ! Default values from AMIP II
9
10 REAL, protected, save:: R_ecc = 0.016715 ! excentricité
11 real, protected, save:: R_peri = 102.7 ! équinoxe, en degr\'es
12 real, protected, save:: R_incl = 23.441 ! inclinaison, en degr\'es
13
14 contains
15
16 subroutine read_YOMCST
17
18 use unit_nml_m, only: unit_nml
19
20 namelist /YOMCST_nml/ R_ecc, R_peri, R_incl
21
22 !------------------------------------
23
24 print *, "Enter namelist 'YOMCST_nml'."
25 read(unit=*, nml=YOMCST_nml)
26 write(unit_nml, nml=YOMCST_nml)
27
28 end subroutine read_YOMCST
29
30 end module YOMCST

  ViewVC Help
Powered by ViewVC 1.1.21