From 94d3e79a8617f88dc0219cfdeedfa3147833719d Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Mon, 24 Jun 2019 14:43:36 +0200 Subject: Initialize at openlb-1-3 --- src/dynamics/porousAdvectionDiffusionDynamics.hh | 117 +++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 src/dynamics/porousAdvectionDiffusionDynamics.hh (limited to 'src/dynamics/porousAdvectionDiffusionDynamics.hh') diff --git a/src/dynamics/porousAdvectionDiffusionDynamics.hh b/src/dynamics/porousAdvectionDiffusionDynamics.hh new file mode 100644 index 0000000..fab977b --- /dev/null +++ b/src/dynamics/porousAdvectionDiffusionDynamics.hh @@ -0,0 +1,117 @@ +/* This file is part of the OpenLB library + * + * Copyright (C) 2008 Orestis Malaspinas, Andrea Parmigiani + * E-mail contact: info@openlb.net + * The most recent release of OpenLB can be downloaded at + * + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the Free + * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. +*/ + +/** \file + * A collection of dynamics classes (e.g. BGK) with which a Cell object + * can be instantiated -- generic implementation. + */ +#ifndef POROUS_ADVECTION_DIFFUSION_DYNAMICS_HH +#define POROUS_ADVECTION_DIFFUSION_DYNAMICS_HH + +#include +#include + +#include "porousAdvectionDiffusionDynamics.h" +#include "core/util.h" +#include "lbHelpers.h" + +namespace olb { + + +//==================================================================// +//========== BGK Model for porous Advection diffusion=======// +//==================================================================// + +template +PorousAdvectionDiffusionBGKdynamics::PorousAdvectionDiffusionBGKdynamics ( + T omega, Momenta& momenta, T tSolid ) + : BasicDynamics( momenta ), + _omega(omega), _tSolid(tSolid) +{ } + +template +PorousAdvectionDiffusionBGKdynamics::PorousAdvectionDiffusionBGKdynamics ( + const UnitConverter& converter, Momenta& momenta, T tSolid ) + : BasicDynamics( momenta ), + _omega(converter.getLatticeRelaxationFrequency()), _tSolid(tSolid) +{ } + +template +T PorousAdvectionDiffusionBGKdynamics::computeEquilibrium( int iPop, T rho, + const T u[DESCRIPTOR::d], T uSqr ) const +{ + // does temperature need to be considered here? + return lbHelpers::equilibriumFirstOrder( iPop, rho, u ); +} + + +template +void PorousAdvectionDiffusionBGKdynamics::collide( Cell& cell, + LatticeStatistics& statistics ) +{ + T temperature = this->_momenta.computeRho( cell ); + + // apply temperature scaling + T* porosity = cell.template getFieldPointer(); + temperature = scaleTemp(temperature, porosity[0]); + + const T* u = cell.template getFieldPointer(); + + T uSqr = lbHelpers:: + bgkCollision( cell, temperature, u, _omega ); + + statistics.incrementStats( temperature, uSqr ); +} + +template +T PorousAdvectionDiffusionBGKdynamics::getOmega() const +{ + return _omega; +} + +template +void PorousAdvectionDiffusionBGKdynamics::setOmega( T omega ) +{ + _omega = omega; +} + +template +T PorousAdvectionDiffusionBGKdynamics::computeRho(const Cell& cell) const +{ + //T rho = this->_momenta.computeRho(cell); + //const T* porosity = cell.template getFieldPointer(); + //return scaleTemp(rho, porosity[0]); + return this->_momenta.computeRho(cell); +} + +template +T PorousAdvectionDiffusionBGKdynamics::scaleTemp(const T temp, const T porosity) const +{ + T rho = porosity * temp + ( T(1) - porosity ) * _tSolid; + return rho; +} + + +} // namespace olb + +#endif -- cgit v1.2.3