繁体   English   中英

如何在 For 循环中重复迭代,Python 3

[英]How to Repeat an Iteration in a For loop, Python 3

我目前正在致力于将具有自适应步长的数值方法 RKF45 (Runge-Kutta-Fehlberg-45) 实施到 python 3 中,我相信我遇到了一个我无法解决的基本循环问题。 请注意,我在实现该数值方法时遇到困难的部分是自适应步长。 我了解如何实现这一点的基本算法,我将提供该算法,但首先让我们看一下我构建的执行 RF45 计算的函数:

def rkf45(n):  # here we perform the necessary RKF45 computations
    t0 = 0
    t1 = 5  # this is just a label for the endpoint, not the i = 1 point.
    y0 = 0
    TOL = 5e-7

    h = (t1 - t0) / n

    vect = [0] * (n + 1)
    vectw = [0] * (n + 1)
    vect[0] = t = t0
    vectw[0] = y = y0

    for i in range(1, n + 1):
        k1 = h * gf.f(t, y)
        k2 = h * gf.f(t + (1/4) * h, y + (1/4) * k1)
        k3 = h * gf.f(t + (3/8) * h, y + (3/32) * k1 + (9/32) * k2)
        k4 = h * gf.f(t + (12/13) * h, y + (1932/2197) * k1 - (7200/2197) * k2 + (7296/2197) * k3)
        k5 = h * gf.f(t + h, y + (493/216) * k1 - 8 * k2 + (3680/513) * k3 - (845/4104) * k4)
        k6 = h * gf.f(t + (1/2) * h, y - (8/27) * k1 + 2 * k2 - (3544/2565) * k3 + (1859/4104) * k4 - (11/40) * k5)

        er = (1/h) * ((1/360) * k1 - (128/4275) * k3 - (2197/7540) * k4 + (1/50) * k5 + (2/55) * k6)

        #  adaptive step size test goes here

        vect[i] = t = t0 + i * h
        vectw[i] = y = y + ((16/135) * k1 + (6656/12825) * k3 + (28561/56430) * k4 - (9/50) * k5 + (2/55) * k6)

    return vect, vectw

请注意, gf.f是我在一个单独的模块上定义的函数,该模块由以下函数提供:

def f(t, y):
    a = -3 * t * y ** 2
    b = 1 / (1 + t ** 3)
    return a + b

现在,我评论# adaptive step size goes here是我的问题所在:我需要测试是否abs(er) > TOL如果这是真的,更新当前步长hh = h * q where q = (TOL / (2 * abs(er))) ** (1 / 4)并使用更新后的步长重复当前迭代,直到abs(er) < TOL 从那里开始,我需要在下一次迭代中使用这个更新的h

我曾尝试使用while循环来实现这一点,但我绝对没有正确实现它; 可能是因为我是新手,犯了一个愚蠢的错误。 我也尝试过使用if语句来测试是否abs(er) > TOL并从那里更新h但我不相信这会强制 for 循环使用更新的h重复当前迭代。

如果我明白你需要什么:

def rkf45(n):  # here we perform the necessary RKF45 computations
    t0 = 0
    t1 = 5  # this is just a label for the endpoint, not the i = 1 point.
    y0 = 0
    TOL = 5e-7

    h = (t1 - t0) / n

    vect = [0] * (n + 1)
    vectw = [0] * (n + 1)
    vect[0] = t = t0
    vectw[0] = y = y0

    for i in range(1, n + 1):

        # Will loop until break ("see End of loop ?" comment)
        while True:
            k1 = h * gf.f(t, y)
            k2 = h * gf.f(t + (1/4) * h, y + (1/4) * k1)
            k3 = h * gf.f(t + (3/8) * h, y + (3/32) * k1 + (9/32) * k2)
            k4 = h * gf.f(t + (12/13) * h, y + (1932/2197) * k1 - (7200/2197) * k2 + (7296/2197) * k3)
            k5 = h * gf.f(t + h, y + (493/216) * k1 - 8 * k2 + (3680/513) * k3 - (845/4104) * k4)
            k6 = h * gf.f(t + (1/2) * h, y - (8/27) * k1 + 2 * k2 - (3544/2565) * k3 + (1859/4104) * k4 - (11/40) * k5)

            er = (1/h) * ((1/360) * k1 - (128/4275) * k3 - (2197/7540) * k4 + (1/50) * k5 + (2/55) * k6)

            # End of loop ?
            if abs(er) <= TOL:
                break
                
            # update h before starting new iteration
            h *= (TOL / (2 * abs(er))) ** (1 / 4)
    
        # Continue 
        vect[i] = t = t0 + i * h
        vectw[i] = y = y + ((16/135) * k1 + (6656/12825) * k3 + (28561/56430) * k4 - (9/50) * k5 + (2/55) * k6)

    return vect, vectw

使用动态循环的想法是正确的,你不知道需要多少步才能通过积分区间的末端。

出于同样的原因,传递或定义n根本没有意义。

您可以扭曲步长自适应的逻辑。 您不计算最佳h ,您只是决定当前h是否可以接受。 在准备下一个方法步骤计算时,步长更新无论如何都会在每个循环结束时发生。 但只有当局部单位步长误差小于公差时,您才会将计算出的y值附加到输出列表并提前时间。

缺少某些部分的骨架可能看起来像这样

def RKF45(f,t,y,t_final,TOL):
    T = [t]
    Y = [y]
    h = TOL**0.2
    while t < t_final:
        v4, v5, err = RKF45Step(f,t,y,h)
        err = 1e-20+abs(err)
        # scale the error by the expected solution magnitude
        if 0.01*TOL < err < TOL:
            t,y = t+h, y+h*v4
            T.append(t)
            Y.append(y)
        q = 0.9*(TOL/err)**0.25
        # min/max on q
        q = max(0.1,min(2.5,q))
        h = q*h
        # min/max on h
    return np.asarray(T), np.asarray(Y)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM