ProcessPDESolutions[mdata,sd]
generates InterpolatingFunction objects from the solution data sd and method data mdata.
ProcessPDESolutions
ProcessPDESolutions[mdata,sd]
generates InterpolatingFunction objects from the solution data sd and method data mdata.
更多信息和选项
- ProcessPDESolutions returns a list of InterpolatingFunction objects.
- The method data mdata is a PDE method data object, such as FEMMethodData, generated through InitializePDEMethodData.
- Solution data sd is typically generated by PDESolve.
范例
基本范例 (1)
Load the finite element package:
Needs["NDSolve`FEM`"]Set up a NumericalRegion:
nr = ToNumericalRegion[Rectangle[{0, 0}, {1, 1 / 2}]]Set up variable and solution data:
vd = NDSolve`VariableData[{"DependentVariables", "Space"} -> {{u}, {x, y}}];
sd = NDSolve`SolutionData[{"Space"} -> {nr}];Initialize the partial differential equation data:
mdata = InitializePDEMethodData[vd, sd]Initialize the linear coefficients:
lcdata = InitializePDECoefficients[vd, sd, "DiffusionCoefficients" -> {{-IdentityMatrix[2]}}]Initialize the linear boundary condition data:
lbcdata = InitializeBoundaryConditions[vd, sd, {{DirichletCondition[u[x, y] == 0., x == 0]}}]sdNew = PDESolve[lcdata, lbcdata, vd, sd, mdata];ProcessPDESolutions[mdata, sdNew]技术笔记
相关指南
文本
Wolfram Research (2019),ProcessPDESolutions,Wolfram 语言函数,https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html.
CMS
Wolfram 语言. 2019. "ProcessPDESolutions." Wolfram 语言与系统参考资料中心. Wolfram Research. https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html.
APA
Wolfram 语言. (2019). ProcessPDESolutions. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html 年
BibTeX
@misc{reference.wolfram_2026_processpdesolutions, author="Wolfram Research", title="{ProcessPDESolutions}", year="2019", howpublished="\url{https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html}", note=[Accessed: 11-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_processpdesolutions, organization={Wolfram Research}, title={ProcessPDESolutions}, year={2019}, url={https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html}, note=[Accessed: 11-September-2026]}