Skip to content

Commit f805fe3

Browse files
authored
Merge pull request #155 from yucongalicechen/wavelength
fix: update wavelengths
2 parents 983a7b0 + 63df4ff commit f805fe3

File tree

3 files changed

+105
-21
lines changed

3 files changed

+105
-21
lines changed

news/wavelength.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* Increased the number of significant figures for wavelength and separated values for Ka1 and Ka2.
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

src/diffpy/labpdfproc/tools.py

+38-20
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,21 @@
1313
get_user_info,
1414
)
1515

16-
WAVELENGTHS = {"Mo": 0.71073, "Ag": 0.59, "Cu": 1.5406}
16+
# Reference values are taken from
17+
# https://x-server.gmca.aps.anl.gov/cgi/www_dbli.exe?x0hdb=waves
18+
# Ka1Ka2 values are calculated as: (Ka1 * 2 + Ka2) / 3
19+
# For CuKa1Ka2: (1.54056 * 2 + 1.544398) / 3 = 1.54184
20+
WAVELENGTHS = {
21+
"Mo": 0.71073,
22+
"MoKa1": 0.70930,
23+
"MoKa1Ka2": 0.71073,
24+
"Ag": 0.56087,
25+
"AgKa1": 0.55941,
26+
"AgKa1Ka2": 0.56087,
27+
"Cu": 1.54184,
28+
"CuKa1": 1.54056,
29+
"CuKa1Ka2": 1.54184,
30+
}
1731
known_sources = [key for key in WAVELENGTHS.keys()]
1832

1933
# Exclude wavelength from metadata to prevent duplication,
@@ -166,28 +180,32 @@ def set_wavelength(args):
166180
args : argparse.Namespace
167181
The updated arguments with the wavelength.
168182
"""
169-
if args.wavelength is not None and args.wavelength <= 0:
170-
raise ValueError(
171-
"No valid wavelength. "
172-
"Please rerun specifying a known anode_type "
173-
"or a positive wavelength."
174-
)
175-
if (
176-
not args.wavelength
177-
and args.anode_type
178-
and args.anode_type not in WAVELENGTHS
179-
):
180-
raise ValueError(
181-
f"Anode type not recognized. "
182-
f"Please rerun specifying an anode_type from {*known_sources, }."
183+
if args.wavelength is None:
184+
matched_anode_type = next(
185+
(
186+
key
187+
for key in WAVELENGTHS
188+
if key.lower() == args.anode_type.lower()
189+
),
190+
None,
183191
)
184-
185-
if args.wavelength:
186-
delattr(args, "anode_type")
187-
elif args.anode_type:
192+
if matched_anode_type is None:
193+
raise ValueError(
194+
f"Anode type not recognized. "
195+
f"Please rerun specifying an anode_type "
196+
f"from {*known_sources, }."
197+
)
198+
args.anode_type = matched_anode_type
188199
args.wavelength = WAVELENGTHS[args.anode_type]
189200
else:
190-
args.wavelength = WAVELENGTHS["Mo"]
201+
if args.wavelength <= 0:
202+
raise ValueError(
203+
"No valid wavelength. "
204+
"Please rerun specifying a known anode_type "
205+
"or a positive wavelength."
206+
)
207+
else:
208+
delattr(args, "anode_type")
191209
return args
192210

193211

tests/test_tools.py

+44-1
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,52 @@ def test_set_output_directory_bad(user_filesystem):
198198
@pytest.mark.parametrize(
199199
"inputs, expected",
200200
[
201+
# C1: nothing passed in, expect default is Mo
201202
([], {"wavelength": 0.71073, "anode_type": "Mo"}),
202-
(["--anode-type", "Ag"], {"wavelength": 0.59, "anode_type": "Ag"}),
203+
# C2: only a valid anode type was entered (case independent),
204+
# expect to match the corresponding wavelength
205+
# and preserve the correct case anode type
206+
(["--anode-type", "Mo"], {"wavelength": 0.71073, "anode_type": "Mo"}),
207+
(
208+
["--anode-type", "MoKa1"],
209+
{"wavelength": 0.70930, "anode_type": "MoKa1"},
210+
),
211+
(
212+
["--anode-type", "MoKa1Ka2"],
213+
{"wavelength": 0.71073, "anode_type": "MoKa1Ka2"},
214+
),
215+
(["--anode-type", "Ag"], {"wavelength": 0.56087, "anode_type": "Ag"}),
216+
(
217+
["--anode-type", "AgKa1"],
218+
{"wavelength": 0.55941, "anode_type": "AgKa1"},
219+
),
220+
(
221+
["--anode-type", "AgKa1Ka2"],
222+
{"wavelength": 0.56087, "anode_type": "AgKa1Ka2"},
223+
),
224+
(["--anode-type", "Cu"], {"wavelength": 1.54184, "anode_type": "Cu"}),
225+
(
226+
["--anode-type", "CuKa1"],
227+
{"wavelength": 1.54056, "anode_type": "CuKa1"},
228+
),
229+
(
230+
["--anode-type", "CuKa1Ka2"],
231+
{"wavelength": 1.54184, "anode_type": "CuKa1Ka2"},
232+
),
233+
(
234+
["--anode-type", "moKa1Ka2"],
235+
{"wavelength": 0.71073, "anode_type": "MoKa1Ka2"},
236+
),
237+
(["--anode-type", "ag"], {"wavelength": 0.56087, "anode_type": "Ag"}),
238+
(
239+
["--anode-type", "cuka1"],
240+
{"wavelength": 1.54056, "anode_type": "CuKa1"},
241+
),
242+
# C3: only a valid wavelength was entered,
243+
# expect to include the wavelength only and anode type is None
203244
(["--wavelength", "0.25"], {"wavelength": 0.25, "anode_type": None}),
245+
# C4: both valid anode type and wavelength were entered,
246+
# expect to remove the anode type and preserve wavelength only
204247
(
205248
["--wavelength", "0.25", "--anode-type", "Ag"],
206249
{"wavelength": 0.25, "anode_type": None},

0 commit comments

Comments
 (0)