Material point method

The Material Point Method (MPM) is a numerical technique used to simulate the behavior of solids, liquids, gases, and any other continuum material. In MPM a body is described by a number of small Lagrangian elements referred to as 'material points'. These material points are surrounded by a background mesh/grid that is used only to calculate gradient terms like acceleration and the deformation gradient. Unlike other mesh-based methods like the Finite Element Method, Finite Volume Method or Finite Difference Method, MPM is not a mesh based method and is instead categorized as a meshless/meshfree method, examples of which are Smoothed Particle Hydrodynamics and Peridynamics. Despite the presence of a background mesh, MPM does not encounter the drawbacks of mesh-bashed methods (high deformation tangling, advection errors etc.) which makes it a promising and powerful tool in computational mechanics.

MPM was originally presented an extension of a similar method known as FLIP (a further extension of a method called PIC) in 1994 and was developed at the Los Alamos National Labs. After this the major developments of MPM have continued both in the national labs as well as the University of New Mexico, Oregon State University, University of Utah and more across the US and the world. Recently the number of institutions researching MPM has been growing with added popularity and awareness coming from various sources such as MPM's use in the Disney film 'Frozen'.

The MPM Algorithm

An MPM simulation consists of the following stages:

(Prior to the time integration phase)

  1. Initialization of grid and material points.
    1. A geometry is discretized into a collection of material points, each with its own material properties and initial conditions (velocity, stress, temperature, etc.)
    2. The grid, being only used to provide a place for gradient calculations is normally made to cover an area large enough to fill the expected extent of computational domain needed for the simulation.

(During the time integration phase - explicit formulation)

2. Material point quantities are extrapolated to grid nodes.

    1. Material point mass (), momenta (), stresses (), and external forces () are extrapolated to the nodes at the corners of the cells within which the material points reside. This is most commonly done using standard linear shape functions (), the same used in FEM.
    2. The grid use the material point values to create the masses (), velocities (), internal and external force vectors (,) for the nodes:

3. Equations of motion are solved on the grid.

    1. Newton's 2nd Law is solved to obtain the nodal acceleration ()
    2. New nodal velocities are found ().

4. Derivative terms are extrapolated back to material points.

    1. Material point acceleration (), deformation gradient () (or strain rate () depending on the strain theory used) is extrapolated from the surrounding nodes using similar shape functions to before ().
    2. Variables on the material points: positions, velocities, strains, stresses etc. are then updated with these rates depending on integration scheme of choice and a suitable constitutive model.

5.Resetting of grid.

    1. Now that the material points are fully updated at the next time step, the grid is reset to allow for the next time step to begin.

History of PIC/MPM

The PIC was originally conceived to solve problems in fluid dynamics, and developed by Harlow at Los Alamos National Laboratory in 1957.[1] One of the first PIC codes was the Fluid-Implicit Particle (FLIP) program, which was created by Brackbill in 1986[2] and has been constantly in development ever since. Until the 1990s, the PIC method was used principally in fluid dynamics.

Motivated by the need for better simulating penetration problems in solid dynamics, Sulsky, Chen and Schreyer started in 1993 to reformulate the PIC and develop the MPM, with funding from Sandia National Laboratories.[3] The original MPM was then further extended by Bardenhagen et al.. to include frictional contact,[4] which enabled the simulation of granular flow,[5] and by Nairn to include explicit cracks[6] and crack propagation (known as CRAMP).

Recently, an MPM implementation based on a micro-polar Cosserat continuum [7] has been used to simulate high-shear granular flow, such as silo discharge. MPM's uses were further extended into Geotechnical engineering with the recent development of a quasi-static, implicit MPM solver which provides numerically stable analyses of large-deformation problems in Soil mechanics.[8]

Annual workshops on the use of MPM are held at various locations in the United States. The Fifth MPM Workshop was held at Oregon State University, in Corvallis, OR, on April 2 and 3, 2009.

Applications of PIC/MPM

The uses of the PIC or MPM method can be divided into two broad categories: firstly, there are many applications involving fluid dynamics, plasma physics, magnetohydrodynamics, and multiphase applications. The second category of applications comprises problems in solid mechanics.

Fluid dynamics and multiphase simulations

The PIC method has been used to simulate a wide range of fluid-solid interactions, including sea ice dynamics,[9] penetration of biological soft tissues,[10] fragmentation of gas-filled canisters,[11] dispersion of atmospheric pollutants,[12] multiscale simulations coupling molecular dynamics with MPM,[13][14] and fluid-membrane interactions.[15] In addition, the PIC-based FLIP code has been applied in magnetohydrodynamics and plasma processing tools, and simulations in astrophysics and free-surface flow.[16]

As a result of a joint effort between UCLA's mathematics department and Walt Disney Animation Studios, MPM was successfully used to simulate snow in the 2013 computer-animated film Frozen.[17][18][19]

Solid mechanics

MPM has also been used extensively in solid mechanics, to simulate impact, penetration, collision and rebound, as well as crack propagation.[20][21] MPM has also become a widely used method within the field of soil mechanics: it has been used to simulate granular flow, silo discharge, pile driving, bucket filling, and material failure; and to model soil stress distribution, compaction, and hardening. It is now being used in wood mechanics problems such as simulations of transverse compression on the cellular level including cell wall contact [22] (this work received the George Marra Award for paper of the year from the Society of Wood Science and Technology )

Classification of PIC/MPM codes

MPM in the context of numerical methods

One subset of numerical methods are Meshfree methods, which are defined as methods for which "a predefined mesh is not necessary, at least in field variable interpolation". Ideally, a meshfree method does not make use of a mesh "throughout the process of solving the problem governed by partial differential equations, on a given arbitrary domain, subject to all kinds of boundary conditions," although existing methods are not ideal and fail in at least one of these respects. Meshless methods, which are also sometimes called particle methods, share a "common feature that the history of state variables is traced at points (particles) which are not connected with any element mesh, the distortion of which is a source of numerical difficulties." As can be seen by these varying interpretations, some scientists consider MPM to be a meshless method, while others do not. All agree, however, that MPM is a particle method.

The Arbitrary Lagrangian Eulerian (ALE) methods form another subset of numerical methods which includes MPM. Purely Lagrangian methods employ a framework in which a space is discretised into initial subvolumes, whose flowpaths are then charted over time. Purely Eulerian methods, on the other hand, employ a framework in which the motion of material is described relative to a mesh that remains fixed in space throughout the calculation. As the name indicates, ALE methods combine Lagrangian and Eulerian frames of reference.

Subclassification of MPM/PIC

PIC methods may be based on either the strong form collocation or a weak form discretisation of the underlying partial differential equation (PDE). Those based on the strong form are properly referred to as finite-volume PIC methods. Those based on the weak form discretisation of PDEs may be called either PIC or MPM.

MPM solvers can model problems in one, two, or three spatial dimensions, and can also model axisymmetric problems. MPM can be implemented to solve either quasi-static or dynamic equations of motion, depending on the type of problem that is to be modeled.

The time-integration used for MPM may be either explicit or implicit. The advantage to implicit integration is guaranteed stability, even for large timesteps. On the other hand, explicit integration runs much faster and is easier to implement.

Advantages of MPM

MPM compared to FEM

Unlike FEM, MPM does not require periodical remeshing steps and remapping of state variables, and is therefore better suited to the modeling of large material deformations. In MPM, particles and not the mesh points store all the information on the state of the calculation. Therefore, no numerical error results from the mesh returning to its original position after each calculation cycle, and no remeshing algorithm is required.

The particle basis of MPM allows it to treat crack propagation and other discontinuities better than FEM, which is known to impose the mesh orientation on crack propagation in a material. Also, particle methods are better at handling history-dependent constitutive models.

MPM compared to pure particle methods

Because in MPM nodes remain fixed on a regular grid, the calculation of gradients is trivial.

In simulations with two or more phases it is rather easy to detect contact between entities, as particles can interact via the grid with other particles in the same body, with other solid bodies, and with fluids.

Disadvantages of MPM

MPM is more expensive in terms of storage than other methods, as MPM makes use of mesh as well as particle data. MPM is more computationally expensive than FEM, as the grid must be reset at the end of each MPM calculation step and reinitialised at the beginning of the following step. Spurious oscillation may occur as particles cross the boundaries of the mesh in MPM, although this effect can be minimized by using generalized interpolation methods (GIMP). In MPM as in FEM, the size and orientation of the mesh can impact the results of a calculation: for example, in MPM, strain localisation is known to be particularly sensitive to mesh refinement.

Commercial packages

The first commercial package based on a meshless method is MPMsim. This program allows users to download a trial version for free and offers varying levels of licenses.

Notes

  1. Johnson, N.L. "The legacy and future of computational fluid dynamics at Los Alamos". In Proceedings of the 1996 Canadian CFD Conference, 1996
  2. Brackbill, J.U. and Ruppel, H.M. "FLIP: A method for adaptively zoned, particle-in-cell calculations in two dimensions". Journal of Computational Physics, 65, 1986
  3. Sulsky, D., Chen, Z., and Schreyer, H.L. "A particle method for history-dependent materials". Computer Methods in Applied Mechanics and Engineering, 118:179–196, 1994.
  4. Bardenhagen, S.G., Brackbill, J.U., and Sulsky, D. "Shear deformation in granular materials". 1998
  5. Wieckowski, Z. "A particle-in-cell method in analysis of motion of a granular material in a silo". Computational Mechanics: New trends and Applications, 1998
  6. Nairn, J. A. "Material Point Method Calculations with Explicit Cracks". Computer Modeling in Engineering & Science, 4:649–664, 2003.
  7. Coetzee, C.J. The modelling of granular flow using the particle-in-cell method. PhD thesis, University of Stellenbosch, South Africa, 2004.
  8. Beuth, L., Coetzee, C.J., Bonnier, P. and van den Berg, P. "Formulation and validation of a quasi-static material point method." In 10th International Symposium on Numerical Methods in Geomechanics, 2007.
  9. Ligett, K. "A modified particle-in-cell method for sea ice dynamics". Clarkson University Technical Report, 2002.
  10. Ionescu, I., Guilkey, J., Berzins, M., Kirby, R., and Weiss, J. "Computational simulation of penetrating trauma in biological soft tissues using MPM."
  11. Banerjee, B. "Material point method simulations of fragmenting cylinders". In 17th ASCE Engineering Mechanics Conference, 2004.
  12. Patankar,N.A. and Joseph, D.D. "Lagrangian numerical simulation of particulate flows". International Journal of Multiphase Flows, 2001.
  13. Lu, H., Daphalapurkar, N. P., Wang, B., Roy, S., Komanduri, R. "Multiscale Simulation from atomistic to continuum -- coupling molecular dynamics (MD) with material point method (MPM)." Philosophical Magazine. 86(20):2971–2994, 2006.
  14. Ma., J. "Multiscale Simulation using the Generalized Interpolation MPM, Discrete Dislocations and Molecular Dynamics." PhD thesis, Oklahoma State University, 2006.
  15. York, A., Sulsky, D. and Schreyer, H. "Fluid-membrane interaction based on the material point method." International Journal for Numerical Methods in Engineering, 2000.
  16. Li, S. and Liu, W.K. "Meshfree and particle methods and their applications". American Society of Mechanical Engineers, 2002.
  17. Marquez, Letisia (February 27, 2014). "UCLA's mathematicians bring snow to life for Disney's "Frozen"". UCLA Today. Retrieved 6 March 2014.
  18. Alexey Stomakhin; Craig Schroeder; Lawrence Chai; Joseph Teran; Andrew Selle (August 2013). "A material point method for snow simulation" (PDF). Walt Disney Animation Studios. Retrieved 6 March 2014.
  19. "Making of Disney's Frozen: A Material Point Method For Snow Simulation". CG Meetup. November 21, 2013. Retrieved 18 January 2014. |first1= missing |last1= in Authors list (help)
  20. Karuppiah, V. "Implementation of irregular mesh in MPM for simulation of mixed mode crack opening in tension." Master’s thesis, Oklahoma State University, 2004.
  21. Daphalapurkar, N. P., Lu, H., Coker, D., Komanduri, R. "Simulation of dynamic crack growth using the generalized interpolation material point (GIMP) method." International Journal of Fracture. 143:79–102, 2007.
  22. Nairn, J. A. "Numerical Simulations of Transverse Compression and Densification in Wood". Wood and Fiber Science. 38:576–591, 2006.

External links

This article is issued from Wikipedia - version of the 11/29/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.