GEOS
TractionBoundaryCondition.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 
21 #ifndef GEOS_FIELDSPECIFICATION_TRACTIONBOUNDARYCONDITION_HPP
22 #define GEOS_FIELDSPECIFICATION_TRACTIONBOUNDARYCONDITION_HPP
23 
25 #include "mesh/FaceManager.hpp"
26 
27 namespace geos
28 {
29 
30 class TableFunction;
31 
37 {
38 public:
40  TractionBoundaryCondition( string const & name, Group * parent );
41 
44 
46  virtual ~TractionBoundaryCondition() = default;
47 
50 
53 
56 
59 
60 
65  static string catalogName() { return "Traction"; }
66 
67 
77  void launch( real64 const time,
78  arrayView1d< globalIndex const > const blockLocalDofNumber,
79  globalIndex const dofRankOffset,
80  FaceManager const & faceManager,
81  SortedArrayView< localIndex const > const & targetSet,
82  arrayView1d< real64 > const & localRhs ) const;
83 
91  void reinitScaleSet( FaceManager const & faceManager,
92  SortedArrayView< localIndex const > const & targetSet,
93  arrayView1d< real64 const > const nodalScaleSet );
94 
99  {
101  constexpr static char const * tractionTypeString() { return "tractionType"; }
102 
104  constexpr static char const * inputStressString() { return "inputStress"; }
105 
106 // /// @return The key for the function describing the components of stress.
107 // constexpr static char const * stressFunctionString() { return "stressFunctions"; }
108 
110  constexpr static char const * scaleSetString() { return "scaleSet"; }
111 
113  constexpr static char const * nodalScaleFlagString() { return "nodalScaleFlag"; }
114 
115  };
116 
120  enum class TractionType : integer
121  {
122  vector,
123  normal,
124  stress
125  };
126 
127 protected:
128 
129  virtual void postInputInitialization() override final;
130 
131  virtual void initializePreSubGroups() override final;
132 
135 
138 
141 
144 
145 // /// names of the functions used to specify stress for the generation of tractions.
146 // string_array m_stressFunctionNames;
147 //
148 // bool m_useStressFunctions;
149 //
150 // TableFunction const * m_stressFunctions[6]; // if this line is re-enabled, ensure that those pointers are initialized
151 
152 };
153 
156  "vector",
157  "normal",
158  "stress" );
159 
160 } /* namespace geos */
161 
162 #endif /* GEOS_FIELDSPECIFICATION_TRACTIONBOUNDARYCONDITION_HPP */
The FaceManager class provides an interface to ObjectManagerBase in order to manage face data.
Definition: FaceManager.hpp:44
void reinitScaleSet(FaceManager const &faceManager, SortedArrayView< localIndex const > const &targetSet, arrayView1d< real64 const > const nodalScaleSet)
Reinitialize the nodal set of scaling variable on traction magnitude. One use is to reduce the nodal ...
integer m_nodalScaleFlag
The flag for applying the nodal scale.
virtual ~TractionBoundaryCondition()=default
default destructor
TractionBoundaryCondition & operator=(TractionBoundaryCondition const &)=delete
deleted copy assignment operator
array1d< real64 > m_scaleSet
Array of scale values.
TractionBoundaryCondition()=delete
deleted default constructor
TractionBoundaryCondition(TractionBoundaryCondition const &)=delete
deleted copy constructor
TractionBoundaryCondition & operator=(TractionBoundaryCondition &&)=delete
deleted move assignment operator
TractionBoundaryCondition(string const &name, Group *parent)
constructor
TractionType
Type of traction boundary condition.
@ vector
traction is applied to the faces as specified from the scale and direction
@ stress
traction is applied to the faces as specified by the inner product of input stress and face normal
@ normal
traction is applied to the faces as a pressure specified from the product of scale and the outward fa...
static string catalogName()
Static Factory Catalog Functions.
R2SymTensor m_inputStress
single specified value for stress used to generate the traction if m_tractionType == stress.
virtual void postInputInitialization() override final
TractionType m_tractionType
The type of traction to be applied, i.e. how to generate the traction.
void launch(real64 const time, arrayView1d< globalIndex const > const blockLocalDofNumber, globalIndex const dofRankOffset, FaceManager const &faceManager, SortedArrayView< localIndex const > const &targetSet, arrayView1d< real64 > const &localRhs) const
Setup and Launche of the traction BC kernel.
virtual void initializePreSubGroups() override final
Called by Initialize() prior to initializing sub-Groups.
TractionBoundaryCondition(TractionBoundaryCondition &&)=default
defaulted move constructor
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
Definition: DataTypes.hpp:180
GEOS_GLOBALINDEX_TYPE globalIndex
Global index type (for indexing objects across MPI partitions).
Definition: DataTypes.hpp:88
ENUM_STRINGS(LinearSolverParameters::SolverType, "direct", "cg", "gmres", "fgmres", "bicgstab", "preconditioner")
Declare strings associated with enumeration values.
double real64
64-bit floating point type.
Definition: DataTypes.hpp:99
std::int32_t integer
Signed integer type.
Definition: DataTypes.hpp:82
LvArray::SortedArrayView< T, localIndex, LvArray::ChaiBuffer > SortedArrayView
A sorted array view of local indices.
Definition: DataTypes.hpp:271
Array< T, 1 > array1d
Alias for 1D array.
Definition: DataTypes.hpp:176