【发布时间】:2013-06-26 03:57:21
【问题描述】:
我正在研究解决偏微分方程的解决方案,确切地说是 Fick 的第二扩散定律。 我能够使用 NDSolve 和 Plot3D 函数生成 3D 图。 使用的代码:
NDSolve[{D[c[t, h], t] == 1*D[c[t, h], h, h],
c[0, h] == Erfc[h/(2*81.2)],
c[t, 0] == 1,
c[t, 4000] == 3.08*^-18}, c, {t, 0, 900}, {h, 0, 274}]
我想找到图形在 t = 900 处的数字点,而不是图形表示。 我想知道如何将 t = 900 放入 NDSolve(或其他函数)中,以生成解的详细数值点。
【问题讨论】:
标签: math wolfram-mathematica bioinformatics pde