midas-diffract 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/PKG-INFO +3 -3
  2. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/README.md +1 -1
  3. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract/__init__.py +1 -1
  4. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract/forward.py +423 -122
  5. midas_diffract-0.1.2/midas_diffract/simulate_panel_zarrs.py +813 -0
  6. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract.egg-info/PKG-INFO +3 -3
  7. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract.egg-info/SOURCES.txt +4 -1
  8. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/pyproject.toml +2 -4
  9. midas_diffract-0.1.2/tests/test_multi_detector.py +342 -0
  10. midas_diffract-0.1.2/tests/test_wedge.py +200 -0
  11. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/LICENSE +0 -0
  12. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract/hkls.py +0 -0
  13. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract/losses.py +0 -0
  14. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract/optimize.py +0 -0
  15. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract.egg-info/dependency_links.txt +0 -0
  16. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract.egg-info/requires.txt +0 -0
  17. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/midas_diffract.egg-info/top_level.txt +0 -0
  18. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/setup.cfg +0 -0
  19. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_c_comparison.py +0 -0
  20. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_forward.py +0 -0
  21. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_hkls.py +0 -0
  22. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_losses.py +0 -0
  23. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_strain_tensor.py +0 -0
  24. {midas_diffract-0.1.0 → midas_diffract-0.1.2}/tests/test_tilts.py +0 -0
@@ -1,8 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: midas-diffract
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: End-to-end differentiable forward model for High-Energy Diffraction Microscopy (FF, NF, pf-HEDM)
5
- Author: Simon Zhang, Nina Andrejevic, Mathew Cherukara
6
5
  Author-email: Hemant Sharma <hsharma@anl.gov>
7
6
  License-Expression: BSD-3-Clause
8
7
  Project-URL: Homepage, https://github.com/marinerhemant/MIDAS
@@ -12,6 +11,7 @@ Keywords: HEDM,3DXRD,differentiable physics,PyTorch,forward model,crystallograph
12
11
  Classifier: Development Status :: 4 - Beta
13
12
  Classifier: Intended Audience :: Science/Research
14
13
  Classifier: Programming Language :: Python :: 3
14
+ Classifier: Operating System :: OS Independent
15
15
  Classifier: Topic :: Scientific/Engineering :: Physics
16
16
  Requires-Python: >=3.9
17
17
  Description-Content-Type: text/markdown
@@ -102,7 +102,7 @@ MIDAS distribution. See the companion paper and the MIDAS repository
102
102
 
103
103
  ## Scope
104
104
 
105
- `midas-diffract` v0.1.0 is deliberately focused on the forward model and its
105
+ `midas-diffract` v0.1.x is deliberately focused on the forward model and its
106
106
  gradient chain. The following capabilities build on this substrate and are
107
107
  released separately as they mature:
108
108
 
@@ -75,7 +75,7 @@ MIDAS distribution. See the companion paper and the MIDAS repository
75
75
 
76
76
  ## Scope
77
77
 
78
- `midas-diffract` v0.1.0 is deliberately focused on the forward model and its
78
+ `midas-diffract` v0.1.x is deliberately focused on the forward model and its
79
79
  gradient chain. The following capabilities build on this substrate and are
80
80
  released separately as they mature:
81
81
 
@@ -28,7 +28,7 @@ Quick start
28
28
  loss.backward()
29
29
  """
30
30
 
31
- __version__ = "0.1.0"
31
+ __version__ = "0.1.2"
32
32
 
33
33
  from .forward import (
34
34
  HEDMForwardModel,