Skip to content

Commit 08032ab

Browse files
authored
Merge pull request #151 from yucongalicechen/utils-update
fix: update functions related to `diffpy.utils` update
2 parents a9fbbe5 + 402677b commit 08032ab

10 files changed

+88
-188
lines changed

news/utils-updates.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+
* Functions that use DiffractionObject` in `diffpy.utils` to follow the new API.
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/functions.py

+26-24
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
import pandas as pd
66
from scipy.interpolate import interp1d
77

8-
from diffpy.utils.scattering_objects.diffraction_objects import XQUANTITIES, Diffraction_object
8+
from diffpy.utils.diffraction_objects import XQUANTITIES, DiffractionObject
99

1010
RADIUS_MM = 1
1111
N_POINTS_ON_DIAMETER = 300
1212
TTH_GRID = np.arange(1, 180.1, 0.1)
13+
# Round down the last element if it's slightly above 180 due to floating point precision
14+
TTH_GRID[-1] = 180.00
1315
CVE_METHODS = ["brute_force", "polynomial_interpolation"]
1416

1517
# pre-computed datasets for polynomial interpolation (fast calculation)
@@ -191,14 +193,14 @@ def _cve_brute_force(diffraction_data, mud):
191193
muls = np.array(muls) / abs_correction.total_points_in_grid
192194
cve = 1 / muls
193195

194-
cve_do = Diffraction_object(wavelength=diffraction_data.wavelength)
195-
cve_do.insert_scattering_quantity(
196-
TTH_GRID,
197-
cve,
198-
"tth",
199-
metadata=diffraction_data.metadata,
200-
name=f"absorption correction, cve, for {diffraction_data.name}",
196+
cve_do = DiffractionObject(
197+
xarray=TTH_GRID,
198+
yarray=cve,
199+
xtype="tth",
200+
wavelength=diffraction_data.wavelength,
201201
scat_quantity="cve",
202+
name=f"absorption correction, cve, for {diffraction_data.name}",
203+
metadata=diffraction_data.metadata,
202204
)
203205
return cve_do
204206

@@ -211,22 +213,22 @@ def _cve_polynomial_interpolation(diffraction_data, mud):
211213
if mud > 6 or mud < 0.5:
212214
raise ValueError(
213215
f"mu*D is out of the acceptable range (0.5 to 6) for polynomial interpolation. "
214-
f"Please rerun with a value within this range or specifying another method from {* CVE_METHODS, }."
216+
f"Please rerun with a value within this range or specifying another method from {*CVE_METHODS, }."
215217
)
216218
coeff_a, coeff_b, coeff_c, coeff_d, coeff_e = [
217219
interpolation_function(mud) for interpolation_function in INTERPOLATION_FUNCTIONS
218220
]
219221
muls = np.array(coeff_a * MULS**4 + coeff_b * MULS**3 + coeff_c * MULS**2 + coeff_d * MULS + coeff_e)
220222
cve = 1 / muls
221223

222-
cve_do = Diffraction_object(wavelength=diffraction_data.wavelength)
223-
cve_do.insert_scattering_quantity(
224-
TTH_GRID,
225-
cve,
226-
"tth",
227-
metadata=diffraction_data.metadata,
228-
name=f"absorption correction, cve, for {diffraction_data.name}",
224+
cve_do = DiffractionObject(
225+
xarray=TTH_GRID,
226+
yarray=cve,
227+
xtype="tth",
228+
wavelength=diffraction_data.wavelength,
229229
scat_quantity="cve",
230+
name=f"absorption correction, cve, for {diffraction_data.name}",
231+
metadata=diffraction_data.metadata,
230232
)
231233
return cve_do
232234

@@ -257,7 +259,7 @@ def compute_cve(diffraction_data, mud, method="polynomial_interpolation", xtype=
257259
xtype str
258260
the quantity on the independent variable axis, allowed values are {*XQUANTITIES, }
259261
method str
260-
the method used to calculate cve, must be one of {* CVE_METHODS, }
262+
the method used to calculate cve, must be one of {*CVE_METHODS, }
261263
262264
Returns
263265
-------
@@ -270,14 +272,14 @@ def compute_cve(diffraction_data, mud, method="polynomial_interpolation", xtype=
270272
global_xtype = cve_do_on_global_grid.on_xtype(xtype)[0]
271273
cve_on_global_xtype = cve_do_on_global_grid.on_xtype(xtype)[1]
272274
newcve = np.interp(orig_grid, global_xtype, cve_on_global_xtype)
273-
cve_do = Diffraction_object(wavelength=diffraction_data.wavelength)
274-
cve_do.insert_scattering_quantity(
275-
orig_grid,
276-
newcve,
277-
xtype,
278-
metadata=diffraction_data.metadata,
279-
name=f"absorption correction, cve, for {diffraction_data.name}",
275+
cve_do = DiffractionObject(
276+
xarray=orig_grid,
277+
yarray=newcve,
278+
xtype=xtype,
279+
wavelength=diffraction_data.wavelength,
280280
scat_quantity="cve",
281+
name=f"absorption correction, cve, for {diffraction_data.name}",
282+
metadata=diffraction_data.metadata,
281283
)
282284
return cve_do
283285

src/diffpy/labpdfproc/labpdfprocapp.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
from diffpy.labpdfproc.functions import CVE_METHODS, apply_corr, compute_cve
77
from diffpy.labpdfproc.tools import known_sources, load_metadata, preprocessing_args
8+
from diffpy.utils.diffraction_objects import XQUANTITIES, DiffractionObject
89
from diffpy.utils.parsers.loaddata import loadData
9-
from diffpy.utils.scattering_objects.diffraction_objects import XQUANTITIES, Diffraction_object
1010

1111

1212
def define_arguments():
@@ -170,12 +170,12 @@ def main():
170170
f"exists. Please rerun specifying -f if you want to overwrite it."
171171
)
172172

173-
input_pattern = Diffraction_object(wavelength=args.wavelength)
174173
xarray, yarray = loadData(filepath, unpack=True)
175-
input_pattern.insert_scattering_quantity(
176-
xarray,
177-
yarray,
178-
args.xtype,
174+
input_pattern = DiffractionObject(
175+
xarray=xarray,
176+
yarray=yarray,
177+
xtype=args.xtype,
178+
wavelength=args.wavelength,
179179
scat_quantity="x-ray",
180180
name=filepath.stem,
181181
metadata=load_metadata(args, filepath),

src/diffpy/labpdfproc/mud_calculator.py

-109
This file was deleted.

src/diffpy/labpdfproc/tools.py

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import copy
22
from pathlib import Path
33

4-
from diffpy.labpdfproc.mud_calculator import compute_mud
5-
from diffpy.utils.scattering_objects.diffraction_objects import QQUANTITIES, XQUANTITIES
6-
from diffpy.utils.tools import get_package_info, get_user_info
4+
from diffpy.utils.diffraction_objects import ANGLEQUANTITIES, QQUANTITIES, XQUANTITIES
5+
from diffpy.utils.tools import check_and_build_global_config, compute_mud, get_package_info, get_user_info
76

8-
WAVELENGTHS = {"Mo": 0.71, "Ag": 0.59, "Cu": 1.54}
7+
WAVELENGTHS = {"Mo": 0.71073, "Ag": 0.59, "Cu": 1.5406}
98
known_sources = [key for key in WAVELENGTHS.keys()]
109

1110
# Exclude wavelength from metadata to prevent duplication,
@@ -154,7 +153,9 @@ def set_xtype(args):
154153
"""
155154
if args.xtype.lower() not in XQUANTITIES:
156155
raise ValueError(f"Unknown xtype: {args.xtype}. Allowed xtypes are {*XQUANTITIES, }.")
157-
args.xtype = "q" if args.xtype.lower() in QQUANTITIES else "tth"
156+
args.xtype = (
157+
"q" if args.xtype.lower() in QQUANTITIES else "tth" if args.xtype.lower() in ANGLEQUANTITIES else "d"
158+
)
158159
return args
159160

160161

@@ -224,7 +225,8 @@ def load_user_metadata(args):
224225

225226
def load_user_info(args):
226227
"""
227-
Update username and email using get_user_info function from diffpy.utils
228+
Load user info into args. If args are not provided, call check_and_build_global_config function from
229+
diffpy.utils to prompt the user for inputs. Otherwise, call get_user_info with the provided arguments.
228230
229231
Parameters
230232
----------
@@ -236,10 +238,11 @@ def load_user_info(args):
236238
the updated argparse Namespace with username and email inserted
237239
238240
"""
239-
config = {"username": args.username, "email": args.email}
240-
config = get_user_info(config)
241-
args.username = config["username"]
242-
args.email = config["email"]
241+
if args.username is None or args.email is None:
242+
check_and_build_global_config()
243+
config = get_user_info(owner_name=args.username, owner_email=args.email)
244+
args.username = config.get("owner_name")
245+
args.email = config.get("owner_email")
243246
return args
244247

245248

tests/conftest.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ def user_filesystem(tmp_path):
4949
f.write("good_data.xy \n")
5050
f.write(f"{str(input_dir.resolve() / 'good_data.txt')}\n")
5151

52-
home_config_data = {"username": "home_username", "email": "[email protected]"}
52+
home_config_data = {
53+
"owner_name": "home_username",
54+
"owner_email": "[email protected]",
55+
"owner_orcid": "home_orcid",
56+
}
5357
with open(home_dir / "diffpyconfig.json", "w") as f:
5458
json.dump(home_config_data, f)
5559

tests/test_fixtures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
from diffpy.utils.parsers import loadData
5+
from diffpy.utils.parsers.loaddata import loadData
66

77

88
# Test that our readable and unreadable files are indeed readable and

tests/test_functions.py

+11-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import pytest
55

66
from diffpy.labpdfproc.functions import CVE_METHODS, Gridded_circle, apply_corr, compute_cve
7-
from diffpy.utils.scattering_objects.diffraction_objects import Diffraction_object
7+
from diffpy.utils.diffraction_objects import DiffractionObject
88

99
params1 = [
1010
([0.5, 3, 1], {(0.0, -0.5), (0.0, 0.0), (0.5, 0.0), (-0.5, 0.0), (0.0, 0.5)}),
@@ -59,11 +59,11 @@ def test_set_muls_at_angle(inputs, expected):
5959

6060

6161
def _instantiate_test_do(xarray, yarray, xtype="tth", name="test", scat_quantity="x-ray"):
62-
test_do = Diffraction_object(wavelength=1.54)
63-
test_do.insert_scattering_quantity(
64-
xarray,
65-
yarray,
66-
xtype,
62+
test_do = DiffractionObject(
63+
xarray=xarray,
64+
yarray=yarray,
65+
xtype=xtype,
66+
wavelength=1.54,
6767
scat_quantity=scat_quantity,
6868
name=name,
6969
metadata={"thing1": 1, "thing2": "thing2"},
@@ -81,14 +81,13 @@ def _instantiate_test_do(xarray, yarray, xtype="tth", name="test", scat_quantity
8181
def test_compute_cve(inputs, expected, mocker):
8282
xarray, yarray = np.array([90, 90.1, 90.2]), np.array([2, 2, 2])
8383
expected_cve = np.array([0.5, 0.5, 0.5])
84-
mocker.patch("diffpy.labpdfproc.functions.TTH_GRID", xarray)
8584
mocker.patch("numpy.interp", return_value=expected_cve)
8685
input_pattern = _instantiate_test_do(xarray, yarray)
8786
actual_cve_do = compute_cve(input_pattern, mud=1, method="polynomial_interpolation", xtype=inputs[0])
8887
expected_cve_do = _instantiate_test_do(
89-
expected[0],
90-
expected[1],
91-
expected[2],
88+
xarray=expected[0],
89+
yarray=expected[1],
90+
xtype=expected[2],
9291
name="absorption correction, cve, for test",
9392
scat_quantity="cve",
9493
)
@@ -126,8 +125,8 @@ def test_apply_corr(mocker):
126125
mocker.patch("numpy.interp", return_value=expected_cve)
127126
input_pattern = _instantiate_test_do(xarray, yarray)
128127
absorption_correction = _instantiate_test_do(
129-
xarray,
130-
expected_cve,
128+
xarray=xarray,
129+
yarray=expected_cve,
131130
name="absorption correction, cve, for test",
132131
scat_quantity="cve",
133132
)

0 commit comments

Comments
 (0)