double rho[1001], rhonew[1001];

int main(void)
{
    int tstep, tmax, n, nmax, r;
    double t, dt, x, dx;
    dt = 0.001;
    tmax = 1000;
    dx = 0.1;
    nmax = 1000;
    rho0=1.0;
    r=1;

    FILE *afinal;
    afinal = fopen("afinal.txt","w");
    FILE *amid;
    amid = fopen("amid.txt","w");

    for (n = 0; n <= nmax; n++)
    {
        rho[n] = 500;
    }

    for (n = 0; n <= nmax; n++)
    {
        rhonew[n] = 1;
    }
    for (tstep=1; tstep<=tmax; tstep++)
    {
        rho[tstep] += -tstep;
        if(tstep == r*10)
//I want this if statement to execute every 10 "tsteps" to overwrite the data in amid.txt
        {
            for (n = 0; n <= nmax; n++)
            {
                x = n*dx;
                fprintf(amid, "%f \t %f \n", x, rho[n]);
            }
        fclose(amid);
        r++;
        }
    }

    for (n = 0; n <= nmax; n++)
    {
        x = n*dx;
        fprintf(afinal, "%f \t %f \n", x, rho[n]);
    }
    fclose(afinal);
return 0;
}

我的数组“中间”只写一次,但我希望它写信息,然后在更大的“tmax”循环中用新信息覆盖旧信息数次。有了这个,我想通过gnuplot“随时间”绘制我的数据快照,这样我就可以观察微分方程的工作进展。

最佳答案

你是说这样吗?:

for (tstep=1; tstep<=tmax; tstep++)
{
    rho[tstep] += -tstep;
    if(tstep == r)
    {
        rewind(amid);
        for (n = 0; n <= nmax; n++)
        {
            x = n*dx;
            fprintf(amid, "%f \t %f \n", x, rho[n]);
        }
        r += 10;
    }
}

// later....
close(amid);

顺便说一句:你为什么用rho[tstep] += -tstep;而不是rho[tstep] -= tstep;。。。这似乎有点难读,至少我得读两遍,你在那里做的。
也许你的问题是,你关闭文件太早了。。还要注意代码的缩进。
此外,你应该在这里问一个问题。你的问题是什么?

关于c - 每循环10次,我需要方程式来覆盖文件中的数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18137866/

10-13 23:12