adaptivesolve.h

Note

The documentation on this page was automatically extracted from the DOLFIN C++ code and may need to be edited or expanded.

void solve(const Equation& equation, Function& u, const double tol, GoalFunctional& M)

Solve linear variational problem a(u, v) == L(v) without essential boundary conditions

void solve(const Equation& equation, Function& u, const DirichletBC& bc, const double tol, GoalFunctional& M)

Solve linear variational problem a(u, v) == L(v) with single boundary condition

void solve(const Equation& equation, Function& u, std::vector<const DirichletBC*> bcs, const double tol, GoalFunctional& M)

Solve linear variational problem a(u, v) == L(v) with list of boundary conditions

void solve(const Equation& equation, Function& u, const Form& J, const double tol, GoalFunctional& M)

Solve nonlinear variational problem F(u; v) = 0 without essential boundary conditions

void solve(const Equation& equation, Function& u, const DirichletBC& bc, const Form& J, const double tol, GoalFunctional& M)

Solve linear variational problem F(u; v) = 0 with single boundary condition

void solve(const Equation& equation, Function& u, std::vector<const DirichletBC*> bcs, const Form& J, const double tol, GoalFunctional& M)

Solve linear variational problem F(u; v) = 0 with list of boundary conditions

Previous topic

adapt.h

Next topic

marking.h

This Page