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

Annotation of /trunk/dyn3d/paramet_m.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 107 - (hide annotations)
Thu Sep 11 15:09:15 2014 UTC (9 years, 8 months ago) by guez
File size: 738 byte(s)
Imported procedure grilles_gcm_sub from LMDZ. Had then to transform
local variable phis of etat to argument.

Replaced calls to lnblnk by calls to trim.

Removed arguments nlat, klevel and griscal of filtreg. Replaced
integer arguments ifiltre and iaire by logical arguments direct and
intensive.

Changed default values of guide_t and guide_q to false.

1 guez 3 module paramet_m
2    
3     use dimens_m, only: iim, jjm, llm, ndm
4    
5     implicit none
6    
7     private iim, jjm, llm, ndm
8    
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:: kftd = iim/2 -ndm
13     integer, PARAMETER:: ip1jm = (iim + 1) * jjm
14 guez 56 integer, PARAMETER:: ip1jmp1 = (iim + 1) * (jjm + 1)
15 guez 107 integer, PARAMETER:: ip1jmi1 = ip1jm - (iim + 1)
16 guez 40 integer, PARAMETER:: ijp1llm = (iim + 1) * (jjm + 1) * llm
17 guez 3 integer, PARAMETER:: ijmllm= ip1jm * llm
18     integer, PARAMETER:: mvar= (iim + 1) * (jjm + 1)*( 2*llm+1) + ijmllm
19     integer, PARAMETER:: jcfil=jjm/2+5, jcfllm=jcfil*llm
20    
21     end module paramet_m

  ViewVC Help
Powered by ViewVC 1.1.21