Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement get_density_from_cloud() using MP/COD workflow #286

Open
yucongalicechen opened this issue Dec 28, 2024 · 1 comment
Open
Milestone

Comments

@yucongalicechen
Copy link
Contributor

yucongalicechen commented Dec 28, 2024

Problem

We want to automatically compute sample mass density based on sample composition, if user specified packing fraction.
See #278 for more discussions.

Proposed solution

We could offer other approaches:

  1. given a composition, try and get density from COD or Materials Project. For different polymorphs the densities will be different for the same composition, so we would have to handle that ("material-density" not "sample-density").
  • Obtain material density from MP API, with the user's API key added to the global config.
  • Density = number of atoms/unit cell volume (from composition and cif files), then converted to mass density adjusted by the packing fraction.
  1. as a fallback, use a "best effort" atomic density (most tightly packed materials are around 5x10^22 cm^-3)? This would be "magic" which we don't normally like, but if we use this fallback we could give a warning.
@yucongalicechen yucongalicechen added this to the 3.7.0 release milestone Dec 28, 2024
@yucongalicechen yucongalicechen changed the title automatic density computation material density estimation based on sample composition Dec 28, 2024
@sbillinge
Copy link
Contributor

I was thinking more about this and something like:

if both density and packing fractions are set and raise errors (no change)
if packing fraction is None:
    packing fraction = 1
    get_density_from_material_structure(composition)
  
current workflow for the part when density is passed in.

@yucongalicechen yucongalicechen changed the title material density estimation based on sample composition materials project/COD workflow: implement get_density_from_cloud() Dec 29, 2024
@yucongalicechen yucongalicechen changed the title materials project/COD workflow: implement get_density_from_cloud() feat: implement get_density_from_cloud() using MP/COD workflow Dec 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants