-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade develop
to v14.3.1
#19
Changes from 19 commits
dfbb263
df9cfe3
9cd8698
8c70e55
26a25ae
d78c606
65a2a4a
05e7df9
3938d0a
75404e9
468ed51
a10e9eb
3e71ea0
c396587
1b263b0
1088414
2283165
53694dc
45a72a2
beb1767
b36b9a0
b80fda3
07947a3
6d0ab82
e672bb6
c39aec6
854a797
3c04d9a
577c64a
f9fec59
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
[submodule "model/geos-chem/src"] | ||
path = model/geos-chem/src | ||
[submodule "model/geos-chem/src/GEOS-Chem"] | ||
path = model/geos-chem/src/GEOS-Chem | ||
url = git@github.com:fetch4/geos-chem.git | ||
branch = dev/giss-gc | ||
branch = dev/giss-gc-14 | ||
[submodule "model/geos-chem/src/HEMCO"] | ||
path = model/geos-chem/src/HEMCO | ||
url = git@github.com:fetch4/HEMCO.git | ||
branch = dev/giss-gc-14 | ||
[submodule "model/geos-chem/src/Cloud-J"] | ||
path = model/geos-chem/src/Cloud-J | ||
url = git@github.com:fetch4/Cloud-J.git | ||
branch = dev/giss-gc-14 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes were already approved as part of #3. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes were already approved as part of #3. |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes were already approved as part of #3. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,28 +48,6 @@ module CHEM_COM | |
!@var ijlt_power: power of 10 used for tracer IJL 3D diags | ||
INTEGER, DIMENSION(kgcaijl) :: ijlt_power | ||
|
||
! Indices to radiatively active species | ||
INTEGER :: i_H2O = 0 | ||
INTEGER :: i_CO2 = 0 | ||
INTEGER :: i_O3 = 0 | ||
INTEGER :: i_O2 = 0 | ||
INTEGER :: i_NO2 = 0 | ||
INTEGER :: i_N2O = 0 | ||
INTEGER :: i_CH4 = 0 | ||
INTEGER :: i_CFC11 = 0 | ||
INTEGER :: i_CFC12 = 0 | ||
INTEGER :: i_N2 = 0 | ||
INTEGER :: i_CFCY = 0 | ||
INTEGER :: i_CFCZ = 0 | ||
INTEGER :: i_SO2 = 0 | ||
INTEGER :: i_SO4 = 0 | ||
INTEGER :: i_NIT = 0 | ||
INTEGER :: i_OCPI = 0 | ||
INTEGER :: i_OCPO = 0 | ||
INTEGER :: i_BCPI = 0 | ||
INTEGER :: i_BCPO = 0 | ||
INTEGER :: i_SOAS = 0 | ||
Comment on lines
-51
to
-71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a change versus the previous implementation rather than GISS modelE itself. |
||
|
||
! This section declares arrays used to write tracer | ||
! diagnostics accumulations in a format suitable for offline | ||
! postprocessing. The size of these arrays cannot be known | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes were already approved as part of #3.