Skip to content

Commit

Permalink
[bug fixes] followup cd474d0 and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
whitetuft committed Apr 29, 2024
1 parent cd474d0 commit 9cad4ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file modified pyrtlib/_lineshape/h2o_lineshape.nc
Binary file not shown.
8 changes: 4 additions & 4 deletions pyrtlib/_lineshape/h2oll.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
w0s = mtx[:, 6] / 1000.0
xs = mtx[:, 7]
if H2OAbsModel.model == 'R03':
w0s = mtx[:, 6] / 1000.0
xs = mtx[:, 7]
sr = mtx[:, 8]
w0s = mtx[:, 7] / 1000.0
xs = mtx[:, 8]
sr = mtx[:, 6]
elif H2OAbsModel.model in ['R16', 'R17']:
sr = mtx[:, 6]
w0s = mtx[:, 7] / 1000.0
xs = mtx[:, 8]
if H2OAbsModel.model not in ['R98', 'R03']:
if H2OAbsModel.model not in ['R98', 'R03', 'R16', 'R17']:
sh = mtx[:, 8] / 1000.0
xh = mtx[:, 9]
shs = mtx[:, 10] / 1000.0
Expand Down

0 comments on commit 9cad4ae

Please sign in to comment.