/usr/include/palabos/latticeBoltzmann/externalFieldAccess.h is in libplb-dev 1.5~r1+repack1-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | /* This file is part of the Palabos library.
*
* Copyright (C) 2011-2015 FlowKit Sarl
* Route d'Oron 2
* 1010 Lausanne, Switzerland
* E-mail contact: contact@flowkit.com
*
* The most recent release of Palabos can be downloaded at
* <http://www.palabos.org/>
*
* The library Palabos is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** \file
* Templates for accessing external fields (and getting a zero value
* if the external field does not exist).
* -- header file
*/
#ifndef EXTERNAL_FIELD_ACCESS_H
#define EXTERNAL_FIELD_ACCESS_H
#include "core/globalDefs.h"
namespace plb {
// The two classes and the function which follow implement a template mechanism
// to compute the force according to the following rule:
// - If there is a force in the external fields (ExternalField::sizeOfForce=d), return it
// - If there is no force in the external fields (ExternalField::sizeOfForce=0), return 0
/// Default implementation of ExternalForceAccess: return force from external scalar.
template<typename T, template<typename U> class Descriptor, plint numForceComponents>
struct ExternalForceAccess {
static T getComponent(Cell<T,Descriptor> const& cell, plint iD) {
PLB_PRECONDITION( Descriptor<T>::d == Descriptor<T>::ExternalField::sizeOfForce );
PLB_PRECONDITION( iD < Descriptor<T>::d);
return *(cell.getExternal(Descriptor<T>::ExternalField::forceBeginsAt+iD));
}
};
template<typename T, template<typename U> class Descriptor, class ExternalField>
struct RhoBarJAccess {
static T getRhoBar(Cell<T,Descriptor> const& cell) {
Dynamics<T,Descriptor> const& dynamics = cell.getDynamics();
return dynamics.computeRhoBar(cell);
}
static void getJ(Cell<T,Descriptor> const& cell, Array<T,Descriptor<T>::d>& j)
{
T rhoBar;
Dynamics<T,Descriptor> const& dynamics = cell.getDynamics();
dynamics.computeRhoBarJ(cell, rhoBar, j);
}
static void getRhoBarJ(Cell<T,Descriptor> const& cell, T& rhoBar, Array<T,Descriptor<T>::d>& j)
{
Dynamics<T,Descriptor> const& dynamics = cell.getDynamics();
dynamics.computeRhoBarJ(cell, rhoBar, j);
}
};
/// Specialization of ExternalForceAccess: return 0 if there is no external force.
template<typename T, template<typename U> class Descriptor>
struct ExternalForceAccess<T,Descriptor,0> {
static T getComponent(Cell<T,Descriptor> const& cell, plint iD) {
return T();
}
};
/// Automatic instantiation of ExternalForceAccess, depending on the Descriptor
template<typename T, template<typename U> class Descriptor>
T getExternalForceComponent(Cell<T,Descriptor> const& cell, plint iD) {
return ExternalForceAccess<T, Descriptor, Descriptor<T>::ExternalField::sizeOfForce>::getComponent(cell,iD);
}
template<typename T, template<typename U> class Descriptor>
struct RhoBarJAccess<T,Descriptor,descriptors::RhoBarJdescriptor3D> {
static void getRhoBar(Cell<T,Descriptor> const& cell) {
return *(cell.getExternal(Descriptor<T>::ExternalField::rhoBarBeginsAt));
}
static void getJ(Cell<T,Descriptor> const& cell, Array<T,3>& j) {
T* externalJ = cell.getExternal(Descriptor<T>::ExternalField::jBeginsAt);
j[0] = externalJ[0];
j[1] = externalJ[1];
j[2] = externalJ[2];
}
static void getRhoBarJ(Cell<T,Descriptor> const& cell, T& rhoBar, Array<T,3>& j)
{
rhoBar = *(cell.getExternal(Descriptor<T>::ExternalField::rhoBarBeginsAt));
T const* externalJ = cell.getExternal(Descriptor<T>::ExternalField::jBeginsAt);
j[0] = externalJ[0];
j[1] = externalJ[1];
j[2] = externalJ[2];
}
};
template<typename T, template<typename U> class Descriptor>
struct RhoBarJAccess<T,Descriptor,descriptors::RhoBarJdescriptor2D> {
static void getRhoBar(Cell<T,Descriptor> const& cell) {
return *(cell.getExternal(Descriptor<T>::ExternalField::rhoBarBeginsAt));
}
static void getJ(Cell<T,Descriptor> const& cell, Array<T,2>& j) {
T* externalJ = cell.getExternal(Descriptor<T>::ExternalField::jBeginsAt);
j[0] = externalJ[0];
j[1] = externalJ[1];
}
static void getRhoBarJ(Cell<T,Descriptor> const& cell, T& rhoBar, Array<T,2>& j)
{
rhoBar = *(cell.getExternal(Descriptor<T>::ExternalField::rhoBarBeginsAt));
T* externalJ = cell.getExternal(Descriptor<T>::ExternalField::jBeginsAt);
j[0] = externalJ[0];
j[1] = externalJ[1];
}
};
template<typename T, template<typename U> class Descriptor>
T getRhoBar(Cell<T,Descriptor> const& cell) {
return RhoBarJAccess<T, Descriptor, typename Descriptor<T>::ExternalField>::getRhoBar(cell);
}
template<typename T, template<typename U> class Descriptor>
void getJ(Cell<T,Descriptor> const& cell, Array<T,Descriptor<T>::d>& j) {
RhoBarJAccess<T, Descriptor, typename Descriptor<T>::ExternalField>::getJ(cell, j);
}
template<typename T, template<typename U> class Descriptor>
void getRhoBarJ(Cell<T,Descriptor> const& cell, T& rhoBar, Array<T,Descriptor<T>::d>& j) {
RhoBarJAccess<T, Descriptor, typename Descriptor<T>::ExternalField>::getRhoBarJ(cell, rhoBar, j);
}
} // namespace plb
#endif // EXTERNAL_FIELD_ACCESS_H
|