LinearVariationalProblem¶
-
class
dolfin.cpp.fem.LinearVariationalProblem(a: 'std::shared_ptr< dolfin::Form const >', L: 'std::shared_ptr< dolfin::Form const >', u: 'std::shared_ptr< dolfin::Function >', bcs: 'std::vector< std::shared_ptr< dolfin::DirichletBC const > >')¶ Bases:
dolfin.cpp.fem.HierarchicalLinearVariationalProblemThis class represents a linear variational problem:
Find u in V such that
a(u, v) = L(v) for all v in V^,where V is the trial space and V^ is the test space.
Create linear variational problem with a list of boundary conditions
-
bcs()¶ Return boundary conditions
-
bilinear_form()¶ Return bilinear form
-
linear_form()¶ Return linear form
-
solution()¶ Return the solution
-
test_space()¶ Return the test space
-
thisown¶ The membership flag
-
trial_space()¶ Return the trial space
-