Skip to content

Commit a85ac73

Browse files
authored
Merge pull request #53 from AER-RC/release_v12.17
commits for v12.17 release
2 parents cd29a14 + ba5c763 commit a85ac73

File tree

4 files changed

+23
-20
lines changed

4 files changed

+23
-20
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LBLRTM uses the line parameters and [MT_CKD continuum](https://github.com/AER-RC
3434

3535
| LBLRTM Release | MT_CKD Release | Line File |
3636
| :---: | :---: | :---: |
37-
| [v12.16](https://github.com/AER-RC/LBLRTM/releases/tag/v12.16) | [4.2](https://github.com/AER-RC/MT_CKD/releases/tag/4.2) | [v3.8.1](https://zenodo.org/record/4019178/files/aer_v_3.8.1.tar.gz?download=1) |
37+
| [v12.17](https://github.com/AER-RC/LBLRTM/releases/tag/v12.17) | [4.3](https://github.com/AER-RC/MT_CKD/releases/tag/4.3) | [v3.8.1](https://zenodo.org/record/4019178/files/aer_v_3.8.1.tar.gz?download=1) |
3838

3939
Note that building LBLRTM_v12.14 and later requires using the netCDF libraries and setting the path to their location in the file addlibs.inc in the /build directory.
4040

@@ -67,19 +67,19 @@ git submodule update
6767

6868
in the `LBLRTM` directory.
6969

70-
Currently, the latest release is LBLRTM v12.16, and it is recommended that this be the version that users clone and checkout (rather than the `master` branch). To do this, one needs to simply checkout the `v12.16` tag:
70+
Currently, the latest release is LBLRTM v12.17, and it is recommended that this be the version that users clone and checkout (rather than the `master` branch). To do this, one needs to simply checkout the `v12.17` tag:
7171

7272
```
73-
git checkout tags/v12.16
73+
git checkout tags/v12.17
7474
```
7575

7676
No releases before v12.9 are available via GitHub, but they can be requested by contacting the [AER-RC Group](https://github.com/AER-RC). For information on previous releases, please visit the [What's New Wiki page](https://github.com/AER-RC/LBLRTM/wiki/What's-New).
7777

78-
Instead of cloning, users can also download an LBLRTM [tarball](https://github.com/AER-RC/LBLRTM/archive/v12.16.zip) and unpack it:
78+
Instead of cloning, users can also download an LBLRTM [tarball](https://github.com/AER-RC/LBLRTM/archive/v12.17.zip) and unpack it:
7979

8080
```
81-
tar xvf lblrtm_v12.16.tar.gz
82-
mv LBLRTM-12.16/ lblrtm
81+
tar xvf lblrtm_v12.17.tar.gz
82+
mv LBLRTM-12.17/ lblrtm
8383
```
8484

8585
Though not necessary, the move to `lblrtm` is for consistency with previous release packages and the associated documentation.
@@ -249,7 +249,7 @@ Unformatted optical depth files can be requested in the LBLRTM using options spe
249249

250250
# Tests <a name="tests"></a>
251251

252-
As of LBLRTM v12.10, a [run example package](https://github.com/AER-RC/LBLRTM/releases/tag/v12.16/lblrtm_v12.16.examples.tar) is provided separately from the code repository. It can be used to validate building and running of the model for select atmospheric specifications and model configurations. See `README.setup` in top level of the package for further direction.
252+
As of LBLRTM v12.10, a [run example package](https://github.com/AER-RC/LBLRTM/releases/tag/v12.17/lblrtm_v12.17.examples.tar) is provided separately from the code repository. It can be used to validate building and running of the model for select atmospheric specifications and model configurations. See `README.setup` in top level of the package for further direction.
253253

254254

255255
# Frequently Asked Questions <a name="faq"></a>

build/make_lblrtm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include makefile.common
1212
# change those two variables from what is provided here, no need to set this variable.
1313

1414
PRODUCT = lblrtm
15-
VERSION = v12.16
15+
VERSION = v12.17
1616

1717
# Define makefile name
1818
MAKEFILE=make_$(PRODUCT)

data/absco-ref_wv-mt-ckd.nc

448 Bytes
Binary file not shown.

src/contnm.f90

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1026,15 +1026,15 @@ SUBROUTINE PRCNTM
10261026
COMMON /CNTPR/ CINFO1,CINFO2,cnam3,CINFO3,cnam4,CINFO4,CHEADING
10271027
!
10281028
!
1029-
CHARACTER*18 cnam3(9),cnam4(46)
1030-
CHARACTER*51 CINFO1(2,11),CINFO2(2,14),CINFO3(2,9),CINFO4(2,46)
1029+
CHARACTER*18 cnam3(9),cnam4(47)
1030+
CHARACTER*51 CINFO1(2,11),CINFO2(2,14),CINFO3(2,9),CINFO4(2,47)
10311031
CHARACTER*40 CHEADING(3,2)
10321032
!
10331033
WRITE (IPR,910) ((CINFO1(I,J),I=1,2),J=1,11)
10341034
WRITE (IPR,910) ((CINFO2(I,J),I=1,2),J=1,14)
10351035
WRITE (IPR,918) ((CHEADING(I,J),I=1,3),J=1,2)
10361036
WRITE (IPR,915) (cnam3(j),(CINFO3(I,J),I=1,2),J=1,9)
1037-
WRITE (IPR,915) (cnam4(j),(CINFO4(I,J),I=1,2),J=1,46)
1037+
WRITE (IPR,915) (cnam4(j),(CINFO4(I,J),I=1,2),J=1,47)
10381038

10391039
!
10401040
910 FORMAT (18x,2A51)
@@ -1050,8 +1050,8 @@ BLOCK DATA CNTINF
10501050
! Continuum information for output to TAPE6 in SUBROUTINE PRCNTM
10511051
!
10521052
COMMON /CNTPR/ CINFO1,CINFO2,CNAM3,CINFO3,CNAM4,CINFO4,CHEADING
1053-
CHARACTER*18 cnam3(9),cnam4(46)
1054-
CHARACTER*51 CINFO1(2,11),CINFO2(2,14),CINFO3(2,9),CINFO4(2,46)
1053+
CHARACTER*18 cnam3(9),cnam4(47)
1054+
CHARACTER*51 CINFO1(2,11),CINFO2(2,14),CINFO3(2,9),CINFO4(2,47)
10551055
CHARACTER*40 CHEADING(3,2)
10561056
!
10571057
DATA cnam3/ &
@@ -1112,20 +1112,21 @@ BLOCK DATA CNTINF
11121112
& ' mt_ckd_4.0.1 - ', &
11131113
& ' mt_ckd_4.1 12.15', &
11141114
& ' mt_ckd_4.1.1 - ', &
1115-
& ' mt_ckd_4.2 12.16'/
1115+
& ' mt_ckd_4.2 12.16', &
1116+
& ' mt_ckd_4.3 12.17'/
11161117
! 123456789-123456789-123456789-123456789-123456789-1
11171118
!
11181119
DATA CINFO1/ &
11191120
& ' ', &
11201121
& ' ', &
11211122
& ' ', &
11221123
& ' Most recent significant change ', &
1123-
& ' H2O AIR 600 - 1400 CM-1 ', &
1124-
& ' mt_ckd_4.2 - adjustment & alt. frgn (Nov 2023)', &
1124+
& ' H2O AIR 4000 - 20000 CM-1 ', &
1125+
& ' mt_ckd_4.3 - adjustments in windows (Feb 2024)', &
11251126
& ' SELF 600 - 1400 CM-1 ', &
1126-
& ' mt_ckd_4.2 - adjustment in IR window (Nov 2023)', &
1127+
& ' mt_ckd_4.2 - adjustment in IR window (Dec 2023)', &
11271128
& ' SELF (T) 600 - 1400 CM-1 ', &
1128-
& ' mt_ckd_4.2 - adjustment in IR window (Nov 2023)', &
1129+
& ' mt_ckd_4.2 - adjustment in IR window (Dec 2023)', &
11291130
& ' CO2 AIR 0 - 10000 CM-1 ', &
11301131
& ' mt_ckd_2.5 - modify 2000-3000 cm-1 (Jan 2010)', &
11311132
& ' AIR (T) 2386 - 2434 CM-1 ', &
@@ -1282,10 +1283,12 @@ BLOCK DATA CNTINF
12821283
& ' Minor changes to MT_CKD_4.1 and MT_CKD_H2O_4.1 ', &
12831284
& ' (Jan 2023)', &
12841285
& ' IR window: Derived from AERI - Self, frgn, self T', &
1285-
& '-dep; alt. frgn; Mlawer/Mascio/Turner (Dec 2023)'/
1286+
& '-dep; alt. frgn; Mlawer/Mascio/Turner (Dec 2023)', &
1287+
& ' New foreign coefficients in window regions > 4000', &
1288+
& ' cm-1 based on U. Grenoble lab studies (Feb 2024)'/
12861289
!
12871290
end block data CNTINF
1288-
!
1291+
! New foreign coefficients in window regions > 4000 cm-1 based on U. Grenoble lab studies
12891292

12901293
! --------------------------------------------------------------
12911294
!

0 commit comments

Comments
 (0)