I’m interested in solving a sequence of finite element problems a(u_n,v) = b_n(v) (A x_n = b_n in assembled form), all of which have the same boundary conditions. Since A is constant, I want to avoid re-assembling A at each iteration (which I believe happens e.g. when using AffineFEOperator as in the tutorials), and only assemble b_n while imposing the boundary conditions.
How can I achieve that? Tangentially, what are the outputs of assemble_vector and assemble_matrix? Do they include the specific boundary values?