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

Contents of /trunk/dyn3d/paramet_m.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 261 - (show annotations)
Wed Mar 7 13:33:15 2018 UTC (6 years, 2 months ago) by guez
File size: 558 byte(s)
Make procedures writehist and writedynav as identical as
possible. Remove output of phis in writedynav: already in histins and
constant. Add output of temp and q in writehist.

Remove unused variable ndm of module dimens_m. Remove unused variables
kftd, mvar, jcfil and jcfllm of module paramet_m.

1 module paramet_m
2
3 use dimens_m, 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