GEOS
MobilityKernel.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 #ifndef GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_MOBILITYKERNEL_HPP
21 #define GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_MOBILITYKERNEL_HPP
22 
23 #include "common/DataTypes.hpp"
24 #include "common/GEOS_RAJA_Interface.hpp"
25 #include "constitutive/fluid/singlefluid/SingleFluidLayouts.hpp"
26 
27 namespace geos
28 {
29 
30 namespace singlePhaseBaseKernels
31 {
32 
33 /******************************** MobilityKernel ********************************/
34 
36 {
37 
38 // Value-only (no derivatives) version
40  inline
41  static void
42  compute( real64 const & dens,
43  real64 const & visc,
44  real64 & mob )
45  {
46  mob = dens / visc;
47  }
48 
49 // derivatives-only version
51  inline
52  static void
53  compute_derivative( real64 const & mobility,
54  real64 const & dDensity,
55  real64 const & viscosity,
56  real64 const & dViscosity,
57  real64 & dMobility )
58  {
59  dMobility = dDensity/viscosity - mobility/viscosity*dViscosity;
60  }
61 
62  // Computes mobility and derivtives
63  template< typename POLICY, integer NUMDOF >
64  static void compute_value_and_derivatives( localIndex const size,
69  arrayView1d< real64 > const & mobility,
71  {
72  forAll< POLICY >( size, [=] GEOS_HOST_DEVICE ( localIndex const a )
73  {
74  compute( density[a][0], viscosity[a][0], mobility[a] );
75  for( int i=0; i<NUMDOF; i++ )
76  {
77  compute_derivative( mobility[a], dDensity[a][0][i], viscosity[a][0], dViscosity[a][0][i], dMobility[a][i] );
78  }
79 
80  } );
81  }
82 
83  // Value-only (no derivatives) version
84  template< typename POLICY >
85  static void launch( localIndex const size,
88  arrayView1d< real64 > const & mob )
89  {
90  forAll< POLICY >( size, [=] GEOS_HOST_DEVICE ( localIndex const a )
91  {
92  compute( dens[a][0],
93  visc[a][0],
94  mob[a] );
95  } );
96  }
97 };
98 
99 } // namespace singlePhaseBaseKernels
100 
101 } // namespace geos
102 
103 #endif //GEOS_PHYSICSSOLVERS_FLUIDFLOW_SINGLEPHASE_MOBILITYKERNEL_HPP
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
ArrayView< T, 1 > arrayView1d
Alias for 1D array view.
Definition: DataTypes.hpp:180
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, 2, USD > arrayView2d
Alias for 2D array view.
Definition: DataTypes.hpp:196
ArrayView< T, 3, USD > arrayView3d
Alias for 3D array view.
Definition: DataTypes.hpp:212