InterpolateToQuadraturePoints< DeviceType > Struct Template Reference

Kynema API: kynema::beams::InterpolateToQuadraturePoints< DeviceType > Struct Template Reference
Kynema API
A flexible multibody structural dynamics code for wind turbines
Loading...
Searching...
No Matches
kynema::beams::InterpolateToQuadraturePoints< DeviceType > Struct Template Reference

Interpolates various quantities from nodes to quadrature points for beam elements. More...

#include <interpolate_to_quadrature_points.hpp>

Public Types

using TeamPolicy = Kokkos::TeamPolicy< typename DeviceType::execution_space >
 
using member_type = typename TeamPolicy::member_type
 
template<typename ValueType >
using View = Kokkos::View< ValueType, DeviceType >
 
template<typename ValueType >
using ConstView = typename View< ValueType >::const_type
 

Public Member Functions

KOKKOS_FUNCTION void operator() (member_type member) const
 

Public Attributes

ConstView< size_t * > num_nodes_per_element
 
ConstView< size_t * > num_qps_per_element
 
ConstView< double *** > shape_interp
 
ConstView< double *** > shape_deriv
 
ConstView< double ** > qp_jacobian
 
ConstView< double **[7]> node_u
 
ConstView< double **[6]> node_u_dot
 
ConstView< double **[6]> node_u_ddot
 
ConstView< double **[3]> qp_x0
 
ConstView< double **[4]> qp_r0
 
View< double **[3]> qp_u
 
View< double **[3]> qp_uprime
 
View< double **[4]> qp_r
 
View< double **[4]> qp_rprime
 
View< double **[3]> qp_u_dot
 
View< double **[3]> qp_omega
 
View< double **[3]> qp_u_ddot
 
View< double **[3]> qp_omega_dot
 
View< double **[7]> qp_x
 

Detailed Description

template<typename DeviceType>
struct kynema::beams::InterpolateToQuadraturePoints< DeviceType >

Interpolates various quantities from nodes to quadrature points for beam elements.

This functor handles the interpolation of multiple quantities from nodal points to quadrature points (QPs) for beam elements, including:

  • Displacements (u) and their derivatives
  • Rotations (r) and their derivatives
  • Velocities (u_dot) and angular velocities (omega)
  • Accelerations (u_ddot) and angular accelerations (omega_dot)
  • Final positions (x) of quadrature points

Member Typedef Documentation

◆ ConstView

template<typename DeviceType >
template<typename ValueType >
using kynema::beams::InterpolateToQuadraturePoints< DeviceType >::ConstView = typename View<ValueType>::const_type

◆ member_type

template<typename DeviceType >
using kynema::beams::InterpolateToQuadraturePoints< DeviceType >::member_type = typename TeamPolicy::member_type

◆ TeamPolicy

template<typename DeviceType >
using kynema::beams::InterpolateToQuadraturePoints< DeviceType >::TeamPolicy = Kokkos::TeamPolicy<typename DeviceType::execution_space>

◆ View

template<typename DeviceType >
template<typename ValueType >
using kynema::beams::InterpolateToQuadraturePoints< DeviceType >::View = Kokkos::View<ValueType, DeviceType>

Member Function Documentation

◆ operator()()

template<typename DeviceType >
KOKKOS_FUNCTION void kynema::beams::InterpolateToQuadraturePoints< DeviceType >::operator() ( member_type  member) const
inline

Member Data Documentation

◆ node_u

template<typename DeviceType >
ConstView<double** [7]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::node_u

◆ node_u_ddot

template<typename DeviceType >
ConstView<double** [6]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::node_u_ddot

◆ node_u_dot

template<typename DeviceType >
ConstView<double** [6]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::node_u_dot

◆ num_nodes_per_element

template<typename DeviceType >
ConstView<size_t*> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::num_nodes_per_element

◆ num_qps_per_element

template<typename DeviceType >
ConstView<size_t*> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::num_qps_per_element

◆ qp_jacobian

template<typename DeviceType >
ConstView<double**> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_jacobian

◆ qp_omega

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_omega

◆ qp_omega_dot

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_omega_dot

◆ qp_r

template<typename DeviceType >
View<double** [4]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_r

◆ qp_r0

template<typename DeviceType >
ConstView<double** [4]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_r0

◆ qp_rprime

template<typename DeviceType >
View<double** [4]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_rprime

◆ qp_u

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_u

◆ qp_u_ddot

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_u_ddot

◆ qp_u_dot

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_u_dot

◆ qp_uprime

template<typename DeviceType >
View<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_uprime

◆ qp_x

template<typename DeviceType >
View<double** [7]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_x

◆ qp_x0

template<typename DeviceType >
ConstView<double** [3]> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::qp_x0

◆ shape_deriv

template<typename DeviceType >
ConstView<double***> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::shape_deriv

◆ shape_interp

template<typename DeviceType >
ConstView<double***> kynema::beams::InterpolateToQuadraturePoints< DeviceType >::shape_interp

The documentation for this struct was generated from the following file: