Metadata-Version: 2.4
Name: hashin_shtrikman_mp
Version: 0.1.2
Summary: Determine the optimal material properties and volume fractions for each component of an n-phase mixture to meet a set of desired composite material properties.
Project-URL: repository, https://github.com/carlacupcake/hashin_shtrikman_mp
Project-URL: changelog, https://github.com/carlacupcake/hashin_shtrikman_mp/.chglog/CHANGELOG.tpl.md
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: emmet-core>=0.74.5
Requires-Dist: matplotlib-stubs>=0.2.0
Requires-Dist: monty>=2023.11.3
Requires-Dist: mp-api>=0.39.1
Requires-Dist: mpi4py>=3.1.5
Requires-Dist: mpcontribs-client>=5.10.0
Requires-Dist: nbformat>=4.2.0
Requires-Dist: numpy>=1.26.2
Requires-Dist: pandas>=2.2.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: pydantic-core>=2.14.1
Requires-Dist: pydantic-settings>=2.1.0
Requires-Dist: pytest>=8.3.4
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Provides-Extra: docs
Requires-Dist: jupyter_contrib_nbextensions>=0.7.0; extra == "docs"
Requires-Dist: notebook==6.4.12; extra == "docs"
Requires-Dist: mkdocs>=1.4.0; extra == "docs"
Requires-Dist: mkdocs-autorefs>=0.4.1; extra == "docs"
Requires-Dist: mkdocs-jupyter>=0.24.6; extra == "docs"
Requires-Dist: mkdocs-section-index>=0.3.4; extra == "docs"
Requires-Dist: mkdocstrings>=0.19.0; extra == "docs"
Requires-Dist: mkdocstrings-python>=0.7.1; extra == "docs"
Requires-Dist: pymdown-extensions>=9.6; extra == "docs"
Provides-Extra: dev
Requires-Dist: ruff>=0.4.10; extra == "dev"
Requires-Dist: isort; extra == "dev"
Dynamic: license-file

# A Computational Tool for the Optimal Design and Discovery of Multi-phase Composite Materials

## Overview
Composites are ubiquitous in engineering, as they often exhibit enhanced material properties as compared to their individual constituents. This library is intended to be a tool for materials designers who want to explore a new space of materials without incurring huge capital cost.

The `hashin_shtrikman_mp` library utilizes the tightest theoretical bounds on the effective properties of composite materials with unspecified microstructure – the Hashin-Shtrikman bounds – to identify candidate theoretical materials, find real materials that are close to the candidates, and determine the optimal volume fractions for each of the constituents in the resulting composite.

A genetic algorithm is used to optimize over the user-specified design space. The algorithm simultaneously minimizes absolute error from the desired composite properties and optimally distributes loads across constituent phases. Once the genetic algorithm has returned theoretical candidate materials, `hashin_shtrikman_mp` searches for real materials in the [Materials Project](https://next-gen.materialsproject.org/) database with properties close to those suggested by the genetic algorithm.

The library has been designed to handle 2- to 10-phase composite design.

---
## Getting Started

### Installation
`hashin_shtrikan_mp` can be installed from [PyPi source](https://pypi.org/project/hashin_shtrikman_mp/) by running:
```
pip install hashin_shtrikman_mp
```

It can also be installed by cloning this repository, then running in the root of the repository:
```
pip install .
```

### Documentation and Examples
Detailed documentation and example usages for this library can be found [here](https://carlacupcake.github.io/hashin_shtrikman_mp/).

### Implementation Notes
- Ensure you have valid credentials for the Materials Project API, which you can find by registering yourself with Materials Project – [https://next-gen.materialsproject.org/](https://next-gen.materialsproject.org/).
- Optimization parameters (number of parents, children, etc.) should be chosen based on the complexity of the desired material properties and computational resources.
- The genetic algorithm's efficiency and effectiveness can vary greatly based on the optimization parameters and the definition of the cost function. Using defaults is recommended.
- Visualization of cost versus generation can provide insights into the convergence behavior of the genetic algorithm. Expect that the exact shape of the convergence plot will change every time the algorithm is run, due to the stochastic nature of the algorithm.
- The library has been designed to handle the design of 2- to 10-phase **isotropic** and **homogeneous** composites.
- It is recommended that users restrict the search bounds for universal anisotropy to be between 0.5 and 1.5 for results closer to
theory.

### Miscellaneous features
**mpi4py support is added to append final_dict**

To take advantage of `mpi` parallelization, one can run the following:
```
pip install mpi4py
```

In case installation via `pip` fails, you can use `brew` + `pip` instead:
```
brew install mpi4py
pip install mpi4py
```

Then run:
```
mpiexec -n 4 python tests/integration/test_optimization_flow.py
```

---

## Workflow

### User Input
- **Collect User Input** and instantiate a `UserInput` object with 1) the number of constituent materials desired in the composite, 2) the desired ultimate material properties and 3) upper and lower search bounds for the properties of each constituent material.

### Optimization
- **Instantiate an `Optimizer` Object** with Materials Project API credentials and user input.
- **(Optional) Set Optimization Parameters**: The genetic algorithm optimization requires values for the number of parents, children, members in a generation, number of generations, and weights for absolute error and load distribution. It is recommended to use the default settings.
- **Set Initial Population**: In each generation of the genetic algorithm, instantiate a `Population` object with the optimization parameters defined in the previous step. Each member of the population represents a candidate set of materials and their respective volume fractions in the composite.
- **Random Property Assignment**: Randomly property values and volume fractions to each member of the population using `Population.set_random_values`. Random values are constrained by the bounds provided by the user and by the necessity that the volume fractions sum to unity.
- **Evaluate Fitness**: Evaluate each member according to a cost function which penalizes deviations from desired properties and which penalizes uneven distribution of load. Do this by creating an instance of `Member` for each member in `Population` and calling `Member.get_cost`. This concludes generation 1.
- **Select Top Performers**: Sort the members by cost. A lower cost corresponds to a stronger performer and a higher cost to a weak performer. Retain the top `num_parents` members and discard the rest.
- **Breed and Produce Offspring**: Pairwise mate the top `num_parents` members to produce `num_kids` new members. Once again using `Population.set_random_values`, augment the population with new, random members to maintain the population size at `num_members`.
- **Evaluate Fitness of New Generation**: Evaluate each member according by the same cost function. This concludes generation 2.
- **Iterate Over Generations**: Repeat the selection of top performers, breeding, and fitness evaluation process for `num_generations`.

### Visualization and Match Finding
- **Obtain Convergence Plot**: Observe the monotonic decrease of the lowest cost observed across the population as the generations pass.
- **Recommend Theoretical Candidates**: After the final generation, for each of the top composite candidates display a table of 1) material properties for each constituent phase, 2) volume fractions for each constituent phase, and 3) the cost of that theoretical candidate.
- **Create a Material Properties Dictionary** keyed by `mp_ids` and their corresponding material properties of interest, gathered using the MP-API. The dictionary will be comprised of real materials that closely resemble the theoretical materials recommended by the genetic algorithm.
- **Create Populations of Real Composite Candidates**: For each set of candidate constituent materials, create a population by varying only the volume fractions of the composite constituents.
- **Find the Optimal Volume Fractions** by evaluating the  population with the same cost function used previously.
- **Display of Top-Performing Candidates**: Repeat the process for all possible combinations of materials and display the top-performers along with their volume fractions.
- **For 2-, 3-, and 4-phase Composites** view the phase diagram for each property of interest and view how changing constituent volume fractions changes the effective composite property.

---

## Example Visualizations


***Phase Diagram of Thermal Conductivity for 2-phase Composite***

<img width="597" alt="elec-cond-2phase-cursor" src="https://github.com/user-attachments/assets/654f2961-7d0a-43d6-aac7-33a42a55a2b3" />

***Phase Diagram of Thermal Conductivity for 3-phase Composite***

<img width="572" alt="elec-cond-3phase-cursor" src="https://github.com/user-attachments/assets/6e72dce5-76a2-4b12-94c3-d74de55978d6" />

***Phase Diagram of Thermal Conductivity for 4-phase Composite***

<img width="563" alt="elec-cond-4phase-cursor" src="https://github.com/user-attachments/assets/a79f654d-d875-4c4d-8ee4-fa7b5a71ca86" />

