#include <shape.h>
Public Member Functions | |
DShape (const unsigned &N, const unsigned &P) | |
Constructor with two parameters: a single-index shape function. More... | |
DShape (const unsigned &N, const unsigned &M, const unsigned &P) | |
Constructor with three paramters: a two-index shape function. More... | |
DShape () | |
DShape (const DShape &dshape) | |
Broken copy constructor. More... | |
void | operator= (const DShape &dshape) |
void | operator= (DShape *const &dshape_pt) |
~DShape () | |
Destructor, clean up the memory allocated by this object. More... | |
void | resize (const unsigned &N, const unsigned &P, const unsigned &M=1) |
double & | operator() (const unsigned &i, const unsigned &k) |
Overload the round bracket operator for access to the data. More... | |
const double & | operator() (const unsigned &i, const unsigned &k) const |
Overload the round bracket operator (const version) More... | |
double & | operator() (const unsigned &i, const unsigned &j, const unsigned &k) |
Overload the round bracket operator, with 3 indices. More... | |
const double & | operator() (const unsigned &i, const unsigned &j, const unsigned &k) const |
Overload the round bracket operator (const version) More... | |
double & | raw_direct_access (const unsigned long &i) |
Direct access to internal storage of data in flat-packed C-style column-major format. WARNING: Only for experienced users. Only use this if raw speed is of the essence, as in the solid mechanics problems. More... | |
const double & | raw_direct_access (const unsigned long &i) const |
Direct access to internal storage of data in flat-packed C-style column-major format. WARNING: Only for experienced users. Only use this if raw speed is of the essence, as in the solid mechanics problems. More... | |
unsigned | offset (const unsigned long &i, const unsigned long &j) const |
Caculate the offset in flat-packed C-style, column-major format, required for a given i,j. WARNING: Only for experienced users. Only use this if raw speed is of the essence, as in the solid mechanics problems. More... | |
unsigned long | nindex1 () const |
Return the range of index 1 of the derivatives of the shape functions. More... | |
unsigned long | nindex2 () const |
Return the range of index 2 of the derivatives of the shape functions. More... | |
unsigned long | nindex3 () const |
Return the range of index 3 of the derivatives of the shape functions. More... | |
Private Member Functions | |
void | range_check (const unsigned &i, const unsigned &j, const unsigned &k) const |
Private function that checks whether the indices are in range. More... | |
Private Attributes | |
double * | DPsi |
Pointer that addresses the storage that will be used to read and set the shape-function derivatives. The values are packed into a flat array of doubles. More... | |
double * | Allocated_storage |
Pointer that addresses the storage allocated by the object on construction. This will be the same as DPsi if the object is not copied. More... | |
unsigned | Index1 |
Size of the first index of the shape function. More... | |
unsigned | Index2 |
Size of the second index of the shape function. More... | |
unsigned | Index3 |
Size of the third index of the shape function. More... | |
A Class for the derivatives of shape functions The class design is essentially the same as Shape, but there is on additional index that is used to indicate the coordinate direction in which the derivative is taken.
|
inline |
Constructor with two parameters: a single-index shape function.
Definition at line 335 of file shape.h.
References oomph::Shape::Allocated_storage.
|
inline |
Constructor with three paramters: a two-index shape function.
Definition at line 340 of file shape.h.
References oomph::Shape::Allocated_storage.
|
inline |
|
inline |
Broken copy constructor.
Definition at line 349 of file shape.h.
References oomph::BrokenCopy::broken_copy().
|
inline |
Destructor, clean up the memory allocated by this object.
Definition at line 407 of file shape.h.
References oomph::Shape::Allocated_storage.
|
inline |
Return the range of index 1 of the derivatives of the shape functions.
Definition at line 489 of file shape.h.
References oomph::Shape::Index1.
Referenced by oomph::ClampedHermiteShellBoundaryConditionElement::dshape_local(), oomph::FiniteElement::transform_derivatives(), and oomph::FiniteElement::transform_derivatives_diagonal().
|
inline |
Return the range of index 2 of the derivatives of the shape functions.
Definition at line 492 of file shape.h.
References oomph::Shape::Index2.
Referenced by oomph::ClampedHermiteShellBoundaryConditionElement::dshape_local(), oomph::FiniteElement::transform_derivatives(), and oomph::FiniteElement::transform_derivatives_diagonal().
|
inline |
Return the range of index 3 of the derivatives of the shape functions.
Definition at line 495 of file shape.h.
Referenced by oomph::ClampedHermiteShellBoundaryConditionElement::dshape_local().
|
inline |
Caculate the offset in flat-packed C-style, column-major format, required for a given i,j. WARNING: Only for experienced users. Only use this if raw speed is of the essence, as in the solid mechanics problems.
Definition at line 482 of file shape.h.
Referenced by oomph::RefineablePVDEquations< DIM >::fill_in_generic_contribution_to_residuals_pvd(), oomph::PVDEquations< DIM >::fill_in_generic_contribution_to_residuals_pvd(), oomph::RefineablePVDEquationsWithPressure< DIM >::fill_in_generic_residual_contribution_pvd_with_pressure(), and oomph::PVDEquationsWithPressure< DIM >::fill_in_generic_residual_contribution_pvd_with_pressure().
|
inline |
Overload the round bracket operator for access to the data.
Definition at line 427 of file shape.h.
References oomph::Shape::range_check().
|
inline |
Overload the round bracket operator (const version)
Definition at line 436 of file shape.h.
References oomph::Shape::range_check().
|
inline |
Overload the round bracket operator, with 3 indices.
Definition at line 445 of file shape.h.
References oomph::Shape::range_check().
|
inline |
Overload the round bracket operator (const version)
Definition at line 455 of file shape.h.
References oomph::Shape::range_check().
|
inline |
|
inline |
|
inlineprivate |
|
inline |
Direct access to internal storage of data in flat-packed C-style column-major format. WARNING: Only for experienced users. Only use this if raw speed is of the essence, as in the solid mechanics problems.
Definition at line 468 of file shape.h.
References i.
Referenced by oomph::RefineablePVDEquations< DIM >::fill_in_generic_contribution_to_residuals_pvd(), oomph::PVDEquations< DIM >::fill_in_generic_contribution_to_residuals_pvd(), oomph::RefineablePVDEquationsWithPressure< DIM >::fill_in_generic_residual_contribution_pvd_with_pressure(), and oomph::PVDEquationsWithPressure< DIM >::fill_in_generic_residual_contribution_pvd_with_pressure().
|
inline |
|
inline |
Change the size of the storage. Note that (for some strange reason) index2 is the "optional" index, to conform with the existing constructor.
Definition at line 412 of file shape.h.
References oomph::Shape::Allocated_storage, and oomph::QuadTreeNames::N.
|
private |
|
private |
Pointer that addresses the storage that will be used to read and set the shape-function derivatives. The values are packed into a flat array of doubles.
Definition at line 282 of file shape.h.
Referenced by operator=().
|
private |
Size of the first index of the shape function.
Definition at line 290 of file shape.h.
Referenced by operator=().
|
private |
Size of the second index of the shape function.
Definition at line 293 of file shape.h.
Referenced by operator=().
|
private |
Size of the third index of the shape function.
Definition at line 296 of file shape.h.
Referenced by operator=().