Implementing Alternative Functions for Erosion Ratio
Erosion equations are often tuned for a particular material/sand combination that are based on experimental testing. In this section, implement the model that was developed by Zhang et al. at the Erosion/Corrosion Research Center in Tulsa as an example.
The model that is given by Zhang et al. ([968]) is:
where:
-
ER is the Erosion Ratio.
-
C and n are empirical constants that are given as 2.17x10-7 and 2.41 respectively.
-
BH is the Brinell hardness of the wall material. For carbon steel, this is taken as 120 after Zhang et al. ([968]).
-
Fs is the particle shape coefficient, which is said to be 0.2 for fully rounded sand particles.
-
Vp is the particle impact velocity.
-
is the particle impact angle in radians.
Implement the angle function in a field function, and reference this angle field function as a field function for erosion ratio:
- Right-click the node and select .
- Rename the User Field Function 1 node to Zhang Angle Function.
-
Select the
Zhang Angle Function node and set the following properties:
Property Setting Function Name ZhangAngleFunction Dimensions Dimensionless Definition (5.4 * $ParticleIncidenceAngle) - (10.11 * pow($ParticleIncidenceAngle, 2)) + (10.93 * pow($ParticleIncidenceAngle, 3)) - (6.33 * pow($ParticleIncidenceAngle, 4)) + (1.42 * pow($ParticleIncidenceAngle, 5))
If you insert the numeric constants in the equation:
the final equation to be implemented is:
- Right-click the node and select .
- Rename the User Field Function 1 node to Zhang Erosion Ratio.
-
Select the
Zhang Erosion Ratio node and set the following properties:
Property Setting Function Name ZhangErosionRatio Dimensions Dimensionless Definition 2.57497E-9 * pow((mag($${ParticleVelocity})), 2.41) * $ZhangAngleFunction
The field function must now be set in the Lagrangian model tree:
- Select the Method to Field Function. node and set
- Set Scalar Function to Zhang Erosion Ratio.
With the new field function in place, it is only necessary to run a single iteration to obtain a further prediction of erosion.
-
Click
(Step) in the Solution toolbar to perform a single iteration. It can take several minutes for the solver to compute all the particle tracks.
- Save the simulation.
-
Run the
Overall Erosion Rate report to obtain the mass loss rate from the new result:
The erosion rate for the whole annulus is four times the predicted amount, which is 0.41 g/hr for the Zhang erosion model.