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

Annotation of /trunk/dyn3d/paramet_m.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (hide annotations)
Thu Jun 13 14:40:06 2019 UTC (5 years 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 guez 3 module paramet_m
2    
3 guez 265 use dimensions, only: iim, jjm, llm
4 guez 3
5     implicit none
6    
7 guez 261 private iim, jjm, llm
8 guez 3
9     integer, PARAMETER:: iip1 = iim + 1, iip2 = iim + 2, iip3 = iim + 3
10     integer, PARAMETER:: jjp1 = jjm + 1
11 guez 40 integer, PARAMETER:: llmp1 = llm + 1, llmp2 = llm + 2, llmm1 = llm - 1
12     integer, PARAMETER:: ip1jm = (iim + 1) * jjm
13 guez 56 integer, PARAMETER:: ip1jmp1 = (iim + 1) * (jjm + 1)
14 guez 107 integer, PARAMETER:: ip1jmi1 = ip1jm - (iim + 1)
15 guez 40 integer, PARAMETER:: ijp1llm = (iim + 1) * (jjm + 1) * llm
16 guez 3 integer, PARAMETER:: ijmllm= ip1jm * llm
17    
18     end module paramet_m

  ViewVC Help
Powered by ViewVC 1.1.21