Reference documentation for deal.II version 9.1.0-pre
schur_complement.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2015 - 2018 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_schur_complement_h
17 #define dealii_schur_complement_h
18 
19 #include <deal.II/base/config.h>
20 
21 #include <deal.II/base/exceptions.h>
22 
23 #include <deal.II/lac/linear_operator.h>
24 #include <deal.II/lac/packaged_operation.h>
25 #include <deal.II/lac/vector_memory.h>
26 
27 
28 DEAL_II_NAMESPACE_OPEN
29 
34 
243 template <typename Range_1,
244  typename Domain_1,
245  typename Range_2,
246  typename Domain_2,
247  typename Payload>
253 {
254  // We return the result of the compound LinearOperator
255  // directly, so as to ensure that the underlying Payload
256  // definition aligns with the operations expressed here.
257  // All of the memory allocations etc. are taken care of
258  // internally.
259  if (D.is_null_operator == false)
260  return D - C * A_inv * B;
261  else
262  return -1.0 * C * A_inv * B;
263 }
264 
266 
267 
272 
295 template <typename Range_1,
296  typename Domain_1,
297  typename Range_2,
298  typename Payload>
302  const Range_1 & f,
303  const Range_2 & g)
304 {
305  // We return the result of the compound PackagedOperation
306  // directly, so as to ensure that the underlying Payload
307  // definition aligns with the operations expressed here.
308  // All of the memory allocations etc. are taken care of
309  // internally.
310  return g - C * A_inv * f;
311 }
312 
334 template <typename Range_1,
335  typename Domain_1,
336  typename Domain_2,
337  typename Payload>
342  const Domain_2 & y,
343  const Range_1 & f)
344 {
345  // We return the result of the compound PackagedOperation
346  // directly, so as to ensure that the underlying Payload
347  // definition aligns with the operations expressed here.
348  // All of the memory allocations etc. are taken care of
349  // internally.
350  return A_inv * (f - B * y);
351 }
352 
354 
355 DEAL_II_NAMESPACE_CLOSE
356 
357 #endif
PackagedOperation< Domain_1 > postprocess_schur_solution(const LinearOperator< Range_1, Domain_1, Payload > &A_inv, const LinearOperator< Range_1, Domain_2, Payload > &B, const Domain_2 &y, const Range_1 &f)
LinearOperator< Range_2, Domain_2, Payload > schur_complement(const LinearOperator< Domain_1, Range_1, Payload > &A_inv, const LinearOperator< Range_1, Domain_2, Payload > &B, const LinearOperator< Range_2, Domain_1, Payload > &C, const LinearOperator< Range_2, Domain_2, Payload > &D)
PackagedOperation< Range_2 > condense_schur_rhs(const LinearOperator< Range_1, Domain_1, Payload > &A_inv, const LinearOperator< Range_2, Domain_1, Payload > &C, const Range_1 &f, const Range_2 &g)