SlideShare a Scribd company logo
Center for PRedictive Integrated
Structural Materials Science
Using an Explicit Nucleation Model
in PRISMS-PF to Predict Precipitate
Microstructures
Stephen DeWitt
Dept. of Materials Science and Engineering
University of Michigan
Phase Field Workshop VII
Center for PRedictive Integrated
Structural Materials Science
Part 1:
Overview of PRISMS-PF and new features
Part 2:
Discussion on explicit nucleation models for phase field
simulations and implementation in PRISMS-PF
Part 3:
2D simulations of nucleation, growth, and coarsening in
an Mg-Nd alloy
Center for PRedictive Integrated
Structural Materials Science
Lead Developer:
Stephen DeWitt1
PRISMS-PFAn Open-Source Phase Field Modeling Framework
Associated PRISMS Faculty:
Katsuyo Thornton1
Primary Contributors:
Shiva Rudraraju2*, Larry Aagesen1**,
David Montiel1, and Beck Andrews1
1. Dept. of Materials Science and Engineering, University of
Michigan
2. Dept. of Mechanical Engineering, University of Michigan
* (Now at the University of Wisconsin) ** (Now at Idaho National Laboratory)
Center for PRedictive Integrated
Structural Materials Science
What’s hard about writing a phase
field code?
1. Wide diversity of models and coupled physics
makes code reuse difficult
No real “typical”
governing equations
Large variety of
formulations and
terms
Center for PRedictive Integrated
Structural Materials Science
What’s hard about writing a phase
field code?
2. Simulating large, physically representative
systems is computationally intensive
Simulations often take days on
10s-100s of cores
Simulations are often done in 2D
for tractability
Physical fidelity requires strong
numerical performance
nersc.gov
Center for PRedictive Integrated
Structural Materials Science
Four Principles Guiding PRISMS-PF
Development
1. Its computational performance, including
parallel scalability, should meet or exceed that
of typical phase field codes
2. It should accommodate a wide variety of phase
field models and applications
3. The interface for creating or modifying
governing equations should be simple, quick,
and separate from the numerics
4. It should be open source with a permissive
license so it is available to everyone and
advances can be shared by the community
Center for PRedictive Integrated
Structural Materials Science
User-Friendly:
Simple interface to solve
an arbitrary number of
coupled PDEs
Detailed online user guide
24 applications to get you
started
Simple Docker-based
installation
High-Performance:
Ideal scaling for >1,000
processors
Improved performance
over finite difference
(approx. 10x w/o adaptive
meshing, 100+ x w/
adaptive meshing)
An Open Source, Finite Element,
General Purpose Phase-Field Platform
(github.com/prisms-center/phaseField)
PRISMS-PFAn Open-Source Phase Field Modeling Framework
Advanced Capabilities:
Matrix-free finite element
approach
High-order elements
Hybrid parallelization:
MPI/Threads/Vectorization
Adaptive meshing
Explicit nucleus placement
Grain-remapping
Center for PRedictive Integrated
Structural Materials Science
PRISMS-PF Performance:
Matrix-Free Approach
• Leverages the matrix-free finite element capabilities of the deal.II library
• Cell-based strategy eliminates the need for a sparse matrix
– Operator instead applied element-by-element
– Unit cell operations same for all cells permitting vectorization
• Sum factorization
– Restructuring of the operation as the tensor product of 1D operations
• Gauss-Lobatto elements
– Uses the same points for support and quadrature
– Diagonal “mass matrix” enables explicit time stepping without “mass
lumping” or solving a system of equations
– Well-conditioned for high order elements
• Together these:
• Reduce memory bandwidth which often limits sparse matrix operations
• May reduce floating point operations (large reductions at high order)
Kronbichler and Kormann, Computers & Fluids, 63 (2012)
Center for PRedictive Integrated
Structural Materials Science
PRISMS-PF Performance:
Adaptive Meshing
Adaptive octree meshes
using the p4est library
Depending on the geometry
can massively decrease the
size of a calculation
Center for PRedictive Integrated
Structural Materials Science
Performance vs. Finite Difference
• PRISMS-PF and custom finite
difference code
– Written in Fortran with MPI
parallelization
– Second order central differencing
– Explicit time stepping (forward
Euler)
• 2 growing particles in 3D
– Coupled Cahn-Hilliard/Allen-Cahn
– Closely related to a number of
problems of physical interest
(precipitation, solidification, etc.)
Center for PRedictive Integrated
Structural Materials Science
Speed-up vs. Finite Difference at 4
Error Levels
Center for PRedictive Integrated
Structural Materials Science
Performance on PFHub BM3
• Simulation with cubic elements and adaptive meshing
• h = 1/384, Δt = 0.005
• Result is well converged
– Decreasing h by 1/2 and Δt by 1/10, leads to 1% change in the velocity
Center for PRedictive Integrated
Structural Materials Science
Comparison to Other Uploads
Framework Tip Velocity
at t = 1500
Core-h Required Memory
(GB)
PRISMS-PF 8.6×10-4 0.30 0.29
MOOSE (#2) 8.1×10-4 0.51 36.3
MOOSE (#1) 5.5×10-4 241 6.7
FreeFem++ 7.4×10-4 100 0.098
FiPy 1.2×10-3 74 1.9
PRISMS-PF
Center for PRedictive Integrated
Structural Materials Science
New Features:
Grain Remapping
• Each grain is identified
using a recursive flood fill
• Simplified representation
of each grain is stored
– Currently a circle/sphere
– A persistent grain ID is saved
for each grain
• Modified greedy coloring
algorithm to determine the
new home for a grain
marked for transfer
Order Parameter 1 Order Parameter 2
Too close
Marked for transfer
Permann, Tonks, Fromm, Gaston, Comp. Mater. Sci. (2016)
Center for PRedictive Integrated
Structural Materials Science
New Features:
Grain Remapping
• Each grain is identified
using a recursive flood fill
• Simplified representation
of each grain is stored
– Currently a circle/sphere
– A persistent grain ID is saved
for each grain
• Modified greedy coloring
algorithm to determine the
new home for a grain
marked for transfer Initial microstructure
imported from
Permann, Tonks, Fromm, Gaston, Comp. Mater. Sci. (2016)
Center for PRedictive Integrated
Structural Materials Science
New Features:
Materials Commons Integration
Command line tool automatically parses the PRISMS-PF app files and
uploads the metadata and simulation results to Materials Commons
Center for PRedictive Integrated
Structural Materials Science
New Features:
Website and User Manual
PRISMS-PF has a brand new website, including
an online manual replacing the PDF file
https://prisms-center.github.io/phaseField/
Center for PRedictive Integrated
Structural Materials Science
Other New(ish) Features:
• Explicit nucleus placement (more on this later)
• Hybrid Newton/Picard nonlinear solver
• Checkpoint/restart
• Postprocessing
• Docker-based installation
• Automatic integration testing with Travis CI
Center for PRedictive Integrated
Structural Materials Science
Summary
• Flexible, and easy-to-use framework for phase field
modeling
• Highly competitive performance
– 1-2 orders of magnitude faster than finite difference
– Fastest published time for BM3
• Advanced features such as nucleation and grain remapping
• Talk to me if you want to know more
PRISMS-PFAn Open-Source Phase Field Modeling Framework
https://prisms-center.github.io/phaseField/
Center for PRedictive Integrated
Structural Materials Science
Part 1:
Overview of PRISMS-PF and new features
Part 2:
Discussion on explicit nucleation models for phase field
simulations and implementation in PRISMS-PF
Part 3:
2D simulations of nucleation, growth, and coarsening in
an Mg-Nd alloy
Center for PRedictive Integrated
Structural Materials Science
Noise-Based Nucleation vs Explicit
Nucleation
Noised-based nucleation
• Noise is added to the solution,
which lead to super-critical
nuclei forming
• Pro: Mimics reality
• Pro: Easily accounts for all
coupled physics and
heterogeneities
• Con: Intractable for physical
noise scales
• Con: Artificially large noise can
degrade the solution
• Con: No easy connection
between artificially large noise
and nucleation rates
Explicit nucleation
• Super-critical nuclei are
algorithmically placed in the
domain
• Pro: Flexible, based on choice
of nucleation model
• Pro: Works on a mesoscale
length/time scale
• Pro: General nucleation
behavior is know a priori
• Con: Need a functional form
for the nucleation rate and
parameters
Center for PRedictive Integrated
Structural Materials Science
Explicit Nucleation: General Approach
1. Pick a form for the nucleation rate, j(c,η,t,…)
2. During a phase field simulation, periodically sample
subvolumes
3. In each subvolume, compare a random number
[0,1] to the following probability (from a Poisson
distribution)
4. If the random number is greater than p, add a
nucleus in the subvolume
Simmons, Chen, Wang, Scripta Materialia (2000)
Center for PRedictive Integrated
Structural Materials Science
How to Choose the Nucleation Rate?
• Need a model for the nucleation rate
• One common choice is classical nucleation
theory
– Although something else could be used
Center for PRedictive Integrated
Structural Materials Science
Classical Nucleation Theory (I)
• Continuum model usually for a spherical
nucleus
• Assume that the total energy change is broken
into volumetric energy and interfacial energy
• Assume the volumetric term can be split into
chemical and elastic terms
Balluffi, Allen, Carter, Kinetics of Materials (2005)
Center for PRedictive Integrated
Structural Materials Science
Classical Nucleation Theory (II)
• The volumetric term is
negative (favors nucleation,
the interfacial term is positive
(disfavors nucleation)
• The interfacial term dominates
for small nuclei, the
volumetric term dominates for
large nuclei
• Leads to a critical nucleus size Aaronson, Enomoto, and Lee, Mechanisms of
Diffusional Phase Transformations in Metals and
Alloys (2010)
Center for PRedictive Integrated
Structural Materials Science
Classical Nucleation Theory (III)
• Critical size is at:
• Which can be used to calculate the critical
energy and radius
Center for PRedictive Integrated
Structural Materials Science
Classical Nucleation Theory (IV)
• Allow clusters to grow or shrink by adding or
removing atoms (thermally activated)
• Assume an equilibrium distribution of nuclei
(with a constraint on the max size)
• Can calculate the rate of formation of stable
nuclei
Zeldovich factor
(Accounts for super-critical nuclei
that become sub-critical)
Density of nucleation
sites
Attachment rate
Center for PRedictive Integrated
Structural Materials Science
Classical Nucleation Theory (V)
• Assumes that the distribution of clusters is at
equilibrium
• It takes time for the clusters to grow
• Add an incubation time
Incubation time
Center for PRedictive Integrated
Structural Materials Science
Some Problems
1. How do we get the energies?
2. What if the clusters aren’t spherical?
3. What about heterogeneous nucleation?
These problems are magnified by the
exponential, small uncertainties can blow up
Simmons, Chen, Wang, Scripta Materialia (2000)
Center for PRedictive Integrated
Structural Materials Science
One Solution:
Throw Out (Much of) the Detail
Following the general approach from (Simmons, 2000)
Simmons, Chen, Wang, Scripta Materialia (2000)
Exploiting that, for dilute
solutions without strain energy
Where ρ1, ρ2, and τ can
be treated a free
parameters
Center for PRedictive Integrated
Structural Materials Science
How to Place the Nucleus?
1. Modify the composition field (Simmons, 2000)
2. Modify the nonconserved order parameter field
(Jokisaari, 2016)
Simmons, Chen, Wang, Scripta Materialia (2000)
Jokisaari, Permann, Thornton, Comp. Mater. Sci. (2016)
Move solute from the matrix into a cluster, leaving a depletion zone
Need to be careful not to introduce discontinuities, which cause instability
Add a nucleus to the order parameter
Don’t need to worry about conservation
Allow the composition field to naturally evolve
May want to “hold” the nucleus, as the composition field evolves
Center for PRedictive Integrated
Structural Materials Science
Implementation of Nucleation in
PRISMS-PF
• Both explicit nucleation and (naïve) noise-based nucleation
supported
– Our applications focus on order-parameter only explicit
nucleation
– Explicit nucleation requires some work in the background
• Available in any app
• Modular approach, works with:
– Grain remapping
– Multiple phases
– Couple time-independent PDEs (elasticity, electrostatics, etc.)
– Adaptive meshing
– Any other PRISMS-PF feature
Center for PRedictive Integrated
Structural Materials Science
Explicit Nucleation in PRISMS-PF
• User-defined expression for the nucleation
rate
• Nuclei are ellipses/ellipsoids with arbitrary
rotation
• Nucleus size/rotation and rate can be set
independently for different phases
Center for PRedictive Integrated
Structural Materials Science
Explicit Nucleation Procedure
At an user-specified frequency:
For the mesh held by each processor:
For every element:
Determine average variable values (c, n, etc.)
For each nucleating order parameter:
Calculate local nucleation probability
Compare with random number
If p > random number:
Check if the new nucleus overlaps with existing ones
Add it to the local list of new nuclei
Communicate local lists to build a global list
Eliminate overlapping nuclei
Refine the mesh near the new nuclei
Place the nuclei via a source term in the governing equations
Center for PRedictive Integrated
Structural Materials Science
Example: Grain Boundary Nucleation
David Montiel (UM)
Center for PRedictive Integrated
Structural Materials Science
Part 1:
Overview of PRISMS-PF and new features
Part 2:
Discussion on explicit nucleation models for phase field
simulations and implementation in PRISMS-PF
Part 3:
2D simulations of nucleation, growth, and coarsening
in an Mg-Nd alloy
Center for PRedictive Integrated
Structural Materials Science
Background: Mg-RE Precipitates
• Mg alloys of interest for
lightweighting structural
components
• Mg-RE alloys have
precipitates with habit
planes perpendicular to
the basal plane
• Effectively block
dislocation motion
Plots courtesy E. Deda, A. Githens (UM)
Schematics: J.F. Nie, Met. Trans. A, 43A,
3891 (2012)
Center for PRedictive Integrated
Structural Materials Science
Precipitation Sequence in Mg-Nd
Early work in the PRISMS Center examined the precipitation sequence:
[1] Natarajan, et al., Acta Materialia, 108 (2016)
[2] Solomon, et al., Scripta Materialia, 128 (2017)
[3] Saito and Hiraga, Materials Transactions, 52 (2011)
[1] [1] [3]
Primary phases that lead to precipitation strengthening
Center for PRedictive Integrated
Structural Materials Science
Previous Work: β’’’ Precipitates
Phase field modeling used to examine morphology and the relationship
between the misfit strain and the composition
Inputs from first principles/stat. mech.
Predicted equilibrium shapes
Quantitative comparisons to experiments
Identification of interactions that change
the morphology
DeWitt, et al., Acta Materialia, 136 (2017)
Center for PRedictive Integrated
Structural Materials Science
β1 Precipitates in Mg-Nd Alloys
• Now, we are building off of this success to
examine β1 precipitates
• Simulations of entire β1 microstructures during
aging
– β’’’ work showed the importance of interactions on
morphology
– Synthetic microstructures can be passed to
dislocation dynamics to predict strengthening
– Aging simulations get us closer to the capability to
optimize aging conditions for the desired
microstructure
Center for PRedictive Integrated
Structural Materials Science
Long-Term Vision
Fourier Space DFT
(VASP)
Statistical Mechanics
(CASM)
Phase Field
(PRISMS-PF)
Experiments
(HAADF-STEM,
APT)
Number
Density,
Volume
Fraction,
Dimensions
Finite Temp.
Energies
0K Energies
Elastic Constants, Transformation Strains
Enumerate
Configurations
Inform problem space
Dislocation Dynamics
(LLNL-ParaDIS)
Synthetic Precipitate
Microstructures
Experiments
(Tensile Tests)
Yield
Strength
(Validation)
Center for PRedictive Integrated
Structural Materials Science
Shorter-Term Approach
(This Work)
Fourier Space DFT
(VASP)
Phase Field
(PRISMS-PF)
Experiments
(HAADF-STEM,
APT)
Number
Density,
Volume
Fraction,
Dimensions
Elastic Constants, Transformation Strains
Inform problem space
Note: Work in progress
Center for PRedictive Integrated
Structural Materials Science
Nucleation Model for β1 Precipitates
• Use the 2D version of the simple classical nucleation
theory model for the nucleation rate [1]
• In principle could be parameterized via DFT, but in practice
it is too sensitive to error
• Instead, ρ1, ρ2, and τ are fit from experiments
– Need the number density and supersaturation during aging
[1] Simmons, Shen, and Wang, Scripta Materialia, 43 (2000)
Center for PRedictive Integrated
Structural Materials Science
[experimental results redacted]
Center for PRedictive Integrated
Structural Materials Science
Parameterizing the Nucleation Model
First, fit the composition using a hyperbolic tangent
Next, fit the number density using the nucleation model
Inhibit nucleation
before 1h
Center for PRedictive Integrated
Structural Materials Science
Phase Field Simulation of Nucleation,
Growth, and Coarsening
• Use this parameterized nucleation model for 2D phase field simulations
– 2D for computational tractability
– Longest precipitate axis perpendicular to the simulated plane
• 3 order parameters for 6 orientation variants
– Orientation variants with the same transformation strain share an order
parameter
– Random number decides the nucleus orientation for one variant or the other
• KKS model + linear elasticity
• Model inputs
– Homogenous free energies: Parabolas with the experimental equilibrium
compositions
– Interfacial energy: Isotropic, 50 mJ/m2 (estimate from Liu, 2014)
– Stress-free transformation strains: From DFT (Liu, 2014)
– Elastic constants: Homogenous, anisotropic, from DFT (Ji, 2014)
– Diffusion constant: From experiment
Liu et al., Acta Materialia, 77 (2014)
Ji et al., Acta Materialia, 76 (2014)PRISMS-PFAn Open-Source Phase Field Modeling Framework
Center for PRedictive Integrated
Structural Materials Science
Simulated Microstructure Evolution
• Precipitate shape is
qualitatively similar to
experiments
• All 6 variants present
• Largest precipitate is
approx. 0.5 μm at 6h
– Consistent with
experiments
• Fine precipitates
nucleating and
dissolving at the end
1.1μm
Center for PRedictive Integrated
Structural Materials Science
Simulated Microstructure Evolution
• Before 4 h, results are as expected
• After 4 h, new stable nucleus
formation stops prematurely
• Nucleation is still happening, but the
nuclei dissolve back into the matrix
• Average composition has a sigmoidal
shape, as expected
• Depletion of the matrix is delayed
compared to expectations
• Occurs even where the number
density is consistent with the
analytic model
Center for PRedictive Integrated
Structural Materials Science
Simulation vs. Experiment
Microstructure Comparison (4 h)
Simulation (4 periodic copies) TEM
Images are on the same scale
Diad/triad structures are much more common experimentally
Typical length of precipitates are similar, in the 200 nm range
Distribution in precipitate sizes wider in the simulation
5 0 0 n m
Center for PRedictive Integrated
Structural Materials Science
What’s going on?
Was this a typical
result? (yes)
What about
increasing the
diffusivity?
Center for PRedictive Integrated
Structural Materials Science
Why does stable nucleation end early?
• Mismatch between the nucleation model and the phase field model
• Nucleation events are still happening (nuclei stable in the nucleation
model)
• Nuclei no longer stable in the phase field simulation
• This possibility a consequence of the fitting strategy
• Possibilities:
• Interfacial energy is too high
• Experimental uncertainty (composition spatial variation, foil thickness)
Center for PRedictive Integrated
Structural Materials Science
Possible improvements
More experiments
- Understand what happens
between 1-4 h
Including strain energy in the
nucleation rate
- The characteristic triad
structures are favorable due to
strain energy [2]
- Should cause preferential
nucleation of particular variants
at precipitate tips
[1] Paliwal, et al., Scripta Materialia, 108 (2015)
[2] Liu, et al., Scientific Reports, 5 (2015)
Center for PRedictive Integrated
Structural Materials Science
On the path to quantitative phase field modeling
of precipitation during aging
Current strategy is valid for examining the effect
of average composition on the microstructure
Next large step to include temperature
dependence for validation and to eventually
optimize aging conditions
The microstructures from phase field can be
passed to dislocation dynamics to predict strength
Concluding Thoughts
Center for PRedictive Integrated
Structural Materials Science
Acknowledgements
Funding:
US DOE, Office of Science, Basic Energy Sciences
Award DE-SC0008637
PRISMS-PF Collaborators:
Shiva Rudraraju (now U. Wisconsin), Larry Aagesen (now INL),
David Montiel, Beck Andrews, Katsuyo Thornton
Experimental Collaborators
Qianying Shi, Zhihua Huang, John Allison
Center for PRedictive Integrated
Structural Materials Science
Questions?
Center for PRedictive Integrated
Structural Materials Science
Center for PRedictive Integrated
Structural Materials Science
Acknowledgements
Computational Resources:
Funding:
US DOE, Office of Science, Basic Energy Sciences
Award DE-SC0008637
deal.II Developers:

More Related Content

What's hot

PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
Preferred Networks
 
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
MOVING Project
 
ELLA LC algorithm presentation in ICIP 2016
ELLA LC algorithm presentation in ICIP 2016ELLA LC algorithm presentation in ICIP 2016
ELLA LC algorithm presentation in ICIP 2016
InVID Project
 
Molecular Simulation to build models for enzyme induced fit
Molecular Simulation to build models for enzyme induced fit Molecular Simulation to build models for enzyme induced fit
Molecular Simulation to build models for enzyme induced fit
MinSung Kim
 
IRJET-Multiple Object Detection using Deep Neural Networks
IRJET-Multiple Object Detection using Deep Neural NetworksIRJET-Multiple Object Detection using Deep Neural Networks
IRJET-Multiple Object Detection using Deep Neural Networks
IRJET Journal
 
00b7d51ed81834e4d7000000
00b7d51ed81834e4d700000000b7d51ed81834e4d7000000
00b7d51ed81834e4d7000000
Rahul Jain
 
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
AIRCC Publishing Corporation
 
Paraphrasing complex network
Paraphrasing complex networkParaphrasing complex network
Paraphrasing complex network
NAVER Engineering
 
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
ijsrd.com
 
Network recasting
Network recastingNetwork recasting
Network recasting
NAVER Engineering
 
Design of magnetic dipole based 3D integration nano-circuits for future elect...
Design of magnetic dipole based 3D integration nano-circuits for future elect...Design of magnetic dipole based 3D integration nano-circuits for future elect...
Design of magnetic dipole based 3D integration nano-circuits for future elect...
VIT-AP University
 
PVANet - PR033
PVANet - PR033PVANet - PR033
PVANet - PR033
Jinwon Lee
 
C++ neural networks and fuzzy logic
C++ neural networks and fuzzy logicC++ neural networks and fuzzy logic
C++ neural networks and fuzzy logicJamerson Ramos
 
EUCAP 2021_presentation (7)
EUCAP 2021_presentation (7)EUCAP 2021_presentation (7)
EUCAP 2021_presentation (7)
Hamdi Bilel
 
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
Sunghoon Joo
 
Multiple Style-Transfer in Real-Time
Multiple Style-Transfer in Real-TimeMultiple Style-Transfer in Real-Time
Multiple Style-Transfer in Real-Time
KaustavChakraborty28
 
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
ijceronline
 
Hybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transformsHybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transforms
Omar Ghazi
 

What's hot (20)

PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
PFP:材料探索のための汎用Neural Network Potential - 2021/10/4 QCMSR + DLAP共催
 
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
Deep Multi-task Learning with Label Correlation Constraint for Video Concept ...
 
ELLA LC algorithm presentation in ICIP 2016
ELLA LC algorithm presentation in ICIP 2016ELLA LC algorithm presentation in ICIP 2016
ELLA LC algorithm presentation in ICIP 2016
 
Molecular Simulation to build models for enzyme induced fit
Molecular Simulation to build models for enzyme induced fit Molecular Simulation to build models for enzyme induced fit
Molecular Simulation to build models for enzyme induced fit
 
IRJET-Multiple Object Detection using Deep Neural Networks
IRJET-Multiple Object Detection using Deep Neural NetworksIRJET-Multiple Object Detection using Deep Neural Networks
IRJET-Multiple Object Detection using Deep Neural Networks
 
00b7d51ed81834e4d7000000
00b7d51ed81834e4d700000000b7d51ed81834e4d7000000
00b7d51ed81834e4d7000000
 
Jc2415921599
Jc2415921599Jc2415921599
Jc2415921599
 
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
Concurrency Within Ternary Galois Processing of Highly-regular 3D Networks Vi...
 
Paraphrasing complex network
Paraphrasing complex networkParaphrasing complex network
Paraphrasing complex network
 
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
Introduction to Wavelet Transform and Two Stage Image DE noising Using Princi...
 
Network recasting
Network recastingNetwork recasting
Network recasting
 
Design of magnetic dipole based 3D integration nano-circuits for future elect...
Design of magnetic dipole based 3D integration nano-circuits for future elect...Design of magnetic dipole based 3D integration nano-circuits for future elect...
Design of magnetic dipole based 3D integration nano-circuits for future elect...
 
UIC Panella Thesis
UIC Panella ThesisUIC Panella Thesis
UIC Panella Thesis
 
PVANet - PR033
PVANet - PR033PVANet - PR033
PVANet - PR033
 
C++ neural networks and fuzzy logic
C++ neural networks and fuzzy logicC++ neural networks and fuzzy logic
C++ neural networks and fuzzy logic
 
EUCAP 2021_presentation (7)
EUCAP 2021_presentation (7)EUCAP 2021_presentation (7)
EUCAP 2021_presentation (7)
 
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
PR-373: Revisiting ResNets: Improved Training and Scaling Strategies.
 
Multiple Style-Transfer in Real-Time
Multiple Style-Transfer in Real-TimeMultiple Style-Transfer in Real-Time
Multiple Style-Transfer in Real-Time
 
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
PSO-based Training, Pruning, and Ensembling of Extreme Learning Machine RBF N...
 
Hybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transformsHybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transforms
 

Similar to Using an Explicit Nucleation Model in PRISIMS-PF to Predict Precipate Microstrucutures

CloudLightning and the OPM-based Use Case
CloudLightning and the OPM-based Use CaseCloudLightning and the OPM-based Use Case
CloudLightning and the OPM-based Use Case
CloudLightning
 
01-10 Exploring new high potential 2D materials - Angioni.pdf
01-10 Exploring new high potential 2D materials - Angioni.pdf01-10 Exploring new high potential 2D materials - Angioni.pdf
01-10 Exploring new high potential 2D materials - Angioni.pdf
OCRE | Open Clouds for Research Environments
 
C hi mad_phasefieldworkshop(1)
C hi mad_phasefieldworkshop(1)C hi mad_phasefieldworkshop(1)
C hi mad_phasefieldworkshop(1)
PFHub PFHub
 
ECP Application Development
ECP Application DevelopmentECP Application Development
ECP Application Development
inside-BigData.com
 
Grid is Dead ? Nimrod on the Cloud
Grid is Dead ? Nimrod on the CloudGrid is Dead ? Nimrod on the Cloud
Grid is Dead ? Nimrod on the Cloud
Adianto Wibisono
 
Be cse
Be cseBe cse
Be cse
imamruta
 
The Pacific Research Platform
The Pacific Research PlatformThe Pacific Research Platform
The Pacific Research Platform
Larry Smarr
 
PNNL April 2011 ogce
PNNL April 2011 ogcePNNL April 2011 ogce
PNNL April 2011 ogce
marpierc
 
Physics inspired artificial intelligence/machine learning
Physics inspired artificial intelligence/machine learningPhysics inspired artificial intelligence/machine learning
Physics inspired artificial intelligence/machine learning
KAMAL CHOUDHARY
 
How HPC and large-scale data analytics are transforming experimental science
How HPC and large-scale data analytics are transforming experimental scienceHow HPC and large-scale data analytics are transforming experimental science
How HPC and large-scale data analytics are transforming experimental science
inside-BigData.com
 
Evaluating Machine Learning Algorithms for Materials Science using the Matben...
Evaluating Machine Learning Algorithms for Materials Science using the Matben...Evaluating Machine Learning Algorithms for Materials Science using the Matben...
Evaluating Machine Learning Algorithms for Materials Science using the Matben...
Anubhav Jain
 
Storrs HPC Overview - Feb. 2017
Storrs HPC Overview - Feb. 2017Storrs HPC Overview - Feb. 2017
Storrs HPC Overview - Feb. 2017
Ed S
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computingbutest
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computingbutest
 
Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...
Anubhav Jain
 
Software tools to facilitate materials science research
Software tools to facilitate materials science researchSoftware tools to facilitate materials science research
Software tools to facilitate materials science research
Anubhav Jain
 
Fahroo - Computational Mathematics - Spring Review 2013
Fahroo - Computational Mathematics - Spring Review 2013Fahroo - Computational Mathematics - Spring Review 2013
Fahroo - Computational Mathematics - Spring Review 2013
The Air Force Office of Scientific Research
 
High–Performance Computing
High–Performance ComputingHigh–Performance Computing
High–Performance Computing
BRAC University Computer Club
 
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
inside-BigData.com
 
Hpc, grid and cloud computing - the past, present, and future challenge
Hpc, grid and cloud computing - the past, present, and future challengeHpc, grid and cloud computing - the past, present, and future challenge
Hpc, grid and cloud computing - the past, present, and future challengeJason Shih
 

Similar to Using an Explicit Nucleation Model in PRISIMS-PF to Predict Precipate Microstrucutures (20)

CloudLightning and the OPM-based Use Case
CloudLightning and the OPM-based Use CaseCloudLightning and the OPM-based Use Case
CloudLightning and the OPM-based Use Case
 
01-10 Exploring new high potential 2D materials - Angioni.pdf
01-10 Exploring new high potential 2D materials - Angioni.pdf01-10 Exploring new high potential 2D materials - Angioni.pdf
01-10 Exploring new high potential 2D materials - Angioni.pdf
 
C hi mad_phasefieldworkshop(1)
C hi mad_phasefieldworkshop(1)C hi mad_phasefieldworkshop(1)
C hi mad_phasefieldworkshop(1)
 
ECP Application Development
ECP Application DevelopmentECP Application Development
ECP Application Development
 
Grid is Dead ? Nimrod on the Cloud
Grid is Dead ? Nimrod on the CloudGrid is Dead ? Nimrod on the Cloud
Grid is Dead ? Nimrod on the Cloud
 
Be cse
Be cseBe cse
Be cse
 
The Pacific Research Platform
The Pacific Research PlatformThe Pacific Research Platform
The Pacific Research Platform
 
PNNL April 2011 ogce
PNNL April 2011 ogcePNNL April 2011 ogce
PNNL April 2011 ogce
 
Physics inspired artificial intelligence/machine learning
Physics inspired artificial intelligence/machine learningPhysics inspired artificial intelligence/machine learning
Physics inspired artificial intelligence/machine learning
 
How HPC and large-scale data analytics are transforming experimental science
How HPC and large-scale data analytics are transforming experimental scienceHow HPC and large-scale data analytics are transforming experimental science
How HPC and large-scale data analytics are transforming experimental science
 
Evaluating Machine Learning Algorithms for Materials Science using the Matben...
Evaluating Machine Learning Algorithms for Materials Science using the Matben...Evaluating Machine Learning Algorithms for Materials Science using the Matben...
Evaluating Machine Learning Algorithms for Materials Science using the Matben...
 
Storrs HPC Overview - Feb. 2017
Storrs HPC Overview - Feb. 2017Storrs HPC Overview - Feb. 2017
Storrs HPC Overview - Feb. 2017
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...Software tools, crystal descriptors, and machine learning applied to material...
Software tools, crystal descriptors, and machine learning applied to material...
 
Software tools to facilitate materials science research
Software tools to facilitate materials science researchSoftware tools to facilitate materials science research
Software tools to facilitate materials science research
 
Fahroo - Computational Mathematics - Spring Review 2013
Fahroo - Computational Mathematics - Spring Review 2013Fahroo - Computational Mathematics - Spring Review 2013
Fahroo - Computational Mathematics - Spring Review 2013
 
High–Performance Computing
High–Performance ComputingHigh–Performance Computing
High–Performance Computing
 
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
40 Powers of 10 - Simulating the Universe with the DiRAC HPC Facility
 
Hpc, grid and cloud computing - the past, present, and future challenge
Hpc, grid and cloud computing - the past, present, and future challengeHpc, grid and cloud computing - the past, present, and future challenge
Hpc, grid and cloud computing - the past, present, and future challenge
 

More from Daniel Wheeler

Theoretical and Applied Phase-Field: Glimpses of the activities in India
Theoretical and Applied Phase-Field: Glimpses of the activities in IndiaTheoretical and Applied Phase-Field: Glimpses of the activities in India
Theoretical and Applied Phase-Field: Glimpses of the activities in India
Daniel Wheeler
 
Update on Benchmark 7
Update on Benchmark 7Update on Benchmark 7
Update on Benchmark 7
Daniel Wheeler
 
Phase-field modeling of crystal nucleation II: Comparison with simulations an...
Phase-field modeling of crystal nucleation II: Comparison with simulations an...Phase-field modeling of crystal nucleation II: Comparison with simulations an...
Phase-field modeling of crystal nucleation II: Comparison with simulations an...
Daniel Wheeler
 
Benchmark 6 Update
Benchmark 6 UpdateBenchmark 6 Update
Benchmark 6 Update
Daniel Wheeler
 
Phase-field modeling of crystal nucleation I: Fundamentals and methods
Phase-field modeling of crystal nucleation I: Fundamentals and methodsPhase-field modeling of crystal nucleation I: Fundamentals and methods
Phase-field modeling of crystal nucleation I: Fundamentals and methods
Daniel Wheeler
 
Nucleation III: Phase-field crystal modeling of nucleation process
Nucleation III: Phase-field crystal modeling of nucleation processNucleation III: Phase-field crystal modeling of nucleation process
Nucleation III: Phase-field crystal modeling of nucleation process
Daniel Wheeler
 
PFHub: Phase Field Community Hub
PFHub: Phase Field Community HubPFHub: Phase Field Community Hub
PFHub: Phase Field Community Hub
Daniel Wheeler
 
CHiMaD Hackathon 2: University of Michigan
CHiMaD Hackathon 2: University of MichiganCHiMaD Hackathon 2: University of Michigan
CHiMaD Hackathon 2: University of Michigan
Daniel Wheeler
 
CHiMaD Hackathon 2
CHiMaD Hackathon 2CHiMaD Hackathon 2
CHiMaD Hackathon 2
Daniel Wheeler
 
CHiMaD Hackathon 2: Team mcgill
CHiMaD Hackathon 2: Team mcgillCHiMaD Hackathon 2: Team mcgill
CHiMaD Hackathon 2: Team mcgill
Daniel Wheeler
 
CHiMaD Hackathon 2: Pennsylvania State University
CHiMaD Hackathon 2: Pennsylvania State UniversityCHiMaD Hackathon 2: Pennsylvania State University
CHiMaD Hackathon 2: Pennsylvania State University
Daniel Wheeler
 
CHiMaD Phase Field Hackathon 2: University of Connecticut
CHiMaD Phase Field Hackathon 2: University of ConnecticutCHiMaD Phase Field Hackathon 2: University of Connecticut
CHiMaD Phase Field Hackathon 2: University of Connecticut
Daniel Wheeler
 
Simulation Management and Execution Control
Simulation Management and Execution ControlSimulation Management and Execution Control
Simulation Management and Execution Control
Daniel Wheeler
 
Pfii u mich
Pfii u michPfii u mich
Pfii u mich
Daniel Wheeler
 
Team3 pres
Team3 presTeam3 pres
Team3 pres
Daniel Wheeler
 
Team2 pres
Team2 presTeam2 pres
Team2 pres
Daniel Wheeler
 
Results oct.16.2015
Results oct.16.2015Results oct.16.2015
Results oct.16.2015
Daniel Wheeler
 

More from Daniel Wheeler (17)

Theoretical and Applied Phase-Field: Glimpses of the activities in India
Theoretical and Applied Phase-Field: Glimpses of the activities in IndiaTheoretical and Applied Phase-Field: Glimpses of the activities in India
Theoretical and Applied Phase-Field: Glimpses of the activities in India
 
Update on Benchmark 7
Update on Benchmark 7Update on Benchmark 7
Update on Benchmark 7
 
Phase-field modeling of crystal nucleation II: Comparison with simulations an...
Phase-field modeling of crystal nucleation II: Comparison with simulations an...Phase-field modeling of crystal nucleation II: Comparison with simulations an...
Phase-field modeling of crystal nucleation II: Comparison with simulations an...
 
Benchmark 6 Update
Benchmark 6 UpdateBenchmark 6 Update
Benchmark 6 Update
 
Phase-field modeling of crystal nucleation I: Fundamentals and methods
Phase-field modeling of crystal nucleation I: Fundamentals and methodsPhase-field modeling of crystal nucleation I: Fundamentals and methods
Phase-field modeling of crystal nucleation I: Fundamentals and methods
 
Nucleation III: Phase-field crystal modeling of nucleation process
Nucleation III: Phase-field crystal modeling of nucleation processNucleation III: Phase-field crystal modeling of nucleation process
Nucleation III: Phase-field crystal modeling of nucleation process
 
PFHub: Phase Field Community Hub
PFHub: Phase Field Community HubPFHub: Phase Field Community Hub
PFHub: Phase Field Community Hub
 
CHiMaD Hackathon 2: University of Michigan
CHiMaD Hackathon 2: University of MichiganCHiMaD Hackathon 2: University of Michigan
CHiMaD Hackathon 2: University of Michigan
 
CHiMaD Hackathon 2
CHiMaD Hackathon 2CHiMaD Hackathon 2
CHiMaD Hackathon 2
 
CHiMaD Hackathon 2: Team mcgill
CHiMaD Hackathon 2: Team mcgillCHiMaD Hackathon 2: Team mcgill
CHiMaD Hackathon 2: Team mcgill
 
CHiMaD Hackathon 2: Pennsylvania State University
CHiMaD Hackathon 2: Pennsylvania State UniversityCHiMaD Hackathon 2: Pennsylvania State University
CHiMaD Hackathon 2: Pennsylvania State University
 
CHiMaD Phase Field Hackathon 2: University of Connecticut
CHiMaD Phase Field Hackathon 2: University of ConnecticutCHiMaD Phase Field Hackathon 2: University of Connecticut
CHiMaD Phase Field Hackathon 2: University of Connecticut
 
Simulation Management and Execution Control
Simulation Management and Execution ControlSimulation Management and Execution Control
Simulation Management and Execution Control
 
Pfii u mich
Pfii u michPfii u mich
Pfii u mich
 
Team3 pres
Team3 presTeam3 pres
Team3 pres
 
Team2 pres
Team2 presTeam2 pres
Team2 pres
 
Results oct.16.2015
Results oct.16.2015Results oct.16.2015
Results oct.16.2015
 

Recently uploaded

Comparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebratesComparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebrates
sachin783648
 
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
Sérgio Sacani
 
NuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final versionNuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final version
pablovgd
 
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
Health Advances
 
RNA INTERFERENCE: UNRAVELING GENETIC SILENCING
RNA INTERFERENCE: UNRAVELING GENETIC SILENCINGRNA INTERFERENCE: UNRAVELING GENETIC SILENCING
RNA INTERFERENCE: UNRAVELING GENETIC SILENCING
AADYARAJPANDEY1
 
Hemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptxHemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptx
muralinath2
 
insect taxonomy importance systematics and classification
insect taxonomy importance systematics and classificationinsect taxonomy importance systematics and classification
insect taxonomy importance systematics and classification
anitaento25
 
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptxBody fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
muralinath2
 
plant biotechnology Lecture note ppt.pptx
plant biotechnology Lecture note ppt.pptxplant biotechnology Lecture note ppt.pptx
plant biotechnology Lecture note ppt.pptx
yusufzako14
 
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
Scintica Instrumentation
 
EY - Supply Chain Services 2018_template.pptx
EY - Supply Chain Services 2018_template.pptxEY - Supply Chain Services 2018_template.pptx
EY - Supply Chain Services 2018_template.pptx
AlguinaldoKong
 
Structures and textures of metamorphic rocks
Structures and textures of metamorphic rocksStructures and textures of metamorphic rocks
Structures and textures of metamorphic rocks
kumarmathi863
 
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdfSCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SELF-EXPLANATORY
 
Penicillin...........................pptx
Penicillin...........................pptxPenicillin...........................pptx
Penicillin...........................pptx
Cherry
 
Nutraceutical market, scope and growth: Herbal drug technology
Nutraceutical market, scope and growth: Herbal drug technologyNutraceutical market, scope and growth: Herbal drug technology
Nutraceutical market, scope and growth: Herbal drug technology
Lokesh Patil
 
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
NathanBaughman3
 
In silico drugs analogue design: novobiocin analogues.pptx
In silico drugs analogue design: novobiocin analogues.pptxIn silico drugs analogue design: novobiocin analogues.pptx
In silico drugs analogue design: novobiocin analogues.pptx
AlaminAfendy1
 
Viksit bharat till 2047 India@2047.pptx
Viksit bharat till 2047  India@2047.pptxViksit bharat till 2047  India@2047.pptx
Viksit bharat till 2047 India@2047.pptx
rakeshsharma20142015
 
justice-and-fairness-ethics with example
justice-and-fairness-ethics with examplejustice-and-fairness-ethics with example
justice-and-fairness-ethics with example
azzyixes
 
extra-chromosomal-inheritance[1].pptx.pdfpdf
extra-chromosomal-inheritance[1].pptx.pdfpdfextra-chromosomal-inheritance[1].pptx.pdfpdf
extra-chromosomal-inheritance[1].pptx.pdfpdf
DiyaBiswas10
 

Recently uploaded (20)

Comparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebratesComparative structure of adrenal gland in vertebrates
Comparative structure of adrenal gland in vertebrates
 
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
THE IMPORTANCE OF MARTIAN ATMOSPHERE SAMPLE RETURN.
 
NuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final versionNuGOweek 2024 Ghent - programme - final version
NuGOweek 2024 Ghent - programme - final version
 
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...The ASGCT Annual Meeting was packed with exciting progress in the field advan...
The ASGCT Annual Meeting was packed with exciting progress in the field advan...
 
RNA INTERFERENCE: UNRAVELING GENETIC SILENCING
RNA INTERFERENCE: UNRAVELING GENETIC SILENCINGRNA INTERFERENCE: UNRAVELING GENETIC SILENCING
RNA INTERFERENCE: UNRAVELING GENETIC SILENCING
 
Hemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptxHemoglobin metabolism_pathophysiology.pptx
Hemoglobin metabolism_pathophysiology.pptx
 
insect taxonomy importance systematics and classification
insect taxonomy importance systematics and classificationinsect taxonomy importance systematics and classification
insect taxonomy importance systematics and classification
 
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptxBody fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
Body fluids_tonicity_dehydration_hypovolemia_hypervolemia.pptx
 
plant biotechnology Lecture note ppt.pptx
plant biotechnology Lecture note ppt.pptxplant biotechnology Lecture note ppt.pptx
plant biotechnology Lecture note ppt.pptx
 
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
(May 29th, 2024) Advancements in Intravital Microscopy- Insights for Preclini...
 
EY - Supply Chain Services 2018_template.pptx
EY - Supply Chain Services 2018_template.pptxEY - Supply Chain Services 2018_template.pptx
EY - Supply Chain Services 2018_template.pptx
 
Structures and textures of metamorphic rocks
Structures and textures of metamorphic rocksStructures and textures of metamorphic rocks
Structures and textures of metamorphic rocks
 
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdfSCHIZOPHRENIA Disorder/ Brain Disorder.pdf
SCHIZOPHRENIA Disorder/ Brain Disorder.pdf
 
Penicillin...........................pptx
Penicillin...........................pptxPenicillin...........................pptx
Penicillin...........................pptx
 
Nutraceutical market, scope and growth: Herbal drug technology
Nutraceutical market, scope and growth: Herbal drug technologyNutraceutical market, scope and growth: Herbal drug technology
Nutraceutical market, scope and growth: Herbal drug technology
 
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
Astronomy Update- Curiosity’s exploration of Mars _ Local Briefs _ leadertele...
 
In silico drugs analogue design: novobiocin analogues.pptx
In silico drugs analogue design: novobiocin analogues.pptxIn silico drugs analogue design: novobiocin analogues.pptx
In silico drugs analogue design: novobiocin analogues.pptx
 
Viksit bharat till 2047 India@2047.pptx
Viksit bharat till 2047  India@2047.pptxViksit bharat till 2047  India@2047.pptx
Viksit bharat till 2047 India@2047.pptx
 
justice-and-fairness-ethics with example
justice-and-fairness-ethics with examplejustice-and-fairness-ethics with example
justice-and-fairness-ethics with example
 
extra-chromosomal-inheritance[1].pptx.pdfpdf
extra-chromosomal-inheritance[1].pptx.pdfpdfextra-chromosomal-inheritance[1].pptx.pdfpdf
extra-chromosomal-inheritance[1].pptx.pdfpdf
 

Using an Explicit Nucleation Model in PRISIMS-PF to Predict Precipate Microstrucutures

  • 1. Center for PRedictive Integrated Structural Materials Science Using an Explicit Nucleation Model in PRISMS-PF to Predict Precipitate Microstructures Stephen DeWitt Dept. of Materials Science and Engineering University of Michigan Phase Field Workshop VII
  • 2. Center for PRedictive Integrated Structural Materials Science Part 1: Overview of PRISMS-PF and new features Part 2: Discussion on explicit nucleation models for phase field simulations and implementation in PRISMS-PF Part 3: 2D simulations of nucleation, growth, and coarsening in an Mg-Nd alloy
  • 3. Center for PRedictive Integrated Structural Materials Science Lead Developer: Stephen DeWitt1 PRISMS-PFAn Open-Source Phase Field Modeling Framework Associated PRISMS Faculty: Katsuyo Thornton1 Primary Contributors: Shiva Rudraraju2*, Larry Aagesen1**, David Montiel1, and Beck Andrews1 1. Dept. of Materials Science and Engineering, University of Michigan 2. Dept. of Mechanical Engineering, University of Michigan * (Now at the University of Wisconsin) ** (Now at Idaho National Laboratory)
  • 4. Center for PRedictive Integrated Structural Materials Science What’s hard about writing a phase field code? 1. Wide diversity of models and coupled physics makes code reuse difficult No real “typical” governing equations Large variety of formulations and terms
  • 5. Center for PRedictive Integrated Structural Materials Science What’s hard about writing a phase field code? 2. Simulating large, physically representative systems is computationally intensive Simulations often take days on 10s-100s of cores Simulations are often done in 2D for tractability Physical fidelity requires strong numerical performance nersc.gov
  • 6. Center for PRedictive Integrated Structural Materials Science Four Principles Guiding PRISMS-PF Development 1. Its computational performance, including parallel scalability, should meet or exceed that of typical phase field codes 2. It should accommodate a wide variety of phase field models and applications 3. The interface for creating or modifying governing equations should be simple, quick, and separate from the numerics 4. It should be open source with a permissive license so it is available to everyone and advances can be shared by the community
  • 7. Center for PRedictive Integrated Structural Materials Science User-Friendly: Simple interface to solve an arbitrary number of coupled PDEs Detailed online user guide 24 applications to get you started Simple Docker-based installation High-Performance: Ideal scaling for >1,000 processors Improved performance over finite difference (approx. 10x w/o adaptive meshing, 100+ x w/ adaptive meshing) An Open Source, Finite Element, General Purpose Phase-Field Platform (github.com/prisms-center/phaseField) PRISMS-PFAn Open-Source Phase Field Modeling Framework Advanced Capabilities: Matrix-free finite element approach High-order elements Hybrid parallelization: MPI/Threads/Vectorization Adaptive meshing Explicit nucleus placement Grain-remapping
  • 8. Center for PRedictive Integrated Structural Materials Science PRISMS-PF Performance: Matrix-Free Approach • Leverages the matrix-free finite element capabilities of the deal.II library • Cell-based strategy eliminates the need for a sparse matrix – Operator instead applied element-by-element – Unit cell operations same for all cells permitting vectorization • Sum factorization – Restructuring of the operation as the tensor product of 1D operations • Gauss-Lobatto elements – Uses the same points for support and quadrature – Diagonal “mass matrix” enables explicit time stepping without “mass lumping” or solving a system of equations – Well-conditioned for high order elements • Together these: • Reduce memory bandwidth which often limits sparse matrix operations • May reduce floating point operations (large reductions at high order) Kronbichler and Kormann, Computers & Fluids, 63 (2012)
  • 9. Center for PRedictive Integrated Structural Materials Science PRISMS-PF Performance: Adaptive Meshing Adaptive octree meshes using the p4est library Depending on the geometry can massively decrease the size of a calculation
  • 10. Center for PRedictive Integrated Structural Materials Science Performance vs. Finite Difference • PRISMS-PF and custom finite difference code – Written in Fortran with MPI parallelization – Second order central differencing – Explicit time stepping (forward Euler) • 2 growing particles in 3D – Coupled Cahn-Hilliard/Allen-Cahn – Closely related to a number of problems of physical interest (precipitation, solidification, etc.)
  • 11. Center for PRedictive Integrated Structural Materials Science Speed-up vs. Finite Difference at 4 Error Levels
  • 12. Center for PRedictive Integrated Structural Materials Science Performance on PFHub BM3 • Simulation with cubic elements and adaptive meshing • h = 1/384, Δt = 0.005 • Result is well converged – Decreasing h by 1/2 and Δt by 1/10, leads to 1% change in the velocity
  • 13. Center for PRedictive Integrated Structural Materials Science Comparison to Other Uploads Framework Tip Velocity at t = 1500 Core-h Required Memory (GB) PRISMS-PF 8.6×10-4 0.30 0.29 MOOSE (#2) 8.1×10-4 0.51 36.3 MOOSE (#1) 5.5×10-4 241 6.7 FreeFem++ 7.4×10-4 100 0.098 FiPy 1.2×10-3 74 1.9 PRISMS-PF
  • 14. Center for PRedictive Integrated Structural Materials Science New Features: Grain Remapping • Each grain is identified using a recursive flood fill • Simplified representation of each grain is stored – Currently a circle/sphere – A persistent grain ID is saved for each grain • Modified greedy coloring algorithm to determine the new home for a grain marked for transfer Order Parameter 1 Order Parameter 2 Too close Marked for transfer Permann, Tonks, Fromm, Gaston, Comp. Mater. Sci. (2016)
  • 15. Center for PRedictive Integrated Structural Materials Science New Features: Grain Remapping • Each grain is identified using a recursive flood fill • Simplified representation of each grain is stored – Currently a circle/sphere – A persistent grain ID is saved for each grain • Modified greedy coloring algorithm to determine the new home for a grain marked for transfer Initial microstructure imported from Permann, Tonks, Fromm, Gaston, Comp. Mater. Sci. (2016)
  • 16. Center for PRedictive Integrated Structural Materials Science New Features: Materials Commons Integration Command line tool automatically parses the PRISMS-PF app files and uploads the metadata and simulation results to Materials Commons
  • 17. Center for PRedictive Integrated Structural Materials Science New Features: Website and User Manual PRISMS-PF has a brand new website, including an online manual replacing the PDF file https://prisms-center.github.io/phaseField/
  • 18. Center for PRedictive Integrated Structural Materials Science Other New(ish) Features: • Explicit nucleus placement (more on this later) • Hybrid Newton/Picard nonlinear solver • Checkpoint/restart • Postprocessing • Docker-based installation • Automatic integration testing with Travis CI
  • 19. Center for PRedictive Integrated Structural Materials Science Summary • Flexible, and easy-to-use framework for phase field modeling • Highly competitive performance – 1-2 orders of magnitude faster than finite difference – Fastest published time for BM3 • Advanced features such as nucleation and grain remapping • Talk to me if you want to know more PRISMS-PFAn Open-Source Phase Field Modeling Framework https://prisms-center.github.io/phaseField/
  • 20. Center for PRedictive Integrated Structural Materials Science Part 1: Overview of PRISMS-PF and new features Part 2: Discussion on explicit nucleation models for phase field simulations and implementation in PRISMS-PF Part 3: 2D simulations of nucleation, growth, and coarsening in an Mg-Nd alloy
  • 21. Center for PRedictive Integrated Structural Materials Science Noise-Based Nucleation vs Explicit Nucleation Noised-based nucleation • Noise is added to the solution, which lead to super-critical nuclei forming • Pro: Mimics reality • Pro: Easily accounts for all coupled physics and heterogeneities • Con: Intractable for physical noise scales • Con: Artificially large noise can degrade the solution • Con: No easy connection between artificially large noise and nucleation rates Explicit nucleation • Super-critical nuclei are algorithmically placed in the domain • Pro: Flexible, based on choice of nucleation model • Pro: Works on a mesoscale length/time scale • Pro: General nucleation behavior is know a priori • Con: Need a functional form for the nucleation rate and parameters
  • 22. Center for PRedictive Integrated Structural Materials Science Explicit Nucleation: General Approach 1. Pick a form for the nucleation rate, j(c,η,t,…) 2. During a phase field simulation, periodically sample subvolumes 3. In each subvolume, compare a random number [0,1] to the following probability (from a Poisson distribution) 4. If the random number is greater than p, add a nucleus in the subvolume Simmons, Chen, Wang, Scripta Materialia (2000)
  • 23. Center for PRedictive Integrated Structural Materials Science How to Choose the Nucleation Rate? • Need a model for the nucleation rate • One common choice is classical nucleation theory – Although something else could be used
  • 24. Center for PRedictive Integrated Structural Materials Science Classical Nucleation Theory (I) • Continuum model usually for a spherical nucleus • Assume that the total energy change is broken into volumetric energy and interfacial energy • Assume the volumetric term can be split into chemical and elastic terms Balluffi, Allen, Carter, Kinetics of Materials (2005)
  • 25. Center for PRedictive Integrated Structural Materials Science Classical Nucleation Theory (II) • The volumetric term is negative (favors nucleation, the interfacial term is positive (disfavors nucleation) • The interfacial term dominates for small nuclei, the volumetric term dominates for large nuclei • Leads to a critical nucleus size Aaronson, Enomoto, and Lee, Mechanisms of Diffusional Phase Transformations in Metals and Alloys (2010)
  • 26. Center for PRedictive Integrated Structural Materials Science Classical Nucleation Theory (III) • Critical size is at: • Which can be used to calculate the critical energy and radius
  • 27. Center for PRedictive Integrated Structural Materials Science Classical Nucleation Theory (IV) • Allow clusters to grow or shrink by adding or removing atoms (thermally activated) • Assume an equilibrium distribution of nuclei (with a constraint on the max size) • Can calculate the rate of formation of stable nuclei Zeldovich factor (Accounts for super-critical nuclei that become sub-critical) Density of nucleation sites Attachment rate
  • 28. Center for PRedictive Integrated Structural Materials Science Classical Nucleation Theory (V) • Assumes that the distribution of clusters is at equilibrium • It takes time for the clusters to grow • Add an incubation time Incubation time
  • 29. Center for PRedictive Integrated Structural Materials Science Some Problems 1. How do we get the energies? 2. What if the clusters aren’t spherical? 3. What about heterogeneous nucleation? These problems are magnified by the exponential, small uncertainties can blow up Simmons, Chen, Wang, Scripta Materialia (2000)
  • 30. Center for PRedictive Integrated Structural Materials Science One Solution: Throw Out (Much of) the Detail Following the general approach from (Simmons, 2000) Simmons, Chen, Wang, Scripta Materialia (2000) Exploiting that, for dilute solutions without strain energy Where ρ1, ρ2, and τ can be treated a free parameters
  • 31. Center for PRedictive Integrated Structural Materials Science How to Place the Nucleus? 1. Modify the composition field (Simmons, 2000) 2. Modify the nonconserved order parameter field (Jokisaari, 2016) Simmons, Chen, Wang, Scripta Materialia (2000) Jokisaari, Permann, Thornton, Comp. Mater. Sci. (2016) Move solute from the matrix into a cluster, leaving a depletion zone Need to be careful not to introduce discontinuities, which cause instability Add a nucleus to the order parameter Don’t need to worry about conservation Allow the composition field to naturally evolve May want to “hold” the nucleus, as the composition field evolves
  • 32. Center for PRedictive Integrated Structural Materials Science Implementation of Nucleation in PRISMS-PF • Both explicit nucleation and (naïve) noise-based nucleation supported – Our applications focus on order-parameter only explicit nucleation – Explicit nucleation requires some work in the background • Available in any app • Modular approach, works with: – Grain remapping – Multiple phases – Couple time-independent PDEs (elasticity, electrostatics, etc.) – Adaptive meshing – Any other PRISMS-PF feature
  • 33. Center for PRedictive Integrated Structural Materials Science Explicit Nucleation in PRISMS-PF • User-defined expression for the nucleation rate • Nuclei are ellipses/ellipsoids with arbitrary rotation • Nucleus size/rotation and rate can be set independently for different phases
  • 34. Center for PRedictive Integrated Structural Materials Science Explicit Nucleation Procedure At an user-specified frequency: For the mesh held by each processor: For every element: Determine average variable values (c, n, etc.) For each nucleating order parameter: Calculate local nucleation probability Compare with random number If p > random number: Check if the new nucleus overlaps with existing ones Add it to the local list of new nuclei Communicate local lists to build a global list Eliminate overlapping nuclei Refine the mesh near the new nuclei Place the nuclei via a source term in the governing equations
  • 35. Center for PRedictive Integrated Structural Materials Science Example: Grain Boundary Nucleation David Montiel (UM)
  • 36. Center for PRedictive Integrated Structural Materials Science Part 1: Overview of PRISMS-PF and new features Part 2: Discussion on explicit nucleation models for phase field simulations and implementation in PRISMS-PF Part 3: 2D simulations of nucleation, growth, and coarsening in an Mg-Nd alloy
  • 37. Center for PRedictive Integrated Structural Materials Science Background: Mg-RE Precipitates • Mg alloys of interest for lightweighting structural components • Mg-RE alloys have precipitates with habit planes perpendicular to the basal plane • Effectively block dislocation motion Plots courtesy E. Deda, A. Githens (UM) Schematics: J.F. Nie, Met. Trans. A, 43A, 3891 (2012)
  • 38. Center for PRedictive Integrated Structural Materials Science Precipitation Sequence in Mg-Nd Early work in the PRISMS Center examined the precipitation sequence: [1] Natarajan, et al., Acta Materialia, 108 (2016) [2] Solomon, et al., Scripta Materialia, 128 (2017) [3] Saito and Hiraga, Materials Transactions, 52 (2011) [1] [1] [3] Primary phases that lead to precipitation strengthening
  • 39. Center for PRedictive Integrated Structural Materials Science Previous Work: β’’’ Precipitates Phase field modeling used to examine morphology and the relationship between the misfit strain and the composition Inputs from first principles/stat. mech. Predicted equilibrium shapes Quantitative comparisons to experiments Identification of interactions that change the morphology DeWitt, et al., Acta Materialia, 136 (2017)
  • 40. Center for PRedictive Integrated Structural Materials Science β1 Precipitates in Mg-Nd Alloys • Now, we are building off of this success to examine β1 precipitates • Simulations of entire β1 microstructures during aging – β’’’ work showed the importance of interactions on morphology – Synthetic microstructures can be passed to dislocation dynamics to predict strengthening – Aging simulations get us closer to the capability to optimize aging conditions for the desired microstructure
  • 41. Center for PRedictive Integrated Structural Materials Science Long-Term Vision Fourier Space DFT (VASP) Statistical Mechanics (CASM) Phase Field (PRISMS-PF) Experiments (HAADF-STEM, APT) Number Density, Volume Fraction, Dimensions Finite Temp. Energies 0K Energies Elastic Constants, Transformation Strains Enumerate Configurations Inform problem space Dislocation Dynamics (LLNL-ParaDIS) Synthetic Precipitate Microstructures Experiments (Tensile Tests) Yield Strength (Validation)
  • 42. Center for PRedictive Integrated Structural Materials Science Shorter-Term Approach (This Work) Fourier Space DFT (VASP) Phase Field (PRISMS-PF) Experiments (HAADF-STEM, APT) Number Density, Volume Fraction, Dimensions Elastic Constants, Transformation Strains Inform problem space Note: Work in progress
  • 43. Center for PRedictive Integrated Structural Materials Science Nucleation Model for β1 Precipitates • Use the 2D version of the simple classical nucleation theory model for the nucleation rate [1] • In principle could be parameterized via DFT, but in practice it is too sensitive to error • Instead, ρ1, ρ2, and τ are fit from experiments – Need the number density and supersaturation during aging [1] Simmons, Shen, and Wang, Scripta Materialia, 43 (2000)
  • 44. Center for PRedictive Integrated Structural Materials Science [experimental results redacted]
  • 45. Center for PRedictive Integrated Structural Materials Science Parameterizing the Nucleation Model First, fit the composition using a hyperbolic tangent Next, fit the number density using the nucleation model Inhibit nucleation before 1h
  • 46. Center for PRedictive Integrated Structural Materials Science Phase Field Simulation of Nucleation, Growth, and Coarsening • Use this parameterized nucleation model for 2D phase field simulations – 2D for computational tractability – Longest precipitate axis perpendicular to the simulated plane • 3 order parameters for 6 orientation variants – Orientation variants with the same transformation strain share an order parameter – Random number decides the nucleus orientation for one variant or the other • KKS model + linear elasticity • Model inputs – Homogenous free energies: Parabolas with the experimental equilibrium compositions – Interfacial energy: Isotropic, 50 mJ/m2 (estimate from Liu, 2014) – Stress-free transformation strains: From DFT (Liu, 2014) – Elastic constants: Homogenous, anisotropic, from DFT (Ji, 2014) – Diffusion constant: From experiment Liu et al., Acta Materialia, 77 (2014) Ji et al., Acta Materialia, 76 (2014)PRISMS-PFAn Open-Source Phase Field Modeling Framework
  • 47. Center for PRedictive Integrated Structural Materials Science Simulated Microstructure Evolution • Precipitate shape is qualitatively similar to experiments • All 6 variants present • Largest precipitate is approx. 0.5 μm at 6h – Consistent with experiments • Fine precipitates nucleating and dissolving at the end 1.1μm
  • 48. Center for PRedictive Integrated Structural Materials Science Simulated Microstructure Evolution • Before 4 h, results are as expected • After 4 h, new stable nucleus formation stops prematurely • Nucleation is still happening, but the nuclei dissolve back into the matrix • Average composition has a sigmoidal shape, as expected • Depletion of the matrix is delayed compared to expectations • Occurs even where the number density is consistent with the analytic model
  • 49. Center for PRedictive Integrated Structural Materials Science Simulation vs. Experiment Microstructure Comparison (4 h) Simulation (4 periodic copies) TEM Images are on the same scale Diad/triad structures are much more common experimentally Typical length of precipitates are similar, in the 200 nm range Distribution in precipitate sizes wider in the simulation 5 0 0 n m
  • 50. Center for PRedictive Integrated Structural Materials Science What’s going on? Was this a typical result? (yes) What about increasing the diffusivity?
  • 51. Center for PRedictive Integrated Structural Materials Science Why does stable nucleation end early? • Mismatch between the nucleation model and the phase field model • Nucleation events are still happening (nuclei stable in the nucleation model) • Nuclei no longer stable in the phase field simulation • This possibility a consequence of the fitting strategy • Possibilities: • Interfacial energy is too high • Experimental uncertainty (composition spatial variation, foil thickness)
  • 52. Center for PRedictive Integrated Structural Materials Science Possible improvements More experiments - Understand what happens between 1-4 h Including strain energy in the nucleation rate - The characteristic triad structures are favorable due to strain energy [2] - Should cause preferential nucleation of particular variants at precipitate tips [1] Paliwal, et al., Scripta Materialia, 108 (2015) [2] Liu, et al., Scientific Reports, 5 (2015)
  • 53. Center for PRedictive Integrated Structural Materials Science On the path to quantitative phase field modeling of precipitation during aging Current strategy is valid for examining the effect of average composition on the microstructure Next large step to include temperature dependence for validation and to eventually optimize aging conditions The microstructures from phase field can be passed to dislocation dynamics to predict strength Concluding Thoughts
  • 54. Center for PRedictive Integrated Structural Materials Science Acknowledgements Funding: US DOE, Office of Science, Basic Energy Sciences Award DE-SC0008637 PRISMS-PF Collaborators: Shiva Rudraraju (now U. Wisconsin), Larry Aagesen (now INL), David Montiel, Beck Andrews, Katsuyo Thornton Experimental Collaborators Qianying Shi, Zhihua Huang, John Allison
  • 55. Center for PRedictive Integrated Structural Materials Science Questions?
  • 56. Center for PRedictive Integrated Structural Materials Science
  • 57. Center for PRedictive Integrated Structural Materials Science Acknowledgements Computational Resources: Funding: US DOE, Office of Science, Basic Energy Sciences Award DE-SC0008637 deal.II Developers:

Editor's Notes

  1. Longest precipitate is about 270 nm long, experimentally the long precipitates are about 500 nm long
  2. Longest precipitate is about 270 nm long, experimentally the long precipitates are about 500 nm long Simulation of isolated precipitate grew to 500 nm long in 7 hours