Last change
on this file since 1242 was
1047,
checked in by emillour, 11 years ago
|
Mars GCM:
- IMPORTANT CHANGE: Removed all reference/use of ngridmx (dimphys.h) in
routines (necessary prerequisite to using parallel dynamics); in most
cases this just means adding 'ngrid' as routine argument, and making
local saved variables allocatable (and allocated at first call).
In the process, had to convert many *.h files to equivalent
modules: yomaer.h => yomaer_h.F90 , surfdat.h => surfdat_h.F90 ,
comsaison.h => comsaison_h.F90 , yomlw.h => yomlw_h.F90 ,
comdiurn.h => comdiurn_h.F90 , dimradmars.h => dimradmars_mod.F90 ,
comgeomfi.h => comgeomfi_h.F90, comsoil.h => comsoil_h.F90 ,
slope.h => slope_mod.F90
- Also updated EOF routines, everything is now in eofdump_mod.F90
- Removed unused routine lectfux.F (in dyn3d)
EM
|
File size:
1.3 KB
|
Rev | Line | |
---|
[38] | 1 | !------------------------------------------------------------------ |
---|
| 2 | ! INCLUDE 'aerkind.h' |
---|
| 3 | ! Contains the names of the different scatterers |
---|
| 4 | !------------------------------------------------------------------ |
---|
| 5 | |
---|
[1047] | 6 | ! Don't forget that naerkind is set in scatterers.h |
---|
| 7 | ! (built when compiling with makegcm -s #) |
---|
| 8 | |
---|
[38] | 9 | character*20 name_iaer(naerkind) ! name of the scatterers |
---|
| 10 | ! Scatterer: DUST |
---|
| 11 | integer iaer_dust_conrath ! Typical dust profiles using a |
---|
| 12 | ! Conrath type analytical equation |
---|
| 13 | integer iaer_dust_doubleq ! Dust profile is given by the |
---|
| 14 | ! mass mixing ratio of the two- |
---|
| 15 | ! moment scheme method (doubleq) |
---|
| 16 | integer iaer_dust_submicron ! Dust profile is given by a |
---|
| 17 | ! submicron population of dust |
---|
| 18 | ! particles |
---|
| 19 | ! Scatterer: WATER |
---|
| 20 | integer iaer_h2o_ice ! Water ice particles |
---|
| 21 | |
---|
| 22 | ! NB: to keep commons aligned: |
---|
| 23 | ! split them in groups (reals, integers and characters) |
---|
| 24 | COMMON/aerkind/ & |
---|
| 25 | & iaer_dust_conrath,iaer_dust_doubleq,iaer_dust_submicron, & |
---|
| 26 | & iaer_h2o_ice |
---|
| 27 | COMMON/aerkind2/name_iaer |
---|
| 28 | !------------------------------------------------------------------ |
---|
Note: See
TracBrowser
for help on using the repository browser.