Contact Mechanics

Boundary Element Theory

All of the below functions can be found in the boundary_element module of the package.

This module contains functions related to boundary element solvers for contact mechanics calculations. Please see the /demo directory for minimum examples of how to combine the below functions to perform contact mechanics calculations.

beinflumat(x_axis, y_axis, e_eff)[source]

Generate a complete influence coefficient matrix as required for boundary element contact mechanics calculations.

Parameters:
  • x_axis (ndarray) – The x-axis values of the coordinate grid.
  • y_axis (ndarray) – The y-axis values of the coordinate grid.
  • e_eff (scalar) – The effective modulus of the contact bodies.
Returns:

infl_mat – The complete four-dimensional influence coefficient matrix of size len(x_axis) \(\times\) len(y_axis) \(\times\) len(x_axis) \(\times\) len(y_axis).

Return type:

ndarray

beinflumatred(infl_mat)[source]

Calculate a reduced influence coefficient matrix from a complete influence coefficient matrix.

Parameters:infl_mat (ndarray) – The complete influence coefficient matrix.
Returns:reduced_infl_mat – The reduced influence coefficient matrix. The matrix is square and of order n = np.shape(infl_mat)[0] \(\times\) np.shape(infl_mat)[1].
Return type:ndarray
besolve(profile_1, profile_2, outer_force, red_infl_mat, delta_x, delta_y, norm_disp=0.1, max_offset=0.005)[source]

Solve a system of linear equations to find the pressure and displacement distribution in a boundary element contact problem:

\([\text{pressure}] = [\text{reduced influence matrix}]^{-1} \cdot [\text{displacement}]\)

The start value for the relative normal displacement is defined by the norm_disp parameter. The default value corresponds to 0.1 units of length. If the start value of the normal displacement is close to the equilibrium displacement, the calculation time may be reduced significantly.

The solver stops once inner and outer forces are in equilibrium. The maximum allowed discrepancy between inner and outer forces is defined by the max_offset parameter. The default value corresponds to 0.5 %.

Parameters:
  • profile_1 (ndarray) – A matrix containing the profile heights of body 1.
  • profile_2 (ndarray) – A matrix containing the profile heights of body 2. The matrix must have the same size and grid spacing (in unit length) as profile_1.
  • outer_force (scalar) – The (outer) normal force acting on the contact.
  • red_infl_mat (ndarray) – The reduced influence matrix calculated using the beinflumatred method.
  • delta_x (scalar) – The grid spacing of the profile matrices in unit length in x-direction.
  • delta_y (scalar) – The grid spacing of the profile matrices in unit length in y-direction.
  • norm_disp (scalar) – The initial normal elastic deformation in unit length used to start the solver.
  • max_offset (scalar) – The maximum allowed percentage difference of inner and outer force (used to determine when solver has completed).
Returns:

  • pressure (ndarray) – The contact pressure field in the contact.
  • disp (ndarray) – The combined normal displacement field for contact body 1 and 2.
  • inner_force (scalar) – The sum over all inner forces.
  • norm_disp (scalar) – The normal elastic equilibrium displacement.

Hertzian Contact Theory

All of the below functions can be found in the hertz module of the package.

This module contains functions related to Hertz contact theory. As of now, the equations are limited to elliptical and circular contacts. Equations for line contacts (cylinder-on-flat or cylinder-on-cylinder) are currently not implemented.

ahertz(r_eff, r_eff_x, r_eff_y, e_eff, force)[source]

Calculate the contact area in an elliptic (including circular) Hertzian contact.

Parameters:
  • r_eff (scalar) – The effective radius of the contact problem.
  • r_eff_x (scalar) – The effective radius of the contact problem in x-direction.
  • r_eff_y (scalar) – The effective radius of the contact problem in y-direction.
  • e_eff (scalar) – The effective modulus of the contact problem.
  • force (scalar) – The normal force in the contact.
Returns:

  • half_axis_a (scalar) – The contact area half axis in x-direction.
  • half_axis_b (scalar) – The contact area half axis in y-direction.
  • a_hertz (scalar) – The contact area.

approx_hertz_rad(axis, profile, iterations=10)[source]

Approximate the Hertz contact radius of a profile, i.e., find the radius of a circle that minimizes the average discrepancy between the actual profile and a circle profile. The secant method is used to find the circle approximation.

This method has been tested for continuous (or at least semi-continuous) profiles only. It works best for cases where the circle radius is larger than the absolute minimum and maximum of the profile axis.

The function will not produce sensible results for profiles where the maximum profile height is large compared to the axis length.

Parameters:
  • axis (ndarray) – The coordinates of the profile points along their reference axis. For example, if the profile array contains the profile heights along the x-axis in the range [-5, 5], then axis contains the corresponding x-axis values.
  • profile (ndarray) – The profile heights along axis.
  • iterations (int, optional) – Number of times the secant method is applied before the radius is returned.
Returns:

  • rad (scalar) – The radius of the circle that best approximates profile. If the profile cannot be approximated with a circle (usually if the profile is a straight line), the function returns inf.
  • ax_approx (ndarray) – The elements of axis that were used for the approximation.
  • prof_approx (ndarray) – The elements of profile that were used for the approximation.

dhertz(e_eff, r_x_1, r_y_1, r_x_2, r_y_2, force)[source]

Calculate the elastic normal displacement in an elliptic (including circular) Hertzian contact.

Parameters:
  • e_eff (scalar) – The effective modulus of the contact problem.
  • r_x_1 (scalar) – The radius of body 1 in direction 1 (x).
  • r_y_1 (scalar) – The radius of body 1 in direction 2 (y).
  • r_x_2 (scalar) – The radius of body 2 in direction 1 (x).
  • r_y_2 (scalar) – The radius of body 2 in direction 2 (y).
  • force (scalar) – The normal force in the contact.
Returns:

norm_disp – The elastic normal displacement of the contact problem.

Return type:

scalar

eeff(e_1, nu_1, e_2, nu_2)[source]

Calculate the effective (Young’s) modulus of two contact bodies according to Hertzian contact theory.

Parameters:
  • e_1 (ndarray, scalar) – The Young’s modulus of contact body 1.
  • nu_1 (ndarray, scalar) – The Poisson ratio of contact body 1.
  • e_2 (ndarray, scalar) – The Young’s modulus of contact body 2.
  • nu_2 (ndarray, scalar) – The Poisson ratio of contact body 1.
Returns:

e_eff – The effective modulus.

Return type:

scalar

fhertz(r_eff, r_eff_x, r_eff_y, e_eff, p_critical)[source]

Calculate the load carrying capacity of an elliptic (including circular) Hertzian contact.

Parameters:
  • r_eff (scalar) – The effective radius of the contact problem.
  • r_eff_x (scalar) – The effective radius of the contact problem in x-direction.
  • r_eff_y (scalar) – The effective radius of the contact problem in y-direction.
  • e_eff (scalar) – The effective modulus of the contact problem.
  • p_critical (scalar) – The critical mean Hertzian contact pressure that the contact can sustain without plastic deformation.
Returns:

f_crit – The load carrying capacity of the Hertzian contact.

Return type:

scalar

phertz(r_eff, r_eff_x, r_eff_y, e_eff, force, ret='mean')[source]

Calculate the contact pressure in an elliptic (including circular) Hertzian contact. By default, the mean pressure is returned. Use ret='max' for maximum pressure.

Parameters:
  • r_eff (scalar) – The effective radius of the contact problem.
  • r_eff_x (scalar) – The effective radius of the contact problem in x-direction.
  • r_eff_y (scalar) – The effective radius of the contact problem in y-direction.
  • e_eff (scalar) – The effective modulus of the contact problem.
  • force (scalar) – The normal force in the contact.
  • ret (str, optional) – Return mean Hertzian pressure for 'mean' and maximum pressure for 'max'
Returns:

p_hertz – The Hertzian contact pressure in the contact.

Return type:

scalar

reff(r_x_1, r_y_1, r_x_2, r_y_2)[source]

Calculate the effective radii for two bodies according to Hertzian contact theory. It is assumed that the two major axis of each body (x- and y-axis) are perpendicular to each other and that the x and y axes of both bodies are aligned.

Parameters:
  • r_x_1 (scalar) – The radius of body 1 in direction 1 (x).
  • r_y_1 (scalar) – The radius of body 1 in direction 2 (y).
  • r_x_2 (scalar) – The radius of body 2 in direction 1 (x).
  • r_y_2 (scalar) – The radius of body 2 in direction 2 (y).
Returns:

  • r_eff (scalar) – The effective radius.
  • r_eff_x (scalar) – The effective radius in x-direction.
  • r_eff_y (scalar) – The effective radius in y-direction.