Contents     Functions         Previous Next     PDF Index

3.2  Test/analysis correlation

Correlation criteria seek to analyze the similarity and differences between two sets of results. Usual applications are the correlation of test and analysis results and the comparison of various analysis results.

Ideally, correlation criteria should quantify the ability of two models to make the same predictions. Since, the predictions of interest for a particular model can rarely be pinpointed precisely, one has to use general qualities and select, from a list of possible criterion, the ones that can be computed and do a good enough job for the intended purpose.

3.2.1  Shape based criteria

The ii_mac interface implements a number of correlation criteria. You should at least learn about the Modal Assurance Criterion (MAC) and Pseudo Orthogonality Checks (POC). These are very popular and should be used first. Other criteria should be used to get more insight when you don't have the desired answer or to make sure that your answer is really foolproof.

Again, there is no best choice for a correlation criterion unless you are very specific as to what you are trying to do with your model. Since that rarely happens, you should know the possibilities and stick to what is good enough for the job.

The following table gives a list of criteria implemented in the ii_mac interface.


MACModal Assurance Criterion (9.7). The most popular criterion for correlating vectors. Insensitive to vector scaling. Sensitive to sensor selection and level of response at each sensor. Main limitation : can give very misleading results without warning. Main advantage : can be used in all cases. A MAC criterion applied to frequency responses is called FRAC.
POCPseudo Orthogonality Checks (9.12). Required in some industries for model validation. This criterion is only defined for modes since other shapes do verify orthogonality conditions. Its scaled insensitive version (9.8) corresponds to a mass weighted MAC and is implemented as the MAC M commands. Main limitation : requires the definition of a mass associated with the known modeshape components. Main advantage : gives a much more reliable indication of correlation than the MAC.
ErrorModeshape pairing (based on the MAC or MAC-M) and relative frequency error and MAC correlation.
RelRelative error (9.13). Insensitive to scale when using the modal scale factor. Extremely accurate criterion but does not tell much when correlation poor.
COMACCoordinate Modal Assurance Criteria (three variants implemented in ii_mac) compare sets of vectors to analyze which sensors lead poor correlation. Main limitation : does not systematically give good indications. Main advantage : a very fast tool giving more insight into the reasons of poor correlation.
MACCOWhat if analysis, where coordinates are sequentially eliminated from the MAC. Slower but more precise than COMAC.

3.2.2  Energy based criteria

The criteria that make the most mechanical sense are derived from the equilibrium equations. For example, modes are defined by the eigenvalue problem (6.84). Thus the dynamic residual

  {Rj} = [K−ωj id2M] {φ id j}     (3.1)

should be close to zero. A similar residual (3.5) can be defined for FRFs.

The Euclidean norm of the dynamic residual has often been considered, but it tends to be a rather poor choice for models mixing translations and rotations or having very different levels of response in different parts of the structure.

To go to an energy based norm, the easiest is to build a displacement residual

  {Rj} = [K]−1[K−ωj id2M] {φ id j}     (3.2)

and to use the strain |Rj|K = RjTKRj or kinetic |Rj|M = RjTMRj energy norms for comparison.

Note that [K] need only be a reference stiffness that appropriately captures the system behavior. Thus for cases with rigid body modes, a pseudo-inverse of the stiffness (see section 6.2.4), or a mass shifted stiffness can be used. The displacement residual Rj is sometimes called error in constitutive law (for reasons that have nothing to do with structural dynamics).

This approach is illustrated in the gartco demo and used for MDRE in fe_exp. While much more powerful than methods implemented in ii_mac, the development of standard energy based criteria is still a fairly open research topic.

3.2.3  Correlation of FRFs

Comparisons of frequency response functions are performed for both identification and finite element updating purposes.

The quadratic cost function associated with the Euclidean norm

  Jij(Ω) = 
 
ij measured,k∈Ω
 | Ĥij(sk) − Hij(sk) |2     (3.3)

is the most common comparison criterion. The main reason to use it is that it leads to linear least-squares problem for which there are numerically efficient solvers. (id_rc uses this cost function for this reason).

The quadratic cost corresponds to an additive description of the error on the transfer functions and, in the absence of weighting, it is mostly sensitive to errors in regions with high levels of response.

The log least-squares cost, defined by

  Jij(Ω) = 
 
ij measured,k∈Ω
 | log 


Ĥij(sk)
Hij(sk)



|2     (3.4)

uses a multiplicative description of the error and is as sensitive to resonances than to anti-resonances. While the use of a non-linear cost function results in much higher computational costs, this cost tends to be much better at distinguishing physically close dynamic systems than the quadratic cost (except when the difference is very small which is why the quadratic cost can be used in identification phases).

The utility function ii_cost computes these two costs for two sets of FRFs xf1 and xf2 (obtained through test and FE prediction using nor2xf for example). The evaluation of these costs provides a quick and efficient way to compare sets of MIMO FRF and is used in identification and model update algorithms.

Note that you might also consider the complex log of the transfer functions which would give a simple mechanism to take phase errors into account (this might become important for extremely accurate identification sometimes needed for control synthesis).


If the response at a given frequency can be expanded to the full finite element DOF set, you should consider an energy criterion based on the dynamic residual in displacement, which in this case takes the form

  {Rj} = [K]−1[[Z(ω)]{qex(ω)} − [b] {u(ω)}]     (3.5)

and can be used directly of test/analysis correlation and/or finite element updating.


Shape correlation tools provided by ii_mac can also be used to compare frequency responses. Thus the MAC applied to FRFs is sometimes called FRAC.


©1991-2012 by SDTools
Previous Up Next