Last change
on this file since 3026 was
1899,
checked in by jvatant, 7 years ago
|
Fixing an incoherence - the upper chemistry fields
are in molar mixing ratio not mass mixing ratio
--JVO
|
File size:
980 bytes
|
Line | |
---|
1 | MODULE comchem_newstart_h |
---|
2 | |
---|
3 | ! Stores data and routines for chemistry management specific to newstart |
---|
4 | |
---|
5 | ! Author : Jan Vatant d'Ollone (2018) |
---|
6 | |
---|
7 | IMPLICIT NONE |
---|
8 | |
---|
9 | ! Variable and allocatables for regriding chemistry pressure in newstart |
---|
10 | ! ---------------------------------------------------------------------- |
---|
11 | |
---|
12 | INTEGER :: nlaykimold ! Number of upper atm. layers for chemistry in the start_archive file |
---|
13 | REAL, ALLOCATABLE, DIMENSION(:) :: preskimold ! Pressure grid of upper chemistry in the start_archive file |
---|
14 | |
---|
15 | ! Allocatable arrays for newstart fields |
---|
16 | ! -------------------------------------- |
---|
17 | |
---|
18 | ! Nouvelle grille physique, ancienne grille verticale |
---|
19 | REAL,ALLOCATABLE :: ykim_up_oldv(:,:,:) ! (mol/mol) |
---|
20 | |
---|
21 | ! Nouvelle grille scalaire, ancienne grille verticale |
---|
22 | REAL,ALLOCATABLE :: ykim_upS(:,:,:,:) ! (mol/mol) |
---|
23 | |
---|
24 | ! Ancienne grille scalaire, ancienne grille verticale |
---|
25 | REAL,ALLOCATABLE :: ykim_upoldS(:,:,:,:) ! (mol/mol) |
---|
26 | |
---|
27 | END MODULE comchem_newstart_h |
---|
Note: See
TracBrowser
for help on using the repository browser.