This file is indexed.

/usr/include/palabos/latticeBoltzmann/externalFields.h is in libplb-dev 1.5~r1+repack1-3.

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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/* 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
 * Definition of external fields for a lattice descriptor -- header file
 */
#ifndef EXTERNAL_FIELDS_H
#define EXTERNAL_FIELDS_H

#include "core/globalDefs.h"

namespace plb {

namespace descriptors {

struct NoExternalField {
    static const int numScalars = 0;
    static const int numSpecies = 0;
    static const int forceBeginsAt = 0;
    static const int sizeOfForce   = 0;
};

struct NoExternalFieldBase {
    typedef NoExternalField ExternalField;
};

struct Force2dDescriptor {
    static const int numScalars = 2;
    static const int numSpecies = 1;
    static const int forceBeginsAt = 0;
    static const int sizeOfForce   = 2;
};

struct Force2dDescriptorBase {
    typedef Force2dDescriptor ExternalField;
};

struct Velocity2dDescriptor {
    static const int numScalars = 2;
    static const int numSpecies = 1;
    static const int velocityBeginsAt = 0;
    static const int sizeOfVelocity   = 2;
    static const int sizeOfForce    = 0;
};

struct Velocity2dDescriptorBase {
    typedef Velocity2dDescriptor ExternalField;
};



struct VelocityAndScalar2dDescriptor {
    static const int numScalars = 3;
    static const int numSpecies = 2;
    static const int velocityBeginsAt = 0;
    static const int sizeOfVelocity   = 2;
    static const int scalarBeginsAt   = 2;
    static const int sizeOfScalar     = 1;
    static const int sizeOfForce      = 0;
};

struct VelocityAndScalar2dBase {
    typedef VelocityAndScalar2dDescriptor ExternalField;
};



struct RhoBarJdescriptor2D {
    static const int numScalars     = 3;
    static const int numSpecies     = 2;
    static const int rhoBarBeginsAt = 0;
    static const int sizeOfRhoBar   = 1;
    static const int jBeginsAt      = 1;
    static const int sizeOfJ        = 2;
    static const int sizeOfForce    = 0;
};

struct RhoBarJdescriptorBase2D {
    typedef RhoBarJdescriptor2D ExternalField;
};

struct RhoBarJPiNeqOmegaDescriptor2D {
    static const int numScalars       = 7;
    static const int numSpecies       = 4;
    static const int rhoBarBeginsAt   = 0;
    static const int sizeOfRhoBar     = 1;
    static const int velocityBeginsAt = 1; // j is stored here
    static const int sizeOfVelocity   = 2;
    static const int piNeqBeginsAt    = 3;
    static const int sizeOfPiNeq      = 3;
    static const int omegaBeginsAt    = 6;
    static const int sizeOfOmega      = 1;
    static const int sizeOfForce      = 0;
};

struct RhoBarJPiNeqOmegaDescriptorBase2D {
    typedef RhoBarJPiNeqOmegaDescriptor2D ExternalField;
};


struct ForcedRhoBarJdescriptor2D {
    static const int numScalars     = 5;
    static const int numSpecies     = 3;
    static const int rhoBarBeginsAt = 0;
    static const int sizeOfRhoBar   = 1;
    static const int jBeginsAt      = 1;
    static const int sizeOfJ        = 2;
    static const int forceBeginsAt  = 3;
    static const int sizeOfForce    = 2;
};

struct ForcedRhoBarJdescriptorBase2D {
    typedef ForcedRhoBarJdescriptor2D ExternalField;
};

struct AbsorbingWaveDescriptor2D {
    static const int numScalars             = 5;
    static const int numSpecies             = 4;
    static const int sigmaBeginsAt          = 0;
    static const int sizeOfSigma            = 1;
    static const int invDenominatorBeginsAt = 1;
    static const int sizeOfInvDenominator   = 1;
    static const int rhoBarBeginsAt         = 2;
    static const int sizeOfRhoBar           = 1;
    static const int uBeginsAt              = 3; 
    static const int sizeOfU                = 2;
    static const int sizeOfForce            = 0;
};

struct AbsorbingWaveExternalField2dBase {
    typedef AbsorbingWaveDescriptor2D ExternalField;
};

struct Force3dDescriptor {
    static const int numScalars = 3;
    static const int numSpecies = 1;
    static const int forceBeginsAt = 0;
    static const int sizeOfForce   = 3;
};

struct Force3dDescriptorBase {
    typedef Force3dDescriptor ExternalField;
};

struct RhoBarJdescriptor3D {
    static const int numScalars     = 4;
    static const int numSpecies     = 2;
    static const int rhoBarBeginsAt = 0;
    static const int sizeOfRhoBar   = 1;
    static const int jBeginsAt      = 1;
    static const int sizeOfJ        = 3;
    static const int sizeOfForce    = 0;
};

struct RhoBarJdescriptorBase3D {
    typedef RhoBarJdescriptor3D ExternalField;
};


struct ForcedRhoBarJdescriptor3D {
    static const int numScalars     = 7;
    static const int numSpecies     = 3;
    static const int rhoBarBeginsAt = 0;
    static const int sizeOfRhoBar   = 1;
    static const int jBeginsAt      = 1;
    static const int sizeOfJ        = 3;
    static const int forceBeginsAt  = 4;
    static const int sizeOfForce    = 3;
};

struct ForcedRhoBarJdescriptorBase3D {
    typedef ForcedRhoBarJdescriptor3D ExternalField;
};


struct Velocity3dDescriptor {
    static const int numScalars = 3;
    static const int numSpecies = 1;
    static const int velocityBeginsAt = 0;
    static const int sizeOfVelocity   = 3;
    static const int sizeOfForce    = 0;
};

struct Velocity3dBase {
    typedef Velocity3dDescriptor ExternalField;
};

struct VelocityAndScalar3dDescriptor {
    static const int numScalars = 4;
    static const int numSpecies = 2;
    static const int velocityBeginsAt = 0;
    static const int sizeOfVelocity   = 3;
    static const int scalarBeginsAt   = 3;
    static const int sizeOfScalar     = 1;
    static const int sizeOfForce      = 0;
};

struct SymTensor3dDescriptor {
    static const int numScalars = 6;
    static const int numSpecies = 1;
    static const int tensorBeginsAt = 0;
    static const int sizeOfTensor   = 6;
    static const int sizeOfForce    = 0;
};

struct SymTensor3dBase {
    typedef SymTensor3dDescriptor ExternalField;
};

struct VelocityAndScalar3dBase {
    typedef VelocityAndScalar3dDescriptor ExternalField;
};

struct AbsorbingWaveDescriptor3D {
    static const int numScalars             = 6;
    static const int numSpecies             = 4;
    static const int sigmaBeginsAt          = 0;
    static const int sizeOfSigma            = 1;
    static const int invDenominatorBeginsAt = 1;
    static const int sizeOfInvDenominator   = 1;
    static const int rhoBarBeginsAt         = 2;
    static const int sizeOfRhoBar           = 1;
    static const int uBeginsAt              = 3; 
    static const int sizeOfU                = 3;
    static const int sizeOfForce            = 0;
};

struct AbsorbingWaveExternalField3dBase {
    typedef AbsorbingWaveDescriptor3D ExternalField;
};

}  // namespace descriptors

}  // namespace plb

#endif