Mathematica 动画图仅显示第一帧的图形,然后更改范围

Mathematica Animated Plot only showing graph for first frame then changing range

提问人:ekxo 提问时间:10/13/2023 更新时间:10/13/2023 访问量:16

问:

尝试使用 Mathematica 求解偏微分方程。我相信我得到了正确的答案并且已经记下了大部分代码,但动画只在第一帧中显示了该功能。我一整天都在处理错误,但这个错误真的难倒了我。任何帮助将不胜感激。

这是问题陈述以及我在动画中寻找的内容。动画的偏微分方程和初始条件问题陈述

Mathematica 代码:

''' [在] 清除[v, x, t];

eqn2 = D[v[x, t], {t, 2}] - 4 D[v[x, t], {x, 2}] == 0;
ic1 = v[x, 0] == Exp[-(x - 5)^2];
ic2 = D[v[x, t], t] == 0 /. t -> 0;
ic3 = D[v[x, t], x] == 0 /. x -> 0;

sol2 = DSolve[{eqn2, ic1, ic2, ic3}, v[x, t], {x, t}];
v[x_, t_] = v[x, t] /. sol2[[1]];

Simplify[v[x, t]]

[输出]

初始偏微分方程解决方案的输出

[在] Animate[Plot[v[x, t], {x, 0, 10}, PlotRange -> {0, 1}],{t,0,5,0.1},AnimationRunning -> False] [输出] [动画显示功能的初始帧]([https://i.stack.imgur.com/kirYV.png] 下一帧动画窗口已移动且无功能

'''

Wolfram-Mathematica 微分方程 PDE

评论


答: 暂无答案