Volume element - YuriOku/1D_SPH GitHub Wiki
In the SPH method, the fluid is discretized into SPH particles and handled. To do this, we need the volume of each particle. The volume is obtained from the physical quantity of the SPH particle and the corresponding continuous field , with
.
Calculating the volume element using density as the fundamental quantity is the standard method in the SPH method, which is also called the Standard SPH (SSPH). In this case, the density can be expressed as the kernel sum of the masses as follows:
In the standard SPH method, the density calculated in the above equation is used to determine other physical quantities. For example, pressure can be obtained from the equation of state, which in 1D_SPH is the ideal gas equation of state,
,where is the specific heat ratio and is the internal energy per unit mass.
In the standard SPH method, other physical quantities are calculated based on the density obtained as the kernel sum. Kernel summation leads to a field distortion, making it impossible to treat discontinuously varying densities such as contact discontinuities with high accuracy (Agertz et al., 2007). Saitoh & Makino (2013) proposed a method to formulate the SPH method using pressure as the basic quantity to solve this problem. This method is called density-independent SPH (DISPH). The basic quantity, pressure, can be obtained as
and use this pressure as the basis for calculating other physical quantities. Since the pressure is constant at the contact discontinuity, DISPH can handle the physical quantities at the contact discontinuity with high accuracy.
References
- Agertz, O. et al., “Fundamental differences between SPH and grid methods”, Monthly Notices of the Royal Astronomical Society, vol. 380, no. 3, pp. 963–978, 2007. doi:10.1111/j.1365-2966.2007.12183.x.
- Saitoh, T. R. and Makino, J., “A Density-independent Formulation of Smoothed Particle Hydrodynamics”, The Astrophysical Journal, vol. 768, no. 1, 2013. doi:10.1088/0004-637X/768/1/44.