GEOS
FiniteElementBase.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
20 #if defined(GEOS_USE_DEVICE)
21 #define CALC_FEM_SHAPE_IN_KERNEL
22 #endif
23 
24 
25 
26 #ifndef GEOS_FINITEELEMENT_ELEMENTFORMULATIONS_FINITEELEMENTBASE_HPP_
27 #define GEOS_FINITEELEMENT_ELEMENTFORMULATIONS_FINITEELEMENTBASE_HPP_
28 
29 #include "common/DataTypes.hpp"
30 #include "common/GeosxMacros.hpp"
31 #include "finiteElement/PDEUtilities.hpp"
32 #include "LvArray/src/tensorOps.hpp"
33 #include "mesh/NodeManager.hpp"
34 #include "mesh/EdgeManager.hpp"
35 #include "mesh/FaceManager.hpp"
36 
37 namespace geos
38 {
39 namespace finiteElement
40 {
41 
46 {
47 public:
48 
50  FiniteElementBase() = default;
51 
52 
54  constexpr static int numSamplingPointsPerDirection = 10;
55 
62 #ifdef CALC_FEM_SHAPE_IN_KERNEL
63  m_viewGradN(),
64  m_viewDetJ()
65 #else
66  m_viewGradN( source.m_viewGradN ),
67  m_viewDetJ( source.m_viewDetJ )
68 #endif
69  {
70  GEOS_UNUSED_VAR( source ); // suppress warning when CALC_FEM_SHAPE_IN_KERNEL is defined
71  }
72 
75 
81 
87 
93  {}
94 
103  {};
104 
109  template< typename SUBREGION_TYPE >
110  struct MeshData
111  {};
112 
113 
122  template< typename SUBREGION_TYPE >
123  static void fillMeshData( NodeManager const & nodeManager,
124  EdgeManager const & edgeManager,
125  FaceManager const & faceManager,
126  SUBREGION_TYPE const & cellSubRegion,
127  MeshData< SUBREGION_TYPE > & meshData )
128  {
129  GEOS_UNUSED_VAR( nodeManager,
130  edgeManager,
131  faceManager,
132  cellSubRegion,
133  meshData );
134  }
135 
146  template< typename LEAF, typename SUBREGION_TYPE >
147  static void initialize( NodeManager const & nodeManager,
148  EdgeManager const & edgeManager,
149  FaceManager const & faceManager,
150  SUBREGION_TYPE const & cellSubRegion,
151  typename LEAF::template MeshData< SUBREGION_TYPE > & meshData
152  )
153  {
154  LEAF::template fillMeshData< SUBREGION_TYPE >( nodeManager,
155  edgeManager,
156  faceManager,
157  cellSubRegion,
158  meshData );
159  }
160 
161 
168  template< typename SUBREGION_TYPE >
171  static void setupStack( localIndex const & cellIndex,
172  MeshData< SUBREGION_TYPE > const & meshData,
173  StackVariables & stack )
174  {
175  GEOS_UNUSED_VAR( cellIndex,
176  meshData,
177  stack );
178 
179  }
180 
189  template< typename LEAF, typename SUBREGION_TYPE >
191  void setup( localIndex const & cellIndex,
192  typename LEAF::template MeshData< SUBREGION_TYPE > const & meshData,
193  typename LEAF::StackVariables & stack ) const
194  {
195  LEAF::setupStack( cellIndex, meshData, stack );
196  }
197 
203  virtual localIndex getNumQuadraturePoints() const = 0;
204 
210  virtual localIndex getNumSupportPoints() const = 0;
211 
217  template< int N >
219  {};
220 
227  template< int N >
229  constexpr static PDEUtilities::FunctionSpace getFunctionSpace();
230 
237  template< typename LEAF >
239  localIndex numSupportPoints( typename LEAF::StackVariables const & stack ) const
240  {
241  return LEAF::getNumSupportPoints( stack );
242  }
243 
251  virtual localIndex getMaxSupportPoints() const = 0;
252 
264  template< typename LEAF >
267  localIndex const q,
268  real64 const (&X)[LEAF::maxSupportPoints][3],
269  real64 ( &gradN )[LEAF::maxSupportPoints][3] ) const;
270 
283  template< typename LEAF >
286  localIndex const q,
287  real64 const (&X)[LEAF::maxSupportPoints][3],
288  typename LEAF::StackVariables const & stack,
289  real64 ( &gradN )[LEAF::maxSupportPoints][3] ) const;
290 
302  template< typename LEAF >
305  localIndex const q,
306  int const X,
307  real64 ( &gradN )[LEAF::maxSupportPoints][3] ) const;
320  template< typename LEAF >
323  localIndex const q,
324  int const X,
325  typename LEAF::StackVariables const & stack,
326  real64 ( &gradN )[LEAF::maxSupportPoints][3] ) const;
327 
328 
339  template< localIndex NUMDOFSPERTRIALSUPPORTPOINT, localIndex MAXSUPPORTPOINTS, bool UPPER >
342  static void addGradGradStabilization( StackVariables const & stack,
343  real64 ( & matrix )
344  [MAXSUPPORTPOINTS * NUMDOFSPERTRIALSUPPORTPOINT]
345  [MAXSUPPORTPOINTS * NUMDOFSPERTRIALSUPPORTPOINT],
346  real64 const & scaleFactor )
347  {
348  GEOS_UNUSED_VAR( stack,
349  matrix,
350  scaleFactor );
351  }
352 
353 
363  template< typename LEAF, localIndex NUMDOFSPERTRIALSUPPORTPOINT, bool UPPER = false >
365  void addGradGradStabilizationMatrix( typename LEAF::StackVariables const & stack,
366  real64 ( & matrix )
367  [LEAF::maxSupportPoints * NUMDOFSPERTRIALSUPPORTPOINT]
368  [LEAF::maxSupportPoints * NUMDOFSPERTRIALSUPPORTPOINT],
369  real64 const scaleFactor = 1.0 ) const
370  {
371  LEAF::template addGradGradStabilization< NUMDOFSPERTRIALSUPPORTPOINT,
372  LEAF::maxSupportPoints,
373  UPPER >( stack,
374  matrix,
375  scaleFactor );
376  }
377 
391  template< localIndex NUMDOFSPERTRIALSUPPORTPOINT, localIndex MAXSUPPORTPOINTS >
395  real64 const ( &dofs )[MAXSUPPORTPOINTS][NUMDOFSPERTRIALSUPPORTPOINT],
396  real64 ( & targetVector )[MAXSUPPORTPOINTS][NUMDOFSPERTRIALSUPPORTPOINT],
397  real64 const scaleFactor )
398  {
399  GEOS_UNUSED_VAR( stack );
400  GEOS_UNUSED_VAR( dofs );
401  GEOS_UNUSED_VAR( targetVector );
402  GEOS_UNUSED_VAR( scaleFactor );
403  }
404 
418  template< typename LEAF, localIndex NUMDOFSPERTRIALSUPPORTPOINT >
421  void
422  addEvaluatedGradGradStabilizationVector( typename LEAF::StackVariables const & stack,
423  real64 const ( &dofs )[LEAF::maxSupportPoints]
424  [NUMDOFSPERTRIALSUPPORTPOINT],
425  real64 ( & targetVector )[LEAF::maxSupportPoints]
426  [NUMDOFSPERTRIALSUPPORTPOINT],
427  real64 const scaleFactor = 1.0 ) const
428  {
429  LEAF::template
430  addEvaluatedGradGradStabilization< NUMDOFSPERTRIALSUPPORTPOINT, LEAF::maxSupportPoints >( stack,
431  dofs,
432  targetVector,
433  scaleFactor );
434  }
435 
440 
460  template< int NUM_SUPPORT_POINTS >
462  static
463  void value( real64 const (&N)[NUM_SUPPORT_POINTS],
464  real64 const (&var)[NUM_SUPPORT_POINTS],
465  real64 & value );
466 
472  template< int NUM_SUPPORT_POINTS,
473  int NUM_COMPONENTS >
475  static
476  void value( real64 const (&N)[NUM_SUPPORT_POINTS],
477  real64 const (&var)[NUM_SUPPORT_POINTS][NUM_COMPONENTS],
478  real64 ( &value )[NUM_COMPONENTS] );
479 
481 
486 
505  template< int NUM_SUPPORT_POINTS,
506  typename GRADIENT_TYPE >
508  static void symmetricGradient( GRADIENT_TYPE const & gradN,
509  real64 const (&var)[NUM_SUPPORT_POINTS][3],
510  real64 ( &gradVar )[6] );
511 
524  template< int NUM_SUPPORT_POINTS,
525  typename GRADIENT_TYPE >
527  static real64 symmetricGradientTrace( GRADIENT_TYPE const & gradN,
528  real64 const (&var)[NUM_SUPPORT_POINTS][3] );
529 
546  template< int NUM_SUPPORT_POINTS,
547  typename GRADIENT_TYPE >
549  static void gradient( GRADIENT_TYPE const & gradN,
550  real64 const (&var)[NUM_SUPPORT_POINTS],
551  real64 ( &gradVar )[3] );
552 
563  template< int NUM_SUPPORT_POINTS,
564  typename GRADIENT_TYPE >
566  static void gradient( GRADIENT_TYPE const & gradN,
567  real64 const (&var)[NUM_SUPPORT_POINTS][3],
568  real64 ( &gradVar )[3][3] );
570 
575 
589  template< int NUM_SUPPORT_POINTS,
590  typename GRADIENT_TYPE >
592  static void valueAndGradient( real64 const (&N)[NUM_SUPPORT_POINTS],
593  GRADIENT_TYPE const & gradN,
594  real64 const (&var)[NUM_SUPPORT_POINTS],
595  real64 & value,
596  real64 ( &gradVar )[3] );
597 
599 
607 
628  template< int NUM_SUPPORT_POINTS,
629  typename GRADIENT_TYPE >
631  static void plusGradNajAij( GRADIENT_TYPE const & gradN,
632  real64 const (&var_detJxW)[6],
633  real64 ( &R )[NUM_SUPPORT_POINTS][3] );
634 
640  template< int NUM_SUPPORT_POINTS,
641  typename GRADIENT_TYPE >
643  static void plusGradNajAij( GRADIENT_TYPE const & gradN,
644  real64 const (&var_detJxW)[3][3],
645  real64 ( &R )[NUM_SUPPORT_POINTS][3] );
646 
655  template< int NUM_SUPPORT_POINTS >
657  static void plusNaFi( real64 const (&N)[NUM_SUPPORT_POINTS],
658  real64 const (&forcingTerm_detJxW)[3],
659  real64 ( &R )[NUM_SUPPORT_POINTS][3] );
660 
678  template< int NUM_SUPPORT_POINTS,
679  typename GRADIENT_TYPE >
681  static void plusGradNajAijPlusNaFi( GRADIENT_TYPE const & gradN,
682  real64 const (&var_detJxW)[3][3],
683  real64 const (&N)[NUM_SUPPORT_POINTS],
684  real64 const (&forcingTerm_detJxW)[3],
685  real64 ( &R )[NUM_SUPPORT_POINTS][3] );
686 
692  template< int NUM_SUPPORT_POINTS,
693  typename GRADIENT_TYPE >
695  static void plusGradNajAijPlusNaFi( GRADIENT_TYPE const & gradN,
696  real64 const (&var_detJxW)[6],
697  real64 const (&N)[NUM_SUPPORT_POINTS],
698  real64 const (&forcingTerm_detJxW)[3],
699  real64 ( &R )[NUM_SUPPORT_POINTS][3] );
700 
701 
707  {
708  GEOS_ERROR_IF_NE_MSG( source.size( 1 ),
710  "2nd-dimension of gradN array does not match number of quadrature points" );
711  GEOS_ERROR_IF_NE_MSG( source.size( 2 ),
713  "3rd-dimension of gradN array does not match number of support points" );
714  GEOS_ERROR_IF_NE_MSG( source.size( 3 ),
715  3,
716  "4th-dimension of gradN array does not match 3" );
717 
718  m_viewGradN = source;
719  }
720 
726  {
727  GEOS_ERROR_IF_NE_MSG( source.size( 1 ),
729  "2nd-dimension of gradN array does not match number of quadrature points" );
730  m_viewDetJ = source;
731  }
732 
738  {
739  return m_viewGradN;
740  }
741 
747  {
748  return m_viewDetJ;
749  }
750 
751 
752 protected:
755 
759 };
760 
762 
763 //*************************************************************************************************
764 //***** Definitions *******************************************************************************
765 //*************************************************************************************************
766 
767 template<>
769 {
771  constexpr static PDEUtilities::FunctionSpace getFunctionSpace()
772  {
773  return PDEUtilities::FunctionSpace::H1;
774  }
775 };
776 
777 template<>
778 struct FiniteElementBase::FunctionSpaceHelper< 3 >
779 {
781  constexpr static PDEUtilities::FunctionSpace getFunctionSpace()
782  {
783  return PDEUtilities::FunctionSpace::H1vector;
784  }
785 };
786 
787 template< int N >
789 constexpr PDEUtilities::FunctionSpace FiniteElementBase::getFunctionSpace()
790 {
791  return FunctionSpaceHelper< N >::getFunctionSpace();
792 }
793 
794 template< typename LEAF >
798  localIndex const q,
799  real64 const (&X)[LEAF::maxSupportPoints][3],
800  real64 (& gradN)[LEAF::maxSupportPoints][3] ) const
801 {
802  GEOS_UNUSED_VAR( k );
803  return LEAF::calcGradN( q, X, gradN );
804 }
805 
806 template< typename LEAF >
810  localIndex const q,
811  real64 const (&X)[LEAF::maxSupportPoints][3],
812  typename LEAF::StackVariables const & stack,
813  real64 ( & gradN )[LEAF::maxSupportPoints][3] ) const
814 {
815  GEOS_UNUSED_VAR( k );
816  return LEAF::calcGradN( q, X, stack, gradN );
817 }
818 
819 template< typename LEAF >
823  localIndex const q,
824  int const X,
825  real64 (& gradN)[LEAF::maxSupportPoints][3] ) const
826 {
827  GEOS_UNUSED_VAR( X );
828 
829  LvArray::tensorOps::copy< LEAF::maxSupportPoints, 3 >( gradN, m_viewGradN[ k ][ q ] );
830 
831  return m_viewDetJ( k, q );
832 }
833 
834 template< typename LEAF >
838  localIndex const q,
839  int const X,
840  typename LEAF::StackVariables const & stack,
841  real64 (& gradN)[LEAF::maxSupportPoints][3] ) const
842 {
843  GEOS_UNUSED_VAR( X );
844  GEOS_UNUSED_VAR( stack );
845 
846  LvArray::tensorOps::copy< LEAF::maxSupportPoints, 3 >( gradN, m_viewGradN[ k ][ q ] );
847 
848  return m_viewDetJ( k, q );
849 }
850 
851 //*************************************************************************************************
852 //***** Interpolated Value Functions **************************************************************
853 //*************************************************************************************************
854 
855 template< int NUM_SUPPORT_POINTS >
858 void FiniteElementBase::value( real64 const (&N)[NUM_SUPPORT_POINTS],
859  real64 const (&var)[NUM_SUPPORT_POINTS],
860  real64 & value )
861 {
862  value = LvArray::tensorOps::AiBi< NUM_SUPPORT_POINTS >( N, var );
863 }
864 
865 template< int NUM_SUPPORT_POINTS,
866  int NUM_COMPONENTS >
869 void FiniteElementBase::value( real64 const (&N)[NUM_SUPPORT_POINTS],
870  real64 const (&var)[NUM_SUPPORT_POINTS][NUM_COMPONENTS],
871  real64 (& value)[NUM_COMPONENTS] )
872 {
873 
874  LvArray::tensorOps::Ri_eq_AjiBj< 3, NUM_SUPPORT_POINTS >( value, var, N );
875 }
876 
877 
878 //*************************************************************************************************
879 //***** Variable Gradient Functions ***************************************************************
880 //*************************************************************************************************
881 
882 template< int NUM_SUPPORT_POINTS,
883  typename GRADIENT_TYPE >
886 void FiniteElementBase::symmetricGradient( GRADIENT_TYPE const & gradN,
887  real64 const (&var)[NUM_SUPPORT_POINTS][3],
888  real64 (& gradVar)[6] )
889 {
890  gradVar[0] = gradN[0][0] * var[0][0];
891  gradVar[1] = gradN[0][1] * var[0][1];
892  gradVar[2] = gradN[0][2] * var[0][2];
893  gradVar[3] = gradN[0][2] * var[0][1] + gradN[0][1] * var[0][2];
894  gradVar[4] = gradN[0][2] * var[0][0] + gradN[0][0] * var[0][2];
895  gradVar[5] = gradN[0][1] * var[0][0] + gradN[0][0] * var[0][1];
896 
897  for( int a=1; a<NUM_SUPPORT_POINTS; ++a )
898  {
899  gradVar[0] = gradVar[0] + gradN[a][0] * var[ a ][0];
900  gradVar[1] = gradVar[1] + gradN[a][1] * var[ a ][1];
901  gradVar[2] = gradVar[2] + gradN[a][2] * var[ a ][2];
902  gradVar[3] = gradVar[3] + gradN[a][2] * var[ a ][1] + gradN[a][1] * var[ a ][2];
903  gradVar[4] = gradVar[4] + gradN[a][2] * var[ a ][0] + gradN[a][0] * var[ a ][2];
904  gradVar[5] = gradVar[5] + gradN[a][1] * var[ a ][0] + gradN[a][0] * var[ a ][1];
905  }
906 }
907 
908 template< int NUM_SUPPORT_POINTS,
909  typename GRADIENT_TYPE >
912 real64 FiniteElementBase::symmetricGradientTrace( GRADIENT_TYPE const & gradN,
913  real64 const (&var)[NUM_SUPPORT_POINTS][3] )
914 {
915  real64 result = gradN[0][0] * var[0][0] + gradN[0][1] * var[0][1] + gradN[0][2] * var[0][2];
916 
917  for( int a=1; a<NUM_SUPPORT_POINTS; ++a )
918  {
919  result = result + gradN[a][0] * var[a][0] + gradN[a][1] * var[a][1] + gradN[a][2] * var[a][2];
920  }
921  return result;
922 }
923 
924 template< int NUM_SUPPORT_POINTS,
925  typename GRADIENT_TYPE >
928 void FiniteElementBase::gradient( GRADIENT_TYPE const & gradN,
929  real64 const (&var)[NUM_SUPPORT_POINTS],
930  real64 (& gradVar)[3] )
931 {
932  LvArray::tensorOps::Ri_eq_AjiBj< 3, NUM_SUPPORT_POINTS >( gradVar, gradN, var );
933 }
934 
935 template< int NUM_SUPPORT_POINTS,
936  typename GRADIENT_TYPE >
939 void FiniteElementBase::gradient( GRADIENT_TYPE const & gradN,
940  real64 const (&var)[NUM_SUPPORT_POINTS][3],
941  real64 (& gradVar)[3][3] )
942 {
943  LvArray::tensorOps::Rij_eq_AkiBkj< 3, 3, NUM_SUPPORT_POINTS >( gradVar, var, gradN );
944 }
945 
946 
947 
948 template< int NUM_SUPPORT_POINTS,
949  typename GRADIENT_TYPE >
952 void FiniteElementBase::valueAndGradient( real64 const (&N)[NUM_SUPPORT_POINTS],
953  GRADIENT_TYPE const & gradN,
954  real64 const (&var)[NUM_SUPPORT_POINTS],
955  real64 & value,
956  real64 (& gradVar)[3] )
957 {
958  value = N[0] * var[0];
959  for( int i = 0; i < 3; ++i )
960  {
961  gradVar[i] = var[0] * gradN[0][i];
962  }
963 
964  for( int a=1; a<NUM_SUPPORT_POINTS; ++a )
965  {
966  value = value + N[a] * var[a];
967  for( int i = 0; i < 3; ++i )
968  {
969  gradVar[i] = gradVar[i] + var[ a ] * gradN[a][i];
970  }
971  }
972 }
973 
974 
975 
976 template< int NUM_SUPPORT_POINTS,
977  typename GRADIENT_TYPE >
980 void FiniteElementBase::plusGradNajAij( GRADIENT_TYPE const & gradN,
981  real64 const (&var_detJxW)[6],
982  real64 (& R)[NUM_SUPPORT_POINTS][3] )
983 {
984  for( int a=0; a<NUM_SUPPORT_POINTS; ++a )
985  {
986  R[a][0] = R[a][0] + var_detJxW[0] * gradN[a][0] + var_detJxW[5] * gradN[a][1] + var_detJxW[4] * gradN[a][2];
987  R[a][1] = R[a][1] + var_detJxW[5] * gradN[a][0] + var_detJxW[1] * gradN[a][1] + var_detJxW[3] * gradN[a][2];
988  R[a][2] = R[a][2] + var_detJxW[4] * gradN[a][0] + var_detJxW[3] * gradN[a][1] + var_detJxW[2] * gradN[a][2];
989  }
990 }
991 
992 
993 template< int NUM_SUPPORT_POINTS,
994  typename GRADIENT_TYPE >
997 void FiniteElementBase::plusGradNajAij( GRADIENT_TYPE const & gradN,
998  real64 const (&var_detJxW)[3][3],
999  real64 (& R)[NUM_SUPPORT_POINTS][3] )
1000 {
1001  for( int a=0; a<NUM_SUPPORT_POINTS; ++a )
1002  {
1003  LvArray::tensorOps::Ri_add_AijBj< 3, 3 >( R[a], var_detJxW, gradN[a] );
1004  }
1005 }
1006 
1007 template< int NUM_SUPPORT_POINTS >
1010 void FiniteElementBase::plusNaFi( real64 const (&N)[NUM_SUPPORT_POINTS],
1011  real64 const (&var_detJxW)[3],
1012  real64 ( & R )[NUM_SUPPORT_POINTS][3] )
1013 {
1014  for( int a=0; a<NUM_SUPPORT_POINTS; ++a )
1015  {
1016  LvArray::tensorOps::scaledAdd< 3 >( R[a], var_detJxW, N[a] );
1017  }
1018 }
1019 
1020 
1021 template< int NUM_SUPPORT_POINTS,
1022  typename GRADIENT_TYPE >
1025 void FiniteElementBase::plusGradNajAijPlusNaFi( GRADIENT_TYPE const & gradN,
1026  real64 const (&var_detJxW)[6],
1027  real64 const (&N)[NUM_SUPPORT_POINTS],
1028  real64 const (&forcingTerm_detJxW)[3],
1029  real64 (& R)[NUM_SUPPORT_POINTS][3] )
1030 {
1031  for( int a=0; a<NUM_SUPPORT_POINTS; ++a )
1032  {
1033  R[a][0] = R[a][0] + var_detJxW[0] * gradN[a][0] + var_detJxW[5] * gradN[a][1] + var_detJxW[4] * gradN[a][2] + forcingTerm_detJxW[0] * N[a];
1034  R[a][1] = R[a][1] + var_detJxW[5] * gradN[a][0] + var_detJxW[1] * gradN[a][1] + var_detJxW[3] * gradN[a][2] + forcingTerm_detJxW[1] * N[a];
1035  R[a][2] = R[a][2] + var_detJxW[4] * gradN[a][0] + var_detJxW[3] * gradN[a][1] + var_detJxW[2] * gradN[a][2] + forcingTerm_detJxW[2] * N[a];
1036  }
1037 }
1038 
1039 template< int NUM_SUPPORT_POINTS,
1040  typename GRADIENT_TYPE >
1043 void FiniteElementBase::plusGradNajAijPlusNaFi( GRADIENT_TYPE const & gradN,
1044  real64 const (&var_detJxW)[3][3],
1045  real64 const (&N)[NUM_SUPPORT_POINTS],
1046  real64 const (&forcingTerm_detJxW)[3],
1047  real64 (& R)[NUM_SUPPORT_POINTS][3] )
1048 {
1049  for( int a=0; a<NUM_SUPPORT_POINTS; ++a )
1050  {
1051  R[a][0] = R[a][0] + var_detJxW[0][0] * gradN[a][0] + var_detJxW[0][1] * gradN[a][1] + var_detJxW[0][2] * gradN[a][2] + forcingTerm_detJxW[0] * N[a];
1052  R[a][1] = R[a][1] + var_detJxW[1][0] * gradN[a][0] + var_detJxW[1][1] * gradN[a][1] + var_detJxW[1][2] * gradN[a][2] + forcingTerm_detJxW[1] * N[a];
1053  R[a][2] = R[a][2] + var_detJxW[2][0] * gradN[a][0] + var_detJxW[2][1] * gradN[a][1] + var_detJxW[2][2] * gradN[a][2] + forcingTerm_detJxW[2] * N[a];
1054  }
1055 }
1057 
1058 }
1059 }
1060 
1061 
1063 #define USING_FINITEELEMENTBASE \
1064  using FiniteElementBase::value; \
1065  using FiniteElementBase::symmetricGradient; \
1066  using FiniteElementBase::gradient; \
1067  using FiniteElementBase::valueAndGradient; \
1068  using FiniteElementBase::plusGradNajAij; \
1069  using FiniteElementBase::plusNaFi; \
1070  using FiniteElementBase::plusGradNajAijPlusNaFi;
1071 
1072 #endif //GEOS_FINITEELEMENT_ELEMENTFORMULATIONS_FINITEELEMENTBASE_HPP_
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
#define GEOS_UNUSED_VAR(...)
Mark an unused variable and silence compiler warnings.
Definition: GeosxMacros.hpp:84
#define GEOS_FORCE_INLINE
Marks a function or lambda for inlining.
Definition: GeosxMacros.hpp:51
#define GEOS_ERROR_IF_NE_MSG(lhs, rhs, msg)
Raise a hard error if two values are not equal.
Definition: Logger.hpp:243
This class provides an interface to ObjectManagerBase in order to manage edge data.
Definition: EdgeManager.hpp:43
The FaceManager class provides an interface to ObjectManagerBase in order to manage face data.
Definition: FaceManager.hpp:44
The NodeManager class provides an interface to ObjectManagerBase in order to manage node data.
Definition: NodeManager.hpp:46
Base class for FEM element implementations.
static GEOS_HOST_DEVICE void value(real64 const (&N)[NUM_SUPPORT_POINTS], real64 const (&var)[NUM_SUPPORT_POINTS][NUM_COMPONENTS], real64(&value)[NUM_COMPONENTS])
Compute the interpolated value of a vector variable.
virtual GEOS_HOST_DEVICE localIndex getNumSupportPoints() const =0
Virtual getter for the number of support points per element.
static GEOS_HOST_DEVICE void plusGradNajAijPlusNaFi(GRADIENT_TYPE const &gradN, real64 const (&var_detJxW)[3][3], real64 const (&N)[NUM_SUPPORT_POINTS], real64 const (&forcingTerm_detJxW)[3], real64(&R)[NUM_SUPPORT_POINTS][3])
Inner product of each basis function gradient with a rank-2 symmetric tensor added to the product eac...
virtual GEOS_HOST_DEVICE localIndex getMaxSupportPoints() const =0
Get the maximum number of support points for this element.
static void fillMeshData(NodeManager const &nodeManager, EdgeManager const &edgeManager, FaceManager const &faceManager, SUBREGION_TYPE const &cellSubRegion, MeshData< SUBREGION_TYPE > &meshData)
Method to fill a MeshData object.
arrayView2d< real64 const > getDetJView() const
Getter for m_viewDetJ.
GEOS_HOST_DEVICE static GEOS_FORCE_INLINE void setupStack(localIndex const &cellIndex, MeshData< SUBREGION_TYPE > const &meshData, StackVariables &stack)
Empty setup method.
static GEOS_HOST_DEVICE void plusGradNajAijPlusNaFi(GRADIENT_TYPE const &gradN, real64 const (&var_detJxW)[6], real64 const (&N)[NUM_SUPPORT_POINTS], real64 const (&forcingTerm_detJxW)[3], real64(&R)[NUM_SUPPORT_POINTS][3])
Inner product of each basis function gradient with a rank-2 tensor added to the product each shape fu...
virtual GEOS_HOST_DEVICE ~FiniteElementBase()
Destructor.
static GEOS_HOST_DEVICE void gradient(GRADIENT_TYPE const &gradN, real64 const (&var)[NUM_SUPPORT_POINTS], real64(&gradVar)[3])
Calculate the gradient of a scalar valued support field at a point using the input basis function gra...
static GEOS_HOST_DEVICE void plusGradNajAij(GRADIENT_TYPE const &gradN, real64 const (&var_detJxW)[3][3], real64(&R)[NUM_SUPPORT_POINTS][3])
Inner product of each basis function gradient with a rank-2 symmetric tensor.
FiniteElementBase & operator=(FiniteElementBase const &)=delete
Deleted copy assignment operator.
GEOS_HOST_DEVICE void setup(localIndex const &cellIndex, typename LEAF::template MeshData< SUBREGION_TYPE > const &meshData, typename LEAF::StackVariables &stack) const
Abstract setup method, possibly computing cell-dependent properties.
arrayView4d< real64 const > m_viewGradN
View to potentially hold pre-calculated shape function gradients.
GEOS_HOST_DEVICE FiniteElementBase(FiniteElementBase const &source)
Copy Constructor.
GEOS_HOST_DEVICE static GEOS_FORCE_INLINE void addGradGradStabilization(StackVariables const &stack, real64(&matrix)[MAXSUPPORTPOINTS *NUMDOFSPERTRIALSUPPORTPOINT][MAXSUPPORTPOINTS *NUMDOFSPERTRIALSUPPORTPOINT], real64 const &scaleFactor)
Empty method, here for compatibility with methods that require a stabilization of the grad-grad bilin...
GEOS_HOST_DEVICE real64 getGradN(localIndex const k, localIndex const q, real64 const (&X)[LEAF::maxSupportPoints][3], typename LEAF::StackVariables const &stack, real64(&gradN)[LEAF::maxSupportPoints][3]) const
Get the shape function gradients.
void setDetJView(arrayView2d< real64 const > const &source)
Sets m_viewDetJ equal to an input view.
static GEOS_HOST_DEVICE void plusGradNajAij(GRADIENT_TYPE const &gradN, real64 const (&var_detJxW)[6], real64(&R)[NUM_SUPPORT_POINTS][3])
Inner product of each basis function gradient with a rank-2 symmetric tensor.
FiniteElementBase()=default
Default Constructor.
GEOS_HOST_DEVICE real64 getGradN(localIndex const k, localIndex const q, int const X, real64(&gradN)[LEAF::maxSupportPoints][3]) const
Get the shape function gradients.
GEOS_HOST_DEVICE localIndex numSupportPoints(typename LEAF::StackVariables const &stack) const
Getter for the number of support points per element.
static GEOS_HOST_DEVICE void symmetricGradient(GRADIENT_TYPE const &gradN, real64 const (&var)[NUM_SUPPORT_POINTS][3], real64(&gradVar)[6])
Calculate the symmetric gradient of a vector valued support field at a point using the stored basis f...
virtual GEOS_HOST_DEVICE localIndex getNumQuadraturePoints() const =0
Virtual getter for the number of quadrature points per element.
static void initialize(NodeManager const &nodeManager, EdgeManager const &edgeManager, FaceManager const &faceManager, SUBREGION_TYPE const &cellSubRegion, typename LEAF::template MeshData< SUBREGION_TYPE > &meshData)
Abstract initialization method.
GEOS_HOST_DEVICE static GEOS_FORCE_INLINE void addEvaluatedGradGradStabilization(StackVariables const &stack, real64 const (&dofs)[MAXSUPPORTPOINTS][NUMDOFSPERTRIALSUPPORTPOINT], real64(&targetVector)[MAXSUPPORTPOINTS][NUMDOFSPERTRIALSUPPORTPOINT], real64 const scaleFactor)
Empty method, here for compatibility with methods that require a stabilization of the grad-grad bilin...
FiniteElementBase & operator=(FiniteElementBase &&)=delete
Deleted move assignment operator.
static GEOS_HOST_DEVICE real64 symmetricGradientTrace(GRADIENT_TYPE const &gradN, real64 const (&var)[NUM_SUPPORT_POINTS][3])
Calculate the trace of the symmetric gradient of a vector valued support field (i....
GEOS_HOST_DEVICE void addGradGradStabilizationMatrix(typename LEAF::StackVariables const &stack, real64(&matrix)[LEAF::maxSupportPoints *NUMDOFSPERTRIALSUPPORTPOINT][LEAF::maxSupportPoints *NUMDOFSPERTRIALSUPPORTPOINT], real64 const scaleFactor=1.0) const
Add stabilization of grad-grad bilinear form to input matrix.
static GEOS_HOST_DEVICE void plusNaFi(real64 const (&N)[NUM_SUPPORT_POINTS], real64 const (&forcingTerm_detJxW)[3], real64(&R)[NUM_SUPPORT_POINTS][3])
Product of each shape function with a vector forcing term.
constexpr static GEOS_HOST_DEVICE PDEUtilities::FunctionSpace getFunctionSpace()
Getter for the function space.
GEOS_HOST_DEVICE GEOS_FORCE_INLINE void addEvaluatedGradGradStabilizationVector(typename LEAF::StackVariables const &stack, real64 const (&dofs)[LEAF::maxSupportPoints][NUMDOFSPERTRIALSUPPORTPOINT], real64(&targetVector)[LEAF::maxSupportPoints][NUMDOFSPERTRIALSUPPORTPOINT], real64 const scaleFactor=1.0) const
Add a grad-grad stabilization operator evaluated at a provided vector of dofs to input vector.
GEOS_HOST_DEVICE real64 getGradN(localIndex const k, localIndex const q, real64 const (&X)[LEAF::maxSupportPoints][3], real64(&gradN)[LEAF::maxSupportPoints][3]) const
Get the shape function gradients.
static GEOS_HOST_DEVICE void value(real64 const (&N)[NUM_SUPPORT_POINTS], real64 const (&var)[NUM_SUPPORT_POINTS], real64 &value)
Compute the interpolated value of a variable.
constexpr static int numSamplingPointsPerDirection
Number of sampling points.
arrayView4d< real64 const > getGradNView() const
Getter for m_viewGradN.
FiniteElementBase(FiniteElementBase &&)=default
Default Move constructor.
static GEOS_HOST_DEVICE void gradient(GRADIENT_TYPE const &gradN, real64 const (&var)[NUM_SUPPORT_POINTS][3], real64(&gradVar)[3][3])
Calculate the gradient of a vector valued support field at a point using the input basis function gra...
GEOS_HOST_DEVICE real64 getGradN(localIndex const k, localIndex const q, int const X, typename LEAF::StackVariables const &stack, real64(&gradN)[LEAF::maxSupportPoints][3]) const
Get the shape function gradients.
arrayView2d< real64 const > m_viewDetJ
void setGradNView(arrayView4d< real64 const > const &source)
Sets m_viewGradN equal to an input view.
static GEOS_HOST_DEVICE void valueAndGradient(real64 const (&N)[NUM_SUPPORT_POINTS], GRADIENT_TYPE const &gradN, real64 const (&var)[NUM_SUPPORT_POINTS], real64 &value, real64(&gradVar)[3])
Calculate the value and gradient of a scalar valued support field at a point using the input basis fu...
double real64
64-bit floating point type.
Definition: DataTypes.hpp:99
GEOS_LOCALINDEX_TYPE localIndex
Local index type (for indexing objects within an MPI partition).
Definition: DataTypes.hpp:85
ArrayView< T, 4, USD > arrayView4d
Alias for 4D array view.
Definition: DataTypes.hpp:228
ArrayView< T, 2, USD > arrayView2d
Alias for 2D array view.
Definition: DataTypes.hpp:196
An helper struct to determine the function space.
Variables used to initialize the class.