/[lmdze]/trunk/phylmd/Thermcell/ctherm.f90
ViewVC logotype

Contents of /trunk/phylmd/Thermcell/ctherm.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (show annotations)
Thu Jun 13 14:40:06 2019 UTC (5 years ago) by guez
File size: 486 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 ctherm_m
2
3 implicit none
4
5 logical, protected:: iflag_thermals = .false.
6 integer, protected:: nsplit_thermals = 1
7
8 contains
9
10 subroutine ctherm
11
12 use unit_nml_m, only: unit_nml
13
14 namelist /ctherm_nml/ iflag_thermals, nsplit_thermals
15
16 !--------------------------------------------------------------------
17
18 print *, "Enter namelist 'ctherm_nml'."
19 read(unit=*, nml=ctherm_nml)
20 write(unit_nml, nml=ctherm_nml)
21
22 end subroutine ctherm
23
24 end module ctherm_m

  ViewVC Help
Powered by ViewVC 1.1.21