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.
Details and Options
- 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.
Examples
Basic Examples (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]See Also
Tech Notes
Related Guides
Text
Wolfram Research (2019), ProcessPDESolutions, Wolfram Language function, https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html.
CMS
Wolfram Language. 2019. "ProcessPDESolutions." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/FEMDocumentation/ref/ProcessPDESolutions.html.
APA
Wolfram Language. (2019). ProcessPDESolutions. Wolfram Language & System Documentation Center. Retrieved from 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: 13-June-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: 13-June-2026]}