ASL  0.1.7
Advanced Simulation Library
multiphase_flow.cc

Example: Multiphase flow not finished yet!!!!!

/*
* Advanced Simulation Library <http://asl.org.il>
*
* Copyright 2015 Avtech Scientific <http://avtechscientific.com>
*
*
* This file is part of Advanced Simulation Library (ASL).
*
* ASL 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, version 3 of the License.
*
* ASL 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 ASL. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <aslGeomInc.h>
#include <aslDataInc.h>
#include <num/aslLBGK.h>
#include <num/aslLBGKBC.h>
#include <num/aslBasicBC.h>
typedef float FlT;
//typedef double FlT;
using asl::AVec;
{
private:
void init();
public:
void load(int argc, char * argv[]);
string getDir();
};
appParamsManager("multiphase_flow", "0.1"),
size(3),
dx(0.002, "dx", "space step"),
dt(1., "dt", "time step"),
tSimulation(2e-3, "simulation_time", "simulation time"),
tOutput(1e-4, "output_interval", "output interval"),
nu(4e-8, "nu", "viscosity"),
tubeL(0.5, "tubeL", "tube's length"),
tubeD(0.05, "tubeD", "tube's diameter"),
pumpL(0.025, "pumpL", "pump's length"),
pumpD(0.03, "pumpD", "pump's diameter"),
oilInVel(0.02, "oil_in_velocity", "flow velocity in the oil input"),
waterInVel(0.04, "water_in_velocity", "flow velocity in the water input"),
gasInVel(0.03, "gas_in_velocity", "flow velocity in the gas input")
{
}
void Parameters::load(int argc, char * argv[])
{
appParamsManager.load(argc, argv);
init();
}
{
}
{
nuNum = nu.v() * dt.v() / dx.v() / dx.v();
size[0] = tubeD.v() / dx.v() + 1;
size[1] = (tubeD.v() + 2 * pumpL.v()) / dx.v() + 1;
size[2] = tubeL.v() / dx.v() + 1;
}
void Parameters::init()
{
if (tubeD.v() < pumpD.v())
asl::errorMessage("Tube's diameter is smaller than pump's diameter");
}
// generate geometry of the mixer
{
asl::SPDistanceFunction mixerGeometry;
asl::AVec<double> orientation(asl::makeAVec(0., 0., 1.));
asl::AVec<double> center(asl::AVec<double>(params.size)*.5*params.dx.v());
mixerGeometry = generateDFCylinderInf(params.tubeD.v() / 2., orientation, center);
orientation[1] = 1.0;
orientation[2] = 0.0;
center[2]=params.pumpD.v() * 1.5;
mixerGeometry = mixerGeometry | generateDFCylinderInf(params.pumpD.v() / 2., orientation, center);
return asl::normalize(-(mixerGeometry) | asl::generateDFInBlock(block, 0), params.dx.v());
}
int main(int argc, char *argv[])
{
Parameters params;
params.load(argc, argv);
std::cout << "Data initialization...";
asl::Block block(params.size, params.dx.v());
auto mpfMapMem(asl::generateDataContainerACL_SP<FlT>(block, 1, 1u));
asl::initData(mpfMapMem, generateMixer(block, params));
auto waterFrac(asl::generateDataContainerACL_SP<FlT>(block, 1, 1u));
asl::initData(waterFrac, 0);
std::cout << "Finished" << endl;
std::cout << "Numerics initialization...";
auto templ(&asl::d3q15());
asl::SPLBGK lbgk(new asl::LBGK(block,
templ));
lbgk->init();
lbgkUtil->initF(acl::generateVEConstant(.0, .0, .0));
auto flowVel(lbgk->getVelocity());
auto nmWater(asl::generateFDMultiPhase(waterFrac, flowVel, templ, true));
nmWater->init();
std::vector<asl::SPNumMethod> bc;
std::vector<asl::SPNumMethod> bcV;
std::vector<asl::SPNumMethod> bcDif;
bc.push_back(generateBCNoSlip(lbgk, mpfMapMem));
bc.push_back(generateBCConstantPressure(lbgk,1.,{asl::ZE}));
bc.push_back(generateBCConstantPressureVelocity(lbgk, 1.,
makeAVec(0.,0.,params.oilInVel.v()),
{asl::Z0}));
bc.push_back(generateBCConstantPressureVelocity(lbgk, 1.,
makeAVec(0.,-params.waterInVel.v(),0.),
{asl::YE}));
bcDif.push_back(generateBCNoSlipVel(lbgk, mpfMapMem));
bc.push_back(generateBCConstantGradient(waterFrac, 0., mpfMapMem, templ));
bc.push_back(generateBCConstantValue(waterFrac, 1., {asl::Y0, asl::YE}));
bc.push_back(generateBCConstantValue(waterFrac, 0., {asl::Z0, asl::ZE}));
initAll(bc);
initAll(bcDif);
initAll(bcV);
std::cout << "Finished" << endl;
std::cout << "Computing..." << endl;
asl::Timer timer;
asl::WriterVTKXML writer(params.getDir() + "multiphase_flow");
writer.addScalars("map", *mpfMapMem);
writer.addScalars("water", *waterFrac);
writer.addScalars("rho", *lbgk->getRho());
writer.addVector("v", *flowVel);
executeAll(bcDif);
executeAll(bcV);
writer.write();
timer.start();
for (unsigned int i(1); i < 2001; ++i)
{
lbgk->execute();
executeAll(bcDif);
nmWater->execute();
if (!(i%200))
{
timer.stop();
cout << i << "/2000; time left (estimated): " << timer.estimatedRemainder(double(i)/2000.) << endl;
executeAll(bcV);
writer.write();
timer.start();
}
}
timer.stop();
cout << "Finished" << endl;
cout << "Computation statistic:" << endl;
cout << "Real Time = " << timer.realTime() << "; Processor Time = "
<< timer.processorTime() << "; Processor Load = "
<< timer.processorLoad() * 100 << "%" << endl;
return 0;
}
asl::generateDFInBlock
SPDistanceFunction generateDFInBlock(const Block &b, unsigned int nG)
generates map corresponding to external (ghost) part of the block
aslFDMultiPhase.h
asl::generateDFCylinderInf
SPDistanceFunction generateDFCylinderInf(double r, const AVec< double > &l, const AVec< double > &c)
generates infinite cylinder
aslBasicBC.h
asl::Timer::processorLoad
const double processorLoad() const
Definition: aslTimer.h:47
asl::generateFDMultiPhase
SPFDMultiPhase generateFDMultiPhase(SPDataWithGhostNodesACLData c, SPAbstractDataWithGhostNodes v, const VectorTemplate *vt, bool compressibilityCorrection=false)
asl::generateBCConstantValue
SPBCond generateBCConstantValue(SPAbstractDataWithGhostNodes d, double v, const std::vector< SlicesNames > &sl)
Bondary condition that puts fixed value in each point.
asl::Timer::stop
void stop()
Definition: aslTimer.h:44
asl::ZE
Definition: aslBCond.h:309
asl::LBGK
Numerical method for fluid flow.
Definition: aslLBGK.h:77
Parameters::appParamsManager
asl::ApplicationParametersManager appParamsManager
Definition: acousticWaves.cc:49
asl::WriterVTKXML
Definition: aslVTKFormatWriters.h:41
Parameters::size
asl::Block::DV size
Definition: acousticWaves.cc:51
asl::makeAVec
AVec< T > makeAVec(T a1)
Definition: aslVectorsDynamicLength.h:176
asl::generateBCNoSlipVel
SPNumMethod generateBCNoSlipVel(SPLBGK nmU, SPAbstractDataWithGhostNodes map)
aclGenerators.h
Parameters::waterInVel
asl::Parameter< double > waterInVel
Definition: multiphase_flow.cc:75
asl::Y0
Definition: aslBCond.h:309
asl::Timer::start
void start()
Definition: aslTimer.h:43
aslLBGK.h
asl::Timer
Definition: aslTimer.h:34
Parameters::Parameters
Parameters()
Definition: acousticWaves.cc:78
asl::d3q15
const VectorTemplate & d3q15()
Vector template.
asl::AVec::makeAVec
AVec< T > makeAVec(T a1)
Definition: aslVectorsDynamicLength.h:176
asl::generateBCConstantPressureVelocity
SPBCond generateBCConstantPressureVelocity(SPLBGK nm, double p, AVec<> v, const std::vector< SlicesNames > &sl)
Parameters::dt
asl::UValue< double > dt
Definition: acousticWaves.cc:68
Parameters::pumpD
asl::Parameter< double > pumpD
Definition: multicomponent_flow.cc:69
Param
asl::UValue< double > Param
Definition: multiphase_flow.cc:45
asl::dx
acl::VectorOfElements dx(const TemplateVE &a)
differential operator
asl::ApplicationParametersManager::load
void load(int argc, char *argv[])
Parameters::getDir
string getDir()
Definition: multiphase_flow.cc:113
asl::SPLBGKUtilities
std::shared_ptr< LBGKUtilities > SPLBGKUtilities
Definition: aslLBGK.h:161
asl::Parameter< double >
asl::ParametersManager::getDir
std::string getDir()
asl::Timer::estimatedRemainder
const double estimatedRemainder(double completeness)
Returns estimated time till finishing current task based on its current completeness [0....
Definition: aslTimer.h:52
asl::UValue< double >
asl::Writer::addScalars
void addScalars(std::string name, AbstractData &data)
Parameters::tubeL
asl::Parameter< double > tubeL
Definition: acousticWaves.cc:57
asl::SPLBGK
std::shared_ptr< LBGK > SPLBGK
Definition: aslLBGK.h:133
asl::generateBCNoSlip
SPBCond generateBCNoSlip(SPLBGK nm, const std::vector< SlicesNames > &sl)
Parameters::tOutput
asl::Parameter< double > tOutput
Definition: acousticWaves.cc:66
asl::initAll
void initAll(std::vector< T * > &v)
Definition: aslNumMethod.h:67
Parameters::load
void load(int argc, char *argv[])
Definition: acousticWaves.cc:99
FlT
float FlT
Definition: multiphase_flow.cc:43
asl::YE
Definition: aslBCond.h:309
asl::LBGKUtilities
contains different kernels for preprocessing and posprocessing of data used by LBGK
Definition: aslLBGK.h:137
asl::UValue::v
const T & v() const
Definition: aslUValue.h:43
asl::Block
Definition: aslBlocks.h:56
aslGeomInc.h
aslLBGKBC.h
Parameters
Definition: acousticWaves.cc:43
asl::Parameter::v
const T & v() const
Definition: aslParametersManager.h:179
asl::initData
void initData(SPAbstractData d, double a)
acl::generateVEConstant
VectorOfElements generateVEConstant(T a)
Generates VectorOfElements with 1 Element acl::Constant with value a.
Parameters::nuNum
asl::UValue< double > nuNum
Definition: multicomponent_flow.cc:64
aslTemplates.h
asl::errorMessage
void errorMessage(cl_int status, const char *errorMessage)
Prints errorMessage and exits depending on the status.
asl::ApplicationParametersManager
Definition: aslParametersManager.h:158
Parameters::tSimulation
asl::Parameter< double > tSimulation
Definition: acousticWaves.cc:65
Parameters::oilInVel
asl::Parameter< double > oilInVel
Definition: multiphase_flow.cc:74
Parameters::gasInVel
asl::Parameter< double > gasInVel
Definition: multiphase_flow.cc:76
aslTimer.h
asl::Z0
Definition: aslBCond.h:309
generateMixer
asl::SPDistanceFunction generateMixer(asl::Block &block, Parameters &params)
Definition: multiphase_flow.cc:137
Parameters::tubeD
asl::Parameter< double > tubeD
Definition: multicomponent_flow.cc:67
Parameters::pumpL
asl::Parameter< double > pumpL
Definition: multicomponent_flow.cc:68
asl::Timer::realTime
const double realTime() const
Definition: aslTimer.h:45
asl::SPDistanceFunction
std::shared_ptr< DistanceFunction > SPDistanceFunction
Definition: aslGeomInc.h:44
Parameters::updateNumValues
void updateNumValues()
Definition: acousticWaves.cc:107
asl::executeAll
void executeAll(std::vector< T * > &v)
Definition: aslNumMethod.h:55
asl::Timer::processorTime
const double processorTime() const
Definition: aslTimer.h:46
aslVTKFormatWriters.h
aslDataInc.h
asl::AVec
Definition: aslDataInc.h:34
Parameters::dx
asl::Parameter< double > dx
Definition: acousticWaves.cc:53
aslParametersManager.h
main
int main(int argc, char *argv[])
Definition: multiphase_flow.cc:153
asl::generateBCConstantPressure
SPBCond generateBCConstantPressure(SPLBGK nm, double p, const std::vector< SlicesNames > &sl)
asl::generateBCConstantGradient
SPBCond generateBCConstantGradient(SPAbstractDataWithGhostNodes d, double v, const VectorTemplate *const t, const std::vector< SlicesNames > &sl)
Bondary condition that makes fixed gradient.
Parameters::nu
asl::Parameter< double > nu
Definition: multicomponent_flow.cc:63
asl::normalize
SPDistanceFunction normalize(SPDistanceFunction a, double dx)