MAST
Multidisciplinary-design Adaptation and Sensitivity Toolkit (MAST)
basis_matrix_coordinate.cpp
Go to the documentation of this file.
1 /*
2  * MAST: Multidisciplinary-design Adaptation and Sensitivity Toolkit
3  * Copyright (C) 2013-2020 Manav Bhatia and MAST authors
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  */
19 
20 // MAST includes
22 
23 
26 MAST::CoordinateBase(nm),
27 _basis(basis) {
28 
29  _functions.insert(&basis);
30 }
31 
32 
33 
34 
36 
37 }
38 
39 
40 
41 
42 
43 void
45  const Real t,
46  RealMatrixX& v) const {
47 
48  _basis(p, t, v);
49 }
50 
51 
52 
53 
54 void
56  const libMesh::Point& p,
57  const Real t,
58  RealMatrixX& v) const {
59 
60  _basis.derivative( f, p, t, v);
61 }
62 
63 
64 
MAST::FieldFunction< RealMatrixX > & _basis
std::set< const MAST::FunctionBase * > _functions
set of functions that this function depends on
virtual void derivative(const MAST::FunctionBase &f, ValType &v) const
calculates the value of the function derivative and returns it in v.
libMesh::Real Real
virtual void derivative(const MAST::FunctionBase &f, const libMesh::Point &p, const Real t, RealMatrixX &v) const
calculates the value of the function at the specified point, p, and time, t, and returns it in v...
Matrix< Real, Dynamic, Dynamic > RealMatrixX
BasisMatrixCoordinate(const std::string &nm, MAST::FieldFunction< RealMatrixX > &basis)
virtual void operator()(const libMesh::Point &p, const Real t, RealMatrixX &v) const
calculates the value of the function at the specified point, p, and time, t, and returns it in v...
Provides the transformation matrix T to transform vector from the orientation provided in this matrix...