Skip to content

BatheTwoStep

Starting from version 2.7, customisation of spectral radius (ρ) and sub-step size (γ) is supported.

The algorithm is known to be able to conserve energy and momentum.

References:

  1. 10.1016/j.compstruc.2006.09.004
  2. 10.1016/j.compstruc.2018.11.001

The implementation follows the original algorithm. The only difference is the step size defined in suanPan is the mean step size of two sub-step sizes, that is Δt/2 in the references.

For further discussions on this type of algorithm, one can check the following references.

  1. 10.1007/s11071-023-09065-7

Syntax

Text Only
1
2
3
4
integrator BatheTwoStep (1) [2] [3]
# (1) int, unique integrator tag
# [2] double, spectral radius, \rho_\infty, default: 0
# [2] double, sub-step size, gamma, default: 0.5

Using integrator BatheTwoStep (1) with two optional parameters omitted gives the same results as in versions prior to version 2.7.

The spectral radius ρ ranges from 0 to 1, both ends inclusive.

The sub-step size γ ranges from 0 to 1, both ends exclusive.

Theory

The First Sub-step

For trapezoidal rule,

vn+1=vn+γΔt2(an+an+1),
un+1=un+γΔt2(vn+vn+1).

Then,

un+1=un+γΔt2(vn+vn+γΔt2(an+an+1)),
Δu=γΔtvn+γ2Δt24an+γ2Δt24an+1.

One could obtain

an+1=4γ2Δt2Δu4γΔtvnan,Δa=4γ2Δt2Δu4γΔtvn2an,
vn+1=2γΔtΔuvn,Δv=2γΔtΔu2vn.

The effective stiffness is then

K¯=K+2γΔtC+4γ2Δt2M.

The Second Sub-step

The second step is computed by

vn+2=vn+Δt(q0an+q1an+1+q2an+2),
un+2=un+Δt(q0vn+q1vn+1+q2vn+2).

The parameters satisfy q0+q1+q2=1, and

q1=ρ+12γ(ρ1)+4,q2=0.5γq1.

Hence,

an+2=vn+2vnq2Δtq0q2anq1q2an+1,
vn+2=un+2unq2Δtq0q2vnq1q2vn+1.

The effective stiffness is then

K¯=K+1q2ΔtC+1q22Δt2M.