/[lmdze]/trunk/dimensions.F90
ViewVC logotype

Annotation of /trunk/dimensions.F90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 266 - (hide annotations)
Thu Apr 19 17:54:55 2018 UTC (6 years ago) by guez
Original Path: trunk/dimensions.F
File size: 377 byte(s)
Define macros of the preprocessor CPP_IIM, CPP_JJM, CPP_LLM so we can
control the resolution from the compilation command, and automate
compilation for several resolutions.

In module yoethf_m, transform variables into named constants. So we do
not need procedure yoethf any longer.

Bug fix in program test_inter_barxy, missing calls to fyhyp and fxhyp,
and definition of rlatu.

Remove variable iecri of module conf_gcm_m. The files dyn_hist*.nc are
written every time step. We are simplifying the output system, pending
replacement by a whole new system.

Modify possible value of vert_sampling from "param" to
"strato_custom", following LMDZ. Default values of corresponding
namelist variables are now the values used for LMDZ CMIP6.

1 guez 265 module dimensions
2 guez 3
3     ! Model dimensions.
4    
5     implicit none
6    
7 guez 266 INTEGER, PARAMETER:: iim = CPP_IIM ! number of longitudes
8     INTEGER, PARAMETER:: jjm = CPP_JJM ! number of latitudes
9 guez 195
10 guez 266 INTEGER, PARAMETER:: llm = CPP_LLM
11 guez 195 ! number of vertical layers, should be >= 7, because of nl in cv30_param_m
12    
13 guez 24 integer, parameter:: nqmx = 5 ! maximum number of tracers
14 guez 3
15 guez 265 end module dimensions

  ViewVC Help
Powered by ViewVC 1.1.21