Meshfree methods

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

In the field of numerical analysis, meshfree methods are those that do not require connection between nodes of the simulation domain, i.e. a mesh, but are rather based on interaction of each node with all its neighbours. As a consequence, original extensive properties such as mass or kinetic energy are no more assigned to mesh elements but rather to the single nodes. Meshfree methods enable the simulation of some otherwise difficult types of problems, at the cost of extra computing time and programming effort.

Motivation

Numerical methods such as the finite difference method, finite-volume method, and finite element method were originally defined on meshes of data points. In such a mesh, each point has a fixed number of predefined neighbors, and this connectivity between neighbors can be used to define mathematical operators like the derivative. These operators are then used to construct the equations to simulate—such as the Euler equations or the Navier–Stokes equations.

But in simulations where the material being simulated can move around (as in computational fluid dynamics) or where large deformations of the material can occur (as in simulations of plastic materials), the connectivity of the mesh can be difficult to maintain without introducing error into the simulation. If the mesh becomes tangled or degenerate during simulation, the operators defined on it may no longer give correct values. The mesh may be recreated during simulation (a process called remeshing), but this can also introduce error, since all the existing data points must be mapped onto a new and different set of data points. Meshfree methods are intended to remedy these problems. Meshfree methods are also useful for:

  • Simulations where creating a useful mesh from the geometry of a complex 3D object may be especially difficult or require human assistance
  • Simulations where nodes may be created or destroyed, such as in cracking simulations
  • Simulations where the problem geometry may move out of alignment with a fixed mesh, such as in bending simulations
  • Simulations containing nonlinear material behavior, discontinuities or singularities

Example

In a traditional finite difference simulation, the domain of a one-dimensional simulation would be some function u(x, t), represented as a mesh of data values u_i^n at points x_i, where

i=0,1,2...
n=0,1,2...
x_{i+1}-x_i=h\ \forall i
t_{n+1}-t_n=k\ \forall n

We can define the derivatives that occur in the equation being simulated using some finite difference formulae on this domain, for example

{\partial u\over \partial x}={u_{i+1}^n-u_{i-1}^n\over 2h}

and

{\partial u\over \partial t}={u_i^{n+1}-u_i^n\over k}

Then we can use these definitions of u(x,t) and its spatial and temporal derivatives to write the equation being simulated in finite difference form, then simulate the equation with one of many finite difference methods.

In this simple example, the steps (here the spatial step h and timestep k) are constant along all the mesh, and the left and right mesh neighbors of the data value at x_i are the values at x_{i-1} and x_{i+1}, respectively. Generally in finite differences one can allow very simply for steps variable along the mesh, but all the original nodes should be preserved and they can move independently only by deforming the original elements. If even only two of all the nodes change their order, or even only one node is added to or removed from the simulation, that creates a defect in the original mesh and the simple finite difference approximation can no longer hold.

Smoothed-particle hydrodynamics (SPH), one of the oldest meshfree methods, solves this problem by treating data points as physical particles with mass and density that can move around over time, and carry some value u_i with them. SPH then defines the value of u(x,t) between the particles by

u(x,t_n) = \sum_i m_i \frac{u_i^n}{\rho_i} W(|x-x_i|)

where m_i is the mass of particle i, \rho_i is the density of particle i, and W is a kernel function that operates on nearby data points and is chosen for smoothness and other useful qualities. By linearity, we can write the spatial derivative as

{\partial u\over \partial x} = \sum_i m_i \frac{u_i^n}{\rho_i} {\partial W(|x-x_i|) \over \partial x}

Then we can use these definitions of u(x,t) and its spatial derivatives to write the equation being simulated as an ordinary differential equation, and simulate the equation with one of many numerical methods. In physical terms, this means calculating the forces between the particles, then integrating these forces over time to determine their motion.

The advantage of SPH in this situation is that the formulae for u(x,t) and its derivatives do not depend on any adjacency information about the particles; they can use the particles in any order, so it doesn't matter if the particles move around or even exchange places.

One disadvantage of SPH is that it requires extra programming to determine the nearest neighbors of a particle. Since the kernel function W only returns nonzero results for nearby particles within twice the "smoothing length" (because we typically choose kernel functions with compact support), it would be a waste of effort to calculate the summations above over every particle in a large simulation. So typically SPH simulators require some extra code to speed up this nearest neighbor calculation.

History

One of the earliest meshfree methods is smoothed particle hydrodynamics, presented in 1977.[1] Over the ensuing decades, many more methods have been developed, some of which are listed below.

List of methods and acronyms

The following numerical methods are generally considered to fall within the general class of "meshfree" methods. Acronyms are provided in parentheses.

Related methods:

Recent development

One recent advance in meshfree methods aim at the development of computational tools for automation in modeling and simulations. This is enabled by the so-called weakened weak (W2) formulation based on the G space theory.[8] The W2 formulation offers possibilities for formulate various (uniformly) "soft" models that works well with triangular meshes. Because triangular mesh can be generated automatically, it becomes much easier in re-meshing and hence automation in modeling and simulation. In addition, W2 models can be made soft enough (in uniform fashion) to produce upper bound solutions (for force-driving problems). Together with stiff models (such as the fully compatible FEM models), one can conveniently bound the solution from both sides. This allows easy error estimation for generally complicated problems, as long as a triangular mesh can be generated. Typical W2 models are the Smoothed Point Interpolation Methods (or S-PIM).[3] The S-PIM can be node-based (known as NS-PIM or LC-PIM),[9] edge-based (ES-PIM),[10] and cell-based (CS-PIM).[11] The NS-PIM was developed using the so-called SCNI technique.[12] It was then discovered that NS-PIM is capable of producing upper bound solution and volumetric locking free.[13] The ES-PIM is found superior in accuracy, and CS-PIM behaves in between the NS-PIM and ES-PIM. Moreover, W2 formulations allow the use of polynomial and radial basis functions in the creation of shape functions (it accommodates the discontinuous displacement functions, as long as it is in G1 space), which opens further rooms for future developments.

The W2 formulation has also led to the development of combination of meshfree techniques with the well-developed FEM techniques, and one can now use triangular mesh with excellent accuracy and desired softness. A typical such a formulation is the so-called Smoothed Finite Element Method (or S-FEM) [14] The S-FEM is the linear version of S-PIM, but with most of the properties of the S-PIM and much simpler.

It is a general perception that meshfree methods are much more expensive than the FEM counterparts. The recent study has found however, the S-PIM and S-FEM can be much faster than the FEM counterparts.[3][14]

The S-PIM and S-FEM works well for solid mechanics problems. For CFD problems, the formulation can be simpler, via strong formulation. A Gradient Smoothing Methods (GSM) has also been developed recently for CFD problems, implementing the gradient smoothing idea in strong form.[15][16] The GSM is similar to [FVM], but uses gradient smoothing operations exclusively in nested fashions, and is a general numerical method for PDEs.

Nodal integration has been proposed as a technique to use finite elements to emulate a meshfree behaviour.[17] However, the obstacle that must be overcome in using nodally integrated elements is that the quantities at nodal points are not continuous, and the nodes are shared among multiple elements.

See also

References

  1. Gingold RA, Monaghan JJ (1977). Smoothed particle hydrodynamics – theory and application to non-spherical stars. Mon Not R Astron Soc 181:375–389
  2. C. Gauger, P. Leinen, H. Yserentant The finite mass method. SIAM J. Numer. Anal. 37 (2000), 176
  3. 3.0 3.1 3.2 3.3 Liu, G.R. 2nd edn: 2009 Mesh Free Methods, CRC Press. 978-1-4200-8209-9
  4. Sarler B, Vertnik R. Meshfree
  5. Li, B., Habbal, F., & Ortiz, M. (2010). Optimal transportation meshfree approximation schemes for fluid and plastic flows. International journal for numerical methods in engineering, 83(12), 1541.
  6. Walker WA (2012) The Repeated Replacement Method: A Pure Lagrangian Meshfree Method for Computational Fluid Dynamics. PLoS ONE 7(7): e39999. doi:10.1371/journal.pone.0039999
  7. Ooi EH, Popov V (2012) An efficient implementation of the radial basis integral equation method. Engineering Analysis with Boundary Elements, 36: 716-726
  8. 8.0 8.1 G.R. Liu. A G space theory and a weakened weak (W2) form for a unified formulation of compatible and incompatible methods: Part I theory and Part II applications to solid mechanics problems. International Journal for Numerical Methods in Engineering, 81: 1093–1126, 2010
  9. Liu GR, Zhang GY, Dai KY, Wang YY, Zhong ZH, Li GY and Han X, A linearly conforming point interpolation method (LC-PIM) for 2D solid mechanics problems, International Journal of Computational Methods, 2(4): 645–665, 2005.
  10. G.R. Liu, G.R. Zhang. Edge-based Smoothed Point Interpolation Methods. International Journal of Computational Methods, 5(4): 621–646, 2008
  11. G.R. Liu, G.R. Zhang. A normed G space and weakened weak (W2) formulation of a cell-based Smoothed Point Interpolation Method. International Journal of Computational Methods, 6(1): 147–179, 2009
  12. Chen, J. S., Wu, C. T., Yoon, S. and You, Y. (2001). A stabilized conforming nodal integration for Galerkin mesh-free methods. Int. J. Numer. Meth. Eng. 50: 435–466.
  13. G. R. Liu and G. Y. Zhang. Upper bound solution to elasticity problems: A unique property of the linearly conforming point interpolation method (LC-PIM). International Journal for Numerical Methods in Engineering, 74: 1128–1161, 2008.
  14. 14.0 14.1 14.2 Liu, G.R., 2010 Smoothed Finite Element Methods, CRC Press, ISBN 978-1-4398-2027-8.
  15. G. R. Liu, George X. Xu. A gradient smoothing method (GSM) for fluid dynamics problems. International Journal for Numerical Methods in Fluids, 58: 1101–1133, 2008.
  16. J. Zhang, G. R. Liu, K.Y. Lam, H. Li, G. Xu. A gradient smoothing method (GSM) based on strong form governing equation for adaptive analysis of solid mechanics problems. Finite Elements in Analysis and Design, 44: 889–909, 2008.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Liu GR, ON G SPACE THEORY, INTERNATIONAL JOURNAL OF COMPUTATIONAL METHODS, Vol. 6 Issue: 2,257-289, 2009

Further reading

  • Liu MB, Liu GR, Zong Z, AN OVERVIEW ON SMOOTHED PARTICLE HYDRODYNAMICS, INTERNATIONAL JOURNAL OF COMPUTATIONAL METHODS Vol. 5 Issue: 1, 135–188, 2008.
  • Liu, G.R., Liu, M.B. (2003). Smoothed Particle Hydrodynamics, a meshfree and Particle Method, World Scientific, ISBN 981-238-456-1.
  • Lua error in package.lua at line 80: module 'strict' not found.. ISBN 0-9657001-8-6
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Belytschko, T., Chen, J.S. (2007). Meshfree and Particle Methods, John Wiley and Sons Ltd. ISBN 0-470-84800-6
  • Lua error in package.lua at line 80: module 'strict' not found.. ISBN 0-470-84699-2
  • Liu, G.R. 1st edn, 2002. Mesh Free Methods, CRC Press. ISBN 0-8493-1238-8.
  • Li, S., Liu, W.K. (2004). Meshfree Particle Methods, Berlin: Springer Verlag. ISBN 3-540-22256-1
  • Lua error in package.lua at line 80: module 'strict' not found..
  • Lua error in package.lua at line 80: module 'strict' not found. ISBN 978-3-00-026744-4, also as electronic ed..
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Alhuri. Y, A. Naji, D. Ouazar and A. Taik. (2010). RBF Based Meshless Method for Large Scale Shallow Water Simulations: Experimental Validation, Math. Model. Nat. Phenom, Vol. 5, No. 7, 2010, pp. 4–10.
  • P. L. Machado, R. M. S. de Oliveira, W. C. B. Souza, R. C. F. Araújo, M. E. L. Tostes, and C. Gonçalves. (2011). An Automatic Methodology for Obtaining Optimum Shape Factors for the Radial Point Interpolation Method, Journal of Microwaves, Optoelectronics and Electromagnetic Applications, Vol. 10, No. 2, 2011, pp. 389-401.[1]
  • W. C. B. Sousa, R. M. S. de Oliveira, (2015). Coulomb`s Law Discretization Method: a New Methodology of Spatial Discretization for the Radial Point Interpolation Method., IEEE Antennas & Propagation Magazine, Vol. 57, No. 2, 2015, pp. 277-293.[2]

External links