docs(poly): began cleaning up and adding docs

This commit is contained in:
2025-06-05 15:13:50 -04:00
parent a31c966146
commit 6e1453cf6e
4 changed files with 267 additions and 57 deletions

View File

@@ -194,6 +194,9 @@ void PolySolver::solve() const {
const solverBundle sb = setupNewtonSolver();
sb.newton.Mult(zero_rhs, state_vector);
// TODO: Need some system here to reconstruct the full system vector from what MFEM's Newton Solver
// will return, since that will end up being the vector for the reduced system.
// --- Save and view an approximate 1D solution ---
saveAndViewSolution(state_vector);
}

View File

@@ -190,4 +190,4 @@ private: // Private methods
static void GetDofCoordinates(const mfem::FiniteElementSpace &fes, const std::string& filename);
};
};