MOAB: Mesh Oriented datABase  (version 5.4.1)
TriLagrangeShape.hpp
Go to the documentation of this file.
00001 /* *****************************************************************
00002     MESQUITE -- The Mesh Quality Improvement Toolkit
00003 
00004     Copyright 2006 Sandia National Laboratories.  Developed at the
00005     University of Wisconsin--Madison under SNL contract number
00006     624796.  The U.S. Government and the University of Wisconsin
00007     retain certain rights to this software.
00008 
00009     This library is free software; you can redistribute it and/or
00010     modify it under the terms of the GNU Lesser General Public
00011     License as published by the Free Software Foundation; either
00012     version 2.1 of the License, or (at your option) any later version.
00013 
00014     This library is distributed in the hope that it will be useful,
00015     but WITHOUT ANY WARRANTY; without even the implied warranty of
00016     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00017     Lesser General Public License for more details.
00018 
00019     You should have received a copy of the GNU Lesser General Public License
00020     (lgpl.txt) along with this library; if not, write to the Free Software
00021     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00022 
00023     (2006) [email protected]
00024 
00025   ***************************************************************** */
00026 
00027 /** \file TriLagrangeShape.hpp
00028  *  \brief
00029  *  \author Jason Kraftcheck
00030  */
00031 
00032 #ifndef MSQ_TRI_LAGRANGE_SHAPE_HPP
00033 #define MSQ_TRI_LAGRANGE_SHAPE_HPP
00034 
00035 #include "Mesquite.hpp"
00036 #include "MappingFunction.hpp"
00037 
00038 namespace MBMesquite
00039 {
00040 
00041 /**\brief Lagrange shape function for triangle elements
00042  *
00043  * This class implements the MappingFunction interface, providing
00044  * a Lagrange shape function for 6-node triangle.
00045  *
00046  * \f$\vec{x}(r,s) = sum_{i=0}^{n-1} N_i(r,s) \vec{x_i}\f$
00047  *
00048  * \f$N_1 = t(2t - 1)\f$
00049  *
00050  * \f$N_2 = r(2r - 1)\f$
00051  *
00052  * \f$N_3 = s(2s - 1)\f$
00053  *
00054  * \f$N_4 = 4rt\f$
00055  *
00056  * \f$N_5 = 4rs\f$
00057  *
00058  * \f$N_6 = 4st\f$
00059  *
00060  * \f$t = 1 - r - s\f$
00061  */
00062 class MESQUITE_EXPORT TriLagrangeShape : public MappingFunction2D
00063 {
00064   public:
00065     virtual EntityTopology element_topology() const;
00066 
00067     virtual int num_nodes() const;
00068 
00069     virtual NodeSet sample_points( NodeSet higher_order_nodes ) const;
00070 
00071     virtual void coefficients( Sample location,
00072                                NodeSet nodeset,
00073                                double* coeff_out,
00074                                size_t* indices_out,
00075                                size_t& num_coeff_out,
00076                                MsqError& err ) const;
00077 
00078     virtual void derivatives( Sample location,
00079                               NodeSet nodeset,
00080                               size_t* vertex_indices_out,
00081                               MsqVector< 2 >* d_coeff_d_xi_out,
00082                               size_t& num_vtx,
00083                               MsqError& err ) const;
00084 
00085     virtual void ideal( Sample location, MsqMatrix< 3, 2 >& jacobian_out, MsqError& err ) const;
00086 };
00087 
00088 }  // namespace MBMesquite
00089 
00090 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines