/usr/include/palabos/boundaryCondition/boundaryCondition3D.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 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | /* 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 A helper for initialising 3D boundaries -- header file. */
#ifndef BOUNDARY_CONDITION_3D_H
#define BOUNDARY_CONDITION_3D_H
#include "core/globalDefs.h"
#include "boundaryCondition/boundaryCondition.h"
#include "boundaryCondition/finiteDifferenceBoundaryProcessor3D.h"
#include "core/dynamics.h"
namespace plb {
template<typename T, template<typename U> class Descriptor> class BlockLattice3D;
template<typename T, template<typename U> class Descriptor> class MultiBlockLattice3D;
template<typename T, template<typename U> class Descriptor>
class OnLatticeBoundaryCondition3D {
public:
virtual ~OnLatticeBoundaryCondition3D() { }
virtual OnLatticeBoundaryCondition3D<T,Descriptor>* clone() const =0;
// PART I: Atomic-block version.
virtual void addVelocityBoundary0N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary0P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary1N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary1P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary2N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary2P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary0N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary0P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary1N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary1P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary2N (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary2P (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2NN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2NP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2PN (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2PP (
Box3D domain, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNNN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNNP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNPN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNPP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPNN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPNP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPPN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPPP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNNN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNNP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNPN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNPP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPNN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPNP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPPN (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPPP (
plint x, plint y, plint z, BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
/// Set velocity/Neumann condition on outer boundaries of the lattice.
void setVelocityConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet );
/// Set velocity/Neumann condition on a sub-domain, on the outer boundaries of
/// the lattice.
/** Attention: this function only has an effect when it is used on the outer surface
* of the atomic-block. For boundaries inside the domain, use
* the method which takes two Box3D arguments.
**/
void setVelocityConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set velocity/Neumann condition on the block boundaries, but only on places which
/// intersect with the area of applicationDomain.
void setVelocityConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
Box3D block, Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on outer boundaries of the lattice.
void setPressureConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on a sub-domain, on the outer boundaries of
/// the lattice.
/** Attention: this function only has an effect when it is used on the outer surface
* of the atomic-block. For boundaries inside the domain, use
* the method which takes two Box3D arguments.
**/
void setPressureConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on the block boundaries, but only on places which
/// intersect with the area of applicationDomain.
void setPressureConditionOnBlockBoundaries( BlockLattice3D<T,Descriptor>& lattice,
Box3D block, Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
// PART II: Multi-block version.
virtual void addVelocityBoundary0N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary0P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary1N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary1P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary2N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addVelocityBoundary2P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary0N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary0P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary1N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary1P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary2N (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addPressureBoundary2P (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge0PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge1PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityEdge2PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge0PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge1PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2NN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2NP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2PN (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityEdge2PP (
Box3D domain, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNNN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNNP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNPN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerNPP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPNN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPNP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPPN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addExternalVelocityCornerPPP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNNN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNNP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNPN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerNPP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPNN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPNP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPPN (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
virtual void addInternalVelocityCornerPPP (
plint x, plint y, plint z, MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet ) =0;
/// Set velocity/Neumann condition on outer boundaries of the lattice.
void setVelocityConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet );
/// Set velocity/Neumann condition on a sub-domain, on the outer boundaries of
/// the lattice.
/** Attention: this function only has an effect when it is used on the outer surface
* of the atomic-block. For boundaries inside the domain, use
* the method which takes two Box3D arguments.
**/
void setVelocityConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set velocity/Neumann condition on the block boundaries, but only on places which
/// intersect with the area of applicationDomain.
void setVelocityConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
Box3D block, Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on outer boundaries of the lattice.
void setPressureConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on a sub-domain, on the outer boundaries of
/// the lattice.
/** Attention: this function only has an effect when it is used on the outer surface
* of the atomic-block. For boundaries inside the domain, use
* the method which takes two Box3D arguments.
**/
void setPressureConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
/// Set Pressure condition on the block boundaries, but only on places which
/// intersect with the area of applicationDomain.
void setPressureConditionOnBlockBoundaries( MultiBlockLattice3D<T,Descriptor>& lattice,
Box3D block, Box3D applicationDomain,
boundary::BcType bcType=boundary::dirichlet );
};
////////// Factory functions //////////////////////////////////////////////////
/// Generate the regularized boundary condition, managed by data processors.
template<typename T, template<typename U> class Descriptor>
OnLatticeBoundaryCondition3D<T,Descriptor>* createLocalBoundaryCondition3D();
/// Generate the regularized boundary condition, managed by dynamics only.
template<typename T, template<typename U> class Descriptor>
OnLatticeBoundaryCondition3D<T,Descriptor>* createDynamicsBasedLocalBoundaryCondition3D();
/// Generate a boundary condition which imposes equilibrium, but computes density properly.
template<typename T, template<typename U> class Descriptor>
OnLatticeBoundaryCondition3D<T,Descriptor>* createEquilibriumBoundaryCondition3D();
/// Generate Skordos boundary condition.
template<typename T, template<typename U> class Descriptor>
OnLatticeBoundaryCondition3D<T,Descriptor>* createInterpBoundaryCondition3D();
} // namespace plb
#endif // BOUNDARY_CONDITION_3D_H
|