When multiple bodies interact with their neighbours according to a graph.
Introduction
Recently I wrote a code for solving a certain type of multibody problems - just for fun. One instance of such problem is the truss structure, which can be viewed as a set of points connected by bars that can only deform axially. A graph specifies the connectivity of the points - only the points that are connected interact with each other. Another instance of the problem is certain particle system that appear in material science. The particles only interact with their neighbours. Now the problem is essentially determining the equilibrium geometrical configuration of the multi-body system when it is subject to an external excitation. Such equilibrium can be determined via a certain energy principle, if there is any.
Mathematically, the problem is stated as follows. Suppose a multibody system is composed of points with point pairs . The energy of the multibody system is defined as, where is the energy of the th point pair and is a vector containing all the states of the points. Next, assume the external excitation is conservative, i.e. there exists a scalar function such that is the external force acting on the points. The system achieves equilibrium at its stationary point, i.e. when the gradient of total energy becomes zero,
Solution schemes
Naive Newton scheme
In simple cases, is a minimum point near the initial state. One can employ any standard optimization algorithms to solve the problem, i.e. to minimize w.r.t. . Particularly, given the gradient and the Jacobian of the energy, the minimum is found via the Newton-Raphson (NR) procedure, where is the initial guess of the solution.
By applying the NR procedure to a series of external forces, one obtains the equilibrium path of the system, or the displacement-load curve in structural analysis.
Nonlinear schemes
There are exceptions that cannot be solved using the naive Newton scheme. Such exceptions occur typically when (1) the initial state is far from the solution, or/and (2) the equilibrium path contains limit points. There are two types of limit points. At a load limit point, a nonzero displacement increment results in a zero load increment. Or put in a different way, increasing (or decreasing) the load would result in the increase/decrease of the displacement on the two sides of the limit point. The case of displacement limit point is the reverse.
People have developed various solution schemes to tackle these issues. A review of these schemes is provided in Leon2011. (Also check its Figure 1 for an illustration of the displacement and load limit points.)
To introduce these schemes, in the following we consider only the case where the external excitation is linear, where is a constant vector and the value of determines the magnitude of the external force. In such case, the total energy of the system is written as,
N+1 dimensional space formulation
Assume that the NR iteration starts at the previous equilibrium point. Treating as an unknown, in the th NR iteration, the linear system is augmented as, where the last row and the coefficients , and are introduced to constrain and close the linear system. Different choices of these coefficients give rise to different solution schemes.
The solution of the augmented system is expressed as, due to Batoz1979, where and .
Simple incremental schemes
A naive choice of the constraint for is that This corresponds to the incremental loading (IL) scheme, which prescribes the load increment at the first iteration. As a result, the load parameter is fixed for the rest of iterations. Near the load limit point, the IL scheme would either fail or result in the snap-through behavior - the solution “jumps” to an equilibrium point far away from the previous solution and results in a non-smooth equilibrium path. Such behavior cannot be avoided unless the direction of the load increment is reversed at the load limit point. Similarly there is incremental displacement scheme which prescribes the displacement increment and suffers from the displacement limit point.
Arc length schemes
The family of arc length (AL) schemes are developed to overcome the limitations of the incremental schemes at limit points. These schemes have been widely used in engineering applications, esp. commercial computater-aided engineering software. The key idea is to introduce an arc length constraint that simultaneously controls the increments in the displacement and load, Different values of result in the variants of the schemes: for spherical AL method, for cylindrical AL method, and the most general, for elliptical AL method.
For the formulation, the AL constraint is rewritten as, where the prescribed AL and . The coefficients , and are then determined accordingly. The final expression for load increments is the following,
A noteworthy issue of the above scheme is that the sign of is unspecified. One way to determine the sign is to pick the new increment that is “closest to” the previous solution, as discussed in this document. Another way to overcome the issue of direction determination is the linearization of the AL scheme, which replaces the AL constraint with a normal plane constraint.
Generalized displacement control scheme
The Yang1990 scheme is another scheme that bears a similar geometrical interpretation like the linearized AL scheme. Yet, initially, its derivation was to ensure the numerical stability of the dimensional space solution. A generalized stiffness parameter GSP is proposed, where is the first iteration from the first increment and is the first iteration from the previous increment. At the first increment, . Initially and GSP increases/decreases as the structure stiffens/softens. A negative value of GSP means that the equilibrium path passed the load limit point and the load direction should be reversed. Refer to Figure 2 in [Yang1990] for a geometrical illustration of the effect of GSP.
The introduction of GSP leads to the following definition of the load increment, where and its sign changes whenever GSP becomes negative - and thus the load direction is automatically reversed at load limit point.
Application to geometrically nonlinear truss
Formulation
For the geometrically nonlinear truss, the energy between one pair of points is, where , , and superscript ’ means new states of the points. The gradient and the Jacobian of only depend on , where, The gradient and Jacobian of the whole system are assembled from those of the point pairs.
Case study
The star dome 24-bar truss is a typical problem that contains various nonlinear behaviors. The description of the problem can be found here. The star dome is loaded at the center and experiences several load and displacement limit points during the loading process. The initial configuration (red dot-dashed line) and several typical deformation are shown in Figure 1. The displacement-load curve of the center node is presented in Figure 2.