/[lmdze]/trunk/dyn3d/paramet_m.f90
ViewVC logotype

Contents of /trunk/dyn3d/paramet_m.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: 560 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 paramet_m
2
3 use dimensions, only: iim, jjm, llm
4
5 implicit none
6
7 private iim, jjm, llm
8
9 integer, PARAMETER:: iip1 = iim + 1, iip2 = iim + 2, iip3 = iim + 3
10 integer, PARAMETER:: jjp1 = jjm + 1
11 integer, PARAMETER:: llmp1 = llm + 1, llmp2 = llm + 2, llmm1 = llm - 1
12 integer, PARAMETER:: ip1jm = (iim + 1) * jjm
13 integer, PARAMETER:: ip1jmp1 = (iim + 1) * (jjm + 1)
14 integer, PARAMETER:: ip1jmi1 = ip1jm - (iim + 1)
15 integer, PARAMETER:: ijp1llm = (iim + 1) * (jjm + 1) * llm
16 integer, PARAMETER:: ijmllm= ip1jm * llm
17
18 end module paramet_m

  ViewVC Help
Powered by ViewVC 1.1.21