|
[Sponsors] |
September 27, 2017, 05:14 |
Using solidParticleCloud in OpenFOAM 3.0.x
|
#1 |
Member
Vishwesh Ravi Shrimali
Join Date: Aug 2017
Posts: 43
Rep Power: 9 |
Hi
I have built a solver for converting VOF to LPT in runtime. I want to store the information of the Lagrangian particles in a solidParticleCloud instead of the kinematicCloud that I was using earlier. I want to do this because I want to add particle(s) to the Cloud during the runTime. Unfortunately, I don't know how to initialize a new kinematicParcel which I can add in my Cloud. I had defined my kinematicCloud in createFields.H file of my solver: Code:
Info<< "\nReading transportProperties for Kinematic Cloud\n" << endl; IOdictionary transportProperties ( IOobject ( "transportProperties", runTime.constant(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE ) ); dimensionedScalar rhoInfValue ( transportProperties.lookup("rhoInf") ); volScalarField rhoInf ( IOobject ( "rho", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, rhoInfValue ); dimensionedScalar nu ( transportProperties.lookup("nu") ); volScalarField mu ( IOobject ( "mu", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), mesh, nu*rhoInfValue ); word kinematicCloudName("kinematicCloud"); args.optionReadIfPresent("cloudName", kinematicCloudName); Info<< "Constructing kinematicCloud " << kinematicCloudName << endl; //Info << "Constructing kinematicCloud" << endl; basicKinematicCloud kinematicCloud ( "kinematicCloud", rhoInf, U, mu, g ); Since there are no tutorials provided in OpenFOAM 3.0.x for solidParticleCloud, I am looking for some help regarding how to update my createFields.H file and how to implement the solidParticleCloud in OpenFOAM 3.0.x. Thanks Vishwesh |
|
Tags |
interfoam, lagrangian particle, lagrangian tracking, openfoam 3.0.x |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Frequently Asked Questions about Installing OpenFOAM | wyldckat | OpenFOAM Installation | 3 | November 14, 2023 12:58 |
UNIGE February 13th-17th - 2107. OpenFOAM advaced training days | joegi.geo | OpenFOAM Announcements from Other Sources | 0 | October 1, 2016 20:20 |
OpenFOAM Training Jan-Apr 2017, Virtual, London, Houston, Berlin | cfd.direct | OpenFOAM Announcements from Other Sources | 0 | September 21, 2016 12:50 |
OpenFOAM Training, London, Chicago, Munich, Houston 2016-2017 | cfd.direct | OpenFOAM Announcements from Other Sources | 0 | September 14, 2016 04:19 |
64bitrhel5 OF installation instructions | mirko | OpenFOAM Installation | 2 | August 12, 2008 19:07 |