声振论坛

 找回密码
 我要加入

QQ登录

只需一步,快速开始

查看: 2769|回复: 6

[分形与混沌] The process of calculating Largest Lyapunov expontns

[复制链接]
发表于 2011-4-26 23:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?我要加入

x
本帖最后由 liliangbiao 于 2011-4-26 23:07 编辑


The usual test for chaos is calculation of the largest Lyapunov exponent. A positive largest Lyapunov exponent indicates chaos. When one has access to the equations generating the chaos, this is relatively easy to do. When one only has access to an experimental data record, such a calculation is difficult to impossible, and that case will not be considered here.
The general idea is to follow two nearby orbits and to calculate their average logarithmic rate of separation. Whenever they get too far apart, one of the orbits has to be moved back to the vicinity of the other along the line of separation. A conservative procedure is to do this at each iteration.
The complete procedure is as follows:
1.  Start with any initial condition in the basin of attraction.
Even better would be to start with a point known to be on the attractor, in which case step 2 can be omitted.

2.  Iterate until the orbit is on the attractor.
This requires some judgment or prior knowledge of the system under study. For most systems, it is safe just to iterate a few hundred times and assume that is sufficient. It usually will be, and in any case, the error incurred by being slightly off the attractor is usually not large unless you happen to be very close to a bifurcation point.

3.  Select (almost any) nearby point (separated by d0).
An appropriate choice of d0 is one that is about 1000
times larger than the precision of the floating point numbers that are being used. For example, in (8-byte) double-precision (minimum recommended for such calculations), variables have a 52-bit mantissa, and the precision is thus 2-52 = 2.22 10-16. Therefore a value of d0 = 10-12
will usually suffice.
4.  Advance both orbits one iteration and calculate the new separation d1.
The separation is calculated from the sum of the squares of the differences in each variable. So for a 2-dimensional system with variables x and y, the separation would be d = [(xa - xb)2 + (ya - yb)2]1/2, where the subscripts (a and b) denote the two orbits respectively.

5.  Evaluate log |d1/d0| in any convenient base.
By convention, the natural logarithm (base-e) is usually used, but for maps, the Lyapunov exponent is often quoted in bits per iteration, in which case you would need to use base-2. (Note that log2x = 1.4427 logex).

You may get run-time errors when evaluating the logarithm if d1 becomes so small as to be indistinguishable from zero. In such a case, try using a larger value of d0. If this doesn't suffice, you may have to ignore values where this happens, but in doing so, your calculation of the Lyapunov exponent will be somewhat in error.

6.  Readjust one orbit so its separation is d0 in the same direction as d1.
This is probably the most difficult and error-prone step. As an example (in 2-dimensions), suppose orbit b is the one to be adjusted and its value after one iteration is (xb1, yb1). It would then be reinitialized to xb0 = xa1 + d0(xb1 - xa1) / d1 and yb0 = ya1 + d0(yb1 - ya1) / d1.

7.  Repeat steps 4-6 many times and calculate the average of step 5.
You might wish to discard the first few values you obtain to be sure the orbits have oriented themselves along the direction of maximum expansion.

It is also a good idea to calculate a running average as an indication of whether the values have settled down to a unique number and to get an indication of the reliability of the calculation. Sometimes, the result converges rather slowly, but a few thousand iterates usually suffices to obtain an estimate accurate to about two significant digits.

It is a good idea to verify that your result is independent of initial conditions, the value of d0, and the number of iterations included in the average. You may also want to test for unbounded orbits, since you will probably get numerical errors and the Lyapunov exponent will not be meaningful in such a case.
The following example demonstrate the above process:
d0=1e-12;
A=[];Le=[];
for a=0:0.001:1.4
    x1=0;y1=0;
    x2=0;y2=d0;
    lsum=0;
    for j=1:500
        x3=a-x1*x1+0.3*y1;
        y1=x1;
        x1=x3;
        x4=a-x2*x2+0.3*y2;
        y2=x2;
        x2=x4;
        d1=sqrt((x2-x1)^2+(y2-y1)^2);
        x2=x1+(d0/d1)*(x2-x1);
        y2=y1+(d0/d1)*(y2-y1);
        if j>100
           lsum=lsum+log(d1/d0);
        end
    end
    le=lsum/(j-100);
    A=[A;a];Le=[Le;le];
end
plot(A,Le,'k')


本帖被以下淘专辑推荐:

回复
分享到:

使用道具 举报

发表于 2011-4-26 23:34 | 显示全部楼层
太难了!!
发表于 2011-4-27 08:36 | 显示全部楼层
楼主是不是对上篇帖子的一个补充呢,谢谢了哈!
楼上上篇关于连续LE值计算的帖子确实有点难度,现在还在消化中ing。。。。。
发表于 2011-5-2 01:48 | 显示全部楼层
The computing procedure of λmax is as follows:
Suppose the time series is X {x1, x2..., xN},
1)
Compute time delay τ, embedding dimension m, and mean period p.
2) Reconstruct phase space using τ and m.



(3)
In which, i =1, 2, ···, M; N = M + (m − 1) τ. The reconstructed phase space is denoted as {Yj, j = 1, 2, ···, M}.
3) Search for the nearest neighbor Yˆj, which minimizes the distance to the particular reference point Yj .This is expressed as follows:
               



4
Where >p, dj (0) is the initial distance from the jth point to its nearest neighbor, and ||...|| denotes the Euclidean norm.
4) Compute the distance between the jth pair of nearest neighbors after i discrete-time steps, which is as follows:




(5)
in which, i =1, 2, ··· ,min(M − j, M − ˆ j).
5) Compute the average line defined by





(6)
Where Δt is the sampling period of the time series, <..> denotes the average over all values of j.
6) The Largest Lyapunov Exponent is the slope of the least- squares &#64257;t to the average line y (i).
The results for the Henon’s mapping are demonstrated in Figure 4. The diagram inclination has been calculated with the aid of the least-square technique. We have obtained the value λmax = 0.403 that almost corresponds to the theoretical one (λmax = 0.418)


发表于 2011-5-2 01:48 | 显示全部楼层
为何不显示公式啊??
发表于 2011-5-2 09:37 | 显示全部楼层
建议LS黏贴的时候选择黏贴属性直接将文字和图片一起存成图片格式就好了!
发表于 2012-4-16 23:12 | 显示全部楼层
我用楼主的方法,计算出来的结果有问题,楼主能否帮我解决一下。http://forum.vibunion.com/forum- ... light-lyapunov.html
您需要登录后才可以回帖 登录 | 我要加入

本版积分规则

QQ|小黑屋|Archiver|手机版|联系我们|声振论坛

GMT+8, 2024-5-7 07:31 , Processed in 0.054863 second(s), 19 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表