DataTransferKit - Multiphysics Solution Transfer Services  2.0
DTK_LocalMLSProblem.hpp
Go to the documentation of this file.
1 //---------------------------------------------------------------------------//
2 /*
3  Copyright (c) 2012, Stuart R. Slattery
4  All rights reserved.
5 
6  Redistribution and use in source and binary forms, with or without
7  modification, are permitted provided that the following conditions are
8  met:
9 
10  *: Redistributions of source code must retain the above copyright
11  notice, this list of conditions and the following disclaimer.
12 
13  *: Redistributions in binary form must reproduce the above copyright
14  notice, this list of conditions and the following disclaimer in the
15  documentation and/or other materials provided with the distribution.
16 
17  *: Neither the name of the University of Wisconsin - Madison nor the
18  names of its contributors may be used to endorse or promote products
19  derived from this software without specific prior written permission.
20 
21  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 */
33 //---------------------------------------------------------------------------//
39 //---------------------------------------------------------------------------//
40 
41 #ifndef DTK_LOCALMLSPROBLEM_HPP
42 #define DTK_LOCALMLSPROBLEM_HPP
43 
45 
46 #include <Teuchos_Array.hpp>
47 #include <Teuchos_ArrayView.hpp>
48 #include <Teuchos_SerialDenseMatrix.hpp>
49 
50 namespace DataTransferKit
51 {
52 //---------------------------------------------------------------------------//
58 //---------------------------------------------------------------------------//
59 template <class Basis, int DIM>
61 {
62  public:
67 
68  // Default constructor.
69  LocalMLSProblem() { /* ... */}
70 
71  // Constructor.
72  LocalMLSProblem( const Teuchos::ArrayView<const double> &target_center,
73  const Teuchos::ArrayView<const unsigned> &source_lids,
74  const Teuchos::ArrayView<const double> &source_centers,
75  const Basis &basis, const double radius );
76 
77  // Get a view of the local shape function.
78  Teuchos::ArrayView<const double> shapeFunction() const
79  {
80  return d_shape_function();
81  }
82 
83  private:
84  // Get a polynomial coefficient.
85  double polynomialCoefficient(
86  const int coeff, const Teuchos::ArrayView<const double> &center ) const;
87 
88  // Check if a matrix is full rank.
89  bool
90  isFullRank( const Teuchos::SerialDenseMatrix<int, double> &matrix ) const;
91 
92  private:
93  // Moving least square shape function.
94  Teuchos::Array<double> d_shape_function;
95 };
96 
97 //---------------------------------------------------------------------------//
98 
99 } // end namespace DataTransferKit
100 
101 //---------------------------------------------------------------------------//
102 
103 #endif // end DTK_LOCALMLSPROBLEM_HPP
104 
105 //---------------------------------------------------------------------------//
106 // end DTK_LocalMLSProblem.hpp
107 //---------------------------------------------------------------------------//
RadialBasisPolicy< Basis > BP
Typedefs.
Policy class for spline interpolation basis functions.
Local moving least square problem about a single target center using quadratic polynomials.
DTK_BasicEntitySet.cpp.