+The CFDEMcoupling documentation is organized into the following sections. If you find errors or omissions in this manual or have suggestions for useful information to add, please send an email to the developers so we can improve the CFDEMcoupling documentation. +
+1.1 About CFDEMcouplingCFDEM coupling provides an open source parallel coupled CFD-DEM framework combining the strengths of LIGGGHTS DEM code and the Open Source CFD package OpenFOAM(R)(*). The CFDEMcoupling toolbox allows to expand standard CFD solvers of OpenFOAM(R)(*) to include a coupling to the DEM code LIGGGHTS. In this toolbox the particle representation within the CFD solver is organized by "cloud" classes. Key functionalities are organised in sub-models (e.g. force models, data exchange models, etc.) which can easily be selected and combined by dictionary settings. +
+The coupled solvers run fully parallel on distributed-memory clusters. Features are: +
+The file structure: +
+Details on installation are given on the CFDEMproject WWW Site . +The functionality of this CFD-DEM framwork is described via tutorial cases showing how to use different solvers and models. +
+CFDEMcoupling stands for Computational Fluid Dynamics (CFD) -Discrete Element Method (DEM) coupling. +
+CFDEMcoupling is an open-source code, distributed freely under the terms of the GNU Public License (GPL). +
+Core development of CFDEMcoupling is done by Christoph Goniva and Christoph Kloss, both at DCS Computing GmbH, 2012 +
+This documentation was written by Christoph Goniva, DCS Computing GmbH, 2012 +
+(*) OpenFOAM(R) is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark. +
+Please follow the installation routine provided at www.cfdem.com. +In order to get the latest code version, please use the git repository at http://github.com (githubAccess). +
+General: +
+Each solver of the CFDEMcoupling is comes with at least one tutorial example, showing its functionality and correct useage. Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell scripts. These scripts perform all necessary steps (preprocessing, run, postprocessing, visualization). +
+Location: +
+The tutorials can be found in the directory $CFDEM_PROJECT_DIR/tutorials, which can be reached by typing "cfdemTut" +
+Structure: +
+Each case is structured in a directory called "CFD" covering the CFD relevant settings and data, and a dirctory called "DEM" covering the DEM relevant settings and data. This allows to easily expand a pure CFD or DEM simulation case to a coupled case. +
+Usage: +
+Provided that the installation is correct, the tutorials can be run via "Allrun.sh" shell script, executed by typing "./Allrun.sh". The successful run of the script might need some third party software (e.g. octave, evince, etc.). +
+Settings: +
+The main settings of a simulation are done via dictionaries: +
+The DEM setup of each case is defined by a LIGGGHTS input file located in $caseDir/DEM (e.g. in.liggghts_init). For details on the LIGGGHTS setup, please have a look in the LIGGGHTS manual. +
+Standard CFD settings are defined in $caseDir/CFD/constant (e.g. transportProperties, RASproperties, etc.) and $caseDir/CFD/system (e.g. fvSchemes, controlDict). You can find more information on that in OpenFOAM(R)(*) documentations (www.openFoam.com)(*). +
+Settings of the coupling routines are defined in $caseDir/CFD/constant/couplingProperies (e.g. force models, data exchange model, etc.) and $caseDir/CFD/constant/liggghtsCommands (allows to execute a LIGGGHTS command during a coupled simulation). +
+General: +
+In the "couplingProperties" dictionary the setup of the coupling routines of the CFD-DEM simulation are defined. +
+Location: $caseDir/CFD/constant +
+Structure: +
+The dictionary is divided into two parts, "sub-models & settings" and "sub-model properties". +
+In "sub-models & settings" the following routines must be specified: +
+In "sub-model properties" sub-dictionaries might be defined to specify model specific parameters. +
+Settings: +
+Reasonable example settings for the "couplingProperties" dictionary are given in the tutorial cases. +
+General: +
+In the "liggghtsCommands" dictionary liggghts commands being executed during a coupled CFD-DEM simulation are specified. +
+Location: $caseDir/CFD/constant +
+Structure: +
+The dictionary is divided into two parts, first a list of "liggghtsCommandModels" is defined, then the settings for each model must be specified. +
+Settings: +
+Reasonable example settings for the "liggghtsCommands" dictionary are given in the tutorial cases. +
+This section lists all CFDEMcoupling sub-models and solvers alphabetically, with a separate +listing below of styles within certain commands. +
+Syntax: +
+Defined in couplingProperties dictionary. +
+IOModel "model"; ++
Examples: +
+IOModel "off"; +
+Note: This examples list might not be complete - please look for other models (IOModel_XY) in this documentation. +
+Description: +
+The IO-model is the base class to write data (e.g. particle properties) to files. +
+Restrictions: +
+none. +
+Related commands: +
+Note: This examples list may be incomplete - please look for other models (IOModel_XY) in this documentation. +
+Default: none. +
+ diff --git a/doc/IOModel.txt b/doc/IOModel.txt new file mode 100644 index 0000000..77014da --- /dev/null +++ b/doc/IOModel.txt @@ -0,0 +1,36 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +IOModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +IOModel "model"; :pre + +model = name of IO-model to be applied :ul + +[Examples:] + +IOModel "off"; + +Note: This examples list might not be complete - please look for other models (IOModel_XY) in this documentation. + +[Description:] + +The IO-model is the base class to write data (e.g. particle properties) to files. + +[Restrictions:] + +none. + +[Related commands:] + +Note: This examples list may be incomplete - please look for other models (IOModel_XY) in this documentation. + +[Default:] none. diff --git a/doc/IOModel_basicIO.html b/doc/IOModel_basicIO.html new file mode 100644 index 0000000..fddb3d0 --- /dev/null +++ b/doc/IOModel_basicIO.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+IOModel "basicIO"; ++
Examples: +
+IOModel "basicIO"; ++
Description: +
+The basic IO-model writes particle positions velocities and radii to files. The output directory ($casePath/CFD/particles) is created automatically. Data is written every write time of the CFD simulation. +
+Restrictions: None. +
+Related commands: +
+IOModel +
+ diff --git a/doc/IOModel_basicIO.txt b/doc/IOModel_basicIO.txt new file mode 100644 index 0000000..9108e8e --- /dev/null +++ b/doc/IOModel_basicIO.txt @@ -0,0 +1,29 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +IOModel_basicIO command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +IOModel "basicIO"; :pre + +[Examples:] + +IOModel "basicIO"; :pre + +[Description:] + +The basic IO-model writes particle positions velocities and radii to files. The output directory ($casePath/CFD/particles) is created automatically. Data is written every write time of the CFD simulation. + +[Restrictions:] None. + +[Related commands:] + +"IOModel"_IOModel.html + diff --git a/doc/IOModel_noIO.html b/doc/IOModel_noIO.html new file mode 100644 index 0000000..0fb2343 --- /dev/null +++ b/doc/IOModel_noIO.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+IOModel "off"; ++
Examples: +
+IOModel "off"; ++
Description: +
+The noIO-model is a dummy IO model. +
+Restrictions: None. +
+Related commands: +
+IOModel +
+ diff --git a/doc/IOModel_noIO.txt b/doc/IOModel_noIO.txt new file mode 100644 index 0000000..d90d77c --- /dev/null +++ b/doc/IOModel_noIO.txt @@ -0,0 +1,29 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +IOModel_noIO command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +IOModel "off"; :pre + +[Examples:] + +IOModel "off"; :pre + +[Description:] + +The noIO-model is a dummy IO model. + +[Restrictions:] None. + +[Related commands:] + +"IOModel"_IOModel.html + diff --git a/doc/Portfolio_CFDEMcoupling.png b/doc/Portfolio_CFDEMcoupling.png new file mode 100755 index 0000000..260f70d Binary files /dev/null and b/doc/Portfolio_CFDEMcoupling.png differ diff --git a/doc/SCcontent/individual_commands.txt b/doc/SCcontent/individual_commands.txt new file mode 100644 index 0000000..f9512e7 --- /dev/null +++ b/doc/SCcontent/individual_commands.txt @@ -0,0 +1,4 @@ +1.6 Models/Solvers :h4,link(cmd_5),link(comm) + +This section lists all CFDEMcoupling sub-models and solvers alphabetically, with a separate +listing below of styles within certain commands. diff --git a/doc/averagingModel.html b/doc/averagingModel.html new file mode 100644 index 0000000..ecc7def --- /dev/null +++ b/doc/averagingModel.html @@ -0,0 +1,41 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+averagingModel model; ++
Examples: +
+averagingModel dense; +averagingModel dilute; ++
Note: This examples list might not be complete - please look for other averagin models (averagingModel_XY) in this documentation. +
+Description: +
+The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities). +
+Restrictions: +
+None. +
+Related commands: +
+ +Default: none +
+ diff --git a/doc/averagingModel.txt b/doc/averagingModel.txt new file mode 100644 index 0000000..6ec694a --- /dev/null +++ b/doc/averagingModel.txt @@ -0,0 +1,37 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +averagingModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +averagingModel model; :pre + +model = name of averaging model to be applied :ul + +[Examples:] + +averagingModel dense; +averagingModel dilute; :pre + +Note: This examples list might not be complete - please look for other averagin models (averagingModel_XY) in this documentation. + +[Description:] + +The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities). + +[Restrictions:] + +None. + +[Related commands:] + +"dense"_averagingModel_dense.html, "dilute"_averagingModel_dilute.html + +[Default:] none diff --git a/doc/averagingModel_dense.html b/doc/averagingModel_dense.html new file mode 100644 index 0000000..3f86770 --- /dev/null +++ b/doc/averagingModel_dense.html @@ -0,0 +1,37 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+averagingModel dense; ++
Examples: +
+averagingModel dense; ++
Description: +
+The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities). +In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dense" model is supposed to be applied to cases where the granular regime is rather dense. The particle velocity inside a CFD cell is evaluated as an ensemble average of the particle velocities. +
+Restrictions: +
+None. +
+Related commands: +
+ +Default: none +
+ diff --git a/doc/averagingModel_dilute.html b/doc/averagingModel_dilute.html new file mode 100644 index 0000000..6f75339 --- /dev/null +++ b/doc/averagingModel_dilute.html @@ -0,0 +1,35 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+averagingModel dilute; ++
Examples: +
+averagingModel dilute; ++
Description: +
+The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities). +In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dilute" model is supposed to be applied to cases where the granular regime is rather dilute. The particle velocity inside a CFD cell is evaluated from a single particle in a cell (no averaging). +
+Restrictions: +
+This model is computationally efficient, but should only be used when only one particle is inside one CFD cell. +
+Related commands: +
+ + diff --git a/doc/averagingModel_dilute.txt b/doc/averagingModel_dilute.txt new file mode 100644 index 0000000..56640de --- /dev/null +++ b/doc/averagingModel_dilute.txt @@ -0,0 +1,32 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +averagingModel_dilute command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +averagingModel dilute; :pre + +[Examples:] + +averagingModel dilute; :pre + +[Description:] + +The averaging model performs the Lagrangian->Eulerian mapping of data (e.g. particle velocities). +In the "cfdemParticle cloud" this averaging model is used to calculate the average particle velocity inside a CFD cell. The "dilute" model is supposed to be applied to cases where the granular regime is rather dilute. The particle velocity inside a CFD cell is evaluated from a single particle in a cell (no averaging). + +[Restrictions:] + +This model is computationally efficient, but should only be used when only one particle is inside one CFD cell. + +[Related commands:] + +"averagingModel"_averagingModel.html, "dense"_averagingModel_dense.html + diff --git a/doc/cfdemSolverIB.html b/doc/cfdemSolverIB.html new file mode 100644 index 0000000..c1850e5 --- /dev/null +++ b/doc/cfdemSolverIB.html @@ -0,0 +1,53 @@ + +Description: +
+"cfdemSolverIB" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework, for calculating +the dynamics between immersed bodies and the surrounding fluid. Being an implementation of an immersed boundary method it allows tackling problems where the body diameter exceeds the maximal size of a fluid cell. Using the toolbox of OpenFOAM(R)(*) the governing equations of the fluid are computed and the corrections of velocity and pressure field with respect to the body-movement information, gained from LIGGGHTS, are incorporated. +
+Code of this solver contributions by Alice Hager, JKU. +
+Algorithm: +
+For each time step ... +
+Use: +
+The solver is realized within the Open Source framework CFDEMcoupling. Just as for the unresolved CFD-DEM solver cfdemSolverPiso the file CFD/constant/couplingProperties contains information about the settings for the different models. While IOmodel, DataExchangeModel etc. are applicable for all CFDEMcoupling-solvers, special locate-, force- and void fraction models were designed for the present case: +
+engineSearchIB, ArchimedesIB, ShirgaonkarIB, IBVoidfraction +
+References: +
+GONIVA, C., KLOSS, C., HAGER,A., WIERINK, G. and PIRKER, S. (2011): "A MULTI-PURPOSE OPEN SOURCE CFD-DEM APPROACH", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway +
+and +
+HAGER, A., KLOSS, C. and GONIVA, C. (2011): "TOWARDS AN EFFICIENT IMMERSED BOUNDARY METHOD WITHIN AN OPEN SOURCE FRAMEWORK", Proc. of the 8th Int. Conf. on CFD in Oil and Gas, Metallurgical and Process Industries, Trondheim, Norway +
+(*) OpenFOAM(R) is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark. +
+Description: +
+"cfdemSolverPiso" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPiso" has additional functionality for a coupling to the DEM code "LIGGGHTS". The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS. +
+see: +
+GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24. +
+(*) OpenFOAM(R) is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark. +
+Description: +
+"cfdemSolverPisoScalar" is a coupled CFD-DEM solver using CFDEMcoupling, an open source parallel coupled CFD-DEM framework. Based on pisoFoam(R)(*), a finite volume based solver for turbulent Navier-Stokes equations applying PISO algorithm, "cfdemSolverPisoScalar" has additional functionality for a coupling to the DEM code "LIGGGHTS" as well as a scalar transport equation. The volume averaged Navier-Stokes Equations are solved accounting for momentum exchange and volume displacement of discrete particles whose trajectories are calculated in the DEM code LIGGGHTS. The scalar transport equation is coupled to scalar properties of the particle phase, thus convective heat transfer in a fluid granular system can be modeled with "cfdemSolverPisoScalar". +
+see: +
+GONIVA, C., KLOSS, C., HAGER,A. and PIRKER, S. (2010): "An Open Source CFD-DEM Perspective", Proc. of OpenFOAM Workshop, Göteborg, June 22.-24. +
+(*) OpenFOAM(R) is a registered trade mark of Silicon Graphics International Corp. This offering is not affiliated, approved or endorsed by Silicon Graphics International Corp., the producer of the OpenFOAM(R) software and owner of the OpenFOAM(R) trademark. +
+Syntax: +
+Defined in couplingProperties dictionary. +
+clockModel model; ++
Examples: +
+clockModel standardClock; ++
Note: This examples list might not be complete - please look for other models (clockModel_XY) in this documentation. +
+Description: +
+The clockModel is the base class for models to examine the code/algorithm with respect to run time. +
+Main parts of the clockModel classes are written by Josef Kerbl, JKU. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/clockModel.txt b/doc/clockModel.txt new file mode 100644 index 0000000..fa93276 --- /dev/null +++ b/doc/clockModel.txt @@ -0,0 +1,32 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +clockModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +clockModel model; :pre + +model = name of the clockModel to be applied :ul + +[Examples:] + +clockModel standardClock; :pre + +Note: This examples list might not be complete - please look for other models (clockModel_XY) in this documentation. + +[Description:] + +The clockModel is the base class for models to examine the code/algorithm with respect to run time. + +Main parts of the clockModel classes are written by Josef Kerbl, JKU. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/clockModel_noClock.html b/doc/clockModel_noClock.html new file mode 100644 index 0000000..23448e4 --- /dev/null +++ b/doc/clockModel_noClock.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+clockModel off; ++
Examples: +
+clockModel off; ++
Description: +
+The "noClock" model is a dummy clockModel model which does not measure/evaluate the run time. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/clockModel_noClock.txt b/doc/clockModel_noClock.txt new file mode 100644 index 0000000..509c0b6 --- /dev/null +++ b/doc/clockModel_noClock.txt @@ -0,0 +1,29 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +clockModel_noClock command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +clockModel off; :pre + +[Examples:] + +clockModel off; :pre + +[Description:] + +The "noClock" model is a dummy clockModel model which does not measure/evaluate the run time. + +[Restrictions:] none. + +[Related commands:] + +"clockModel"_clockModel.html + diff --git a/doc/clockModel_standardClock.html b/doc/clockModel_standardClock.html new file mode 100644 index 0000000..b26c6c0 --- /dev/null +++ b/doc/clockModel_standardClock.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+clockModel standardClock; ++
Examples: +
+clockModel standardClock; ++
Description: +
+The "standardClock" model is a basic clockModel model which measures the run time between every ".start(int arrayPos,string name)" and ".stop(string name)" statement placed in the code. If a ".start(name)" is called more than once (e.g. in a loop) the accumulated times are calculated. After the simulation has finished, the data is stored in $caseDir/CFD/clockData/$startTime/*.txt . +Since the measurements are stored in an array, it is necessary to put a variable arrayPos (type integer) at the start command. Those do not need to be in ascending order and positions may be omitted. The standard size of this array is 30 and can be changed at the initialization of the standardClock class. If arrayPos is out of bounds, the array size will be doubled. The stop command does not need arrayPos, since the class remembers the positions. The string name is for easier evaluation afterwards an may be omitted like ".start(int arrayPos)" and ".stop()". The command ".stop(string name)" is a safety feature, because if the name is not equal to the started name, output will be produced for information. +After the case ran you may use the matPlot.py script located in $CFDEM_UT_DIR/vizClock/ to produce a graphical output of your measurements. The usage is like 'python < matPlot.py' and you have to be in the directory of the desired time step, where there is a file called "timeEvalFull.txt", which contains averaged and maximum data with respect to the number of processes. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/clockModel_standardClock.txt b/doc/clockModel_standardClock.txt new file mode 100644 index 0000000..117352d --- /dev/null +++ b/doc/clockModel_standardClock.txt @@ -0,0 +1,31 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +clockModel_standardClock command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +clockModel standardClock; :pre + +[Examples:] + +clockModel standardClock; :pre + +[Description:] + +The "standardClock" model is a basic clockModel model which measures the run time between every ".start(int arrayPos,string name)" and ".stop(string name)" statement placed in the code. If a ".start(name)" is called more than once (e.g. in a loop) the accumulated times are calculated. After the simulation has finished, the data is stored in $caseDir/CFD/clockData/$startTime/*.txt . +Since the measurements are stored in an array, it is necessary to put a variable {arrayPos} (type integer) at the start command. Those do not need to be in ascending order and positions may be omitted. The standard size of this array is 30 and can be changed at the initialization of the standardClock class. If {arrayPos} is out of bounds, the array size will be doubled. The stop command does not need {arrayPos}, since the class remembers the positions. The string name is for easier evaluation afterwards an may be omitted like ".start(int arrayPos)" and ".stop()". The command ".stop(string name)" is a safety feature, because if the name is not equal to the started name, output will be produced for information. +After the case ran you may use the matPlot.py script located in $CFDEM_UT_DIR/vizClock/ to produce a graphical output of your measurements. The usage is like 'python < matPlot.py' and you have to be in the directory of the desired time step, where there is a file called "timeEvalFull.txt", which contains averaged and maximum data with respect to the number of processes. + +[Restrictions:] none. + +[Related commands:] + +"clockModel"_clockModel.html + diff --git a/doc/dataExchangeModel.html b/doc/dataExchangeModel.html new file mode 100644 index 0000000..51d81bb --- /dev/null +++ b/doc/dataExchangeModel.html @@ -0,0 +1,41 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+dataExchangeModel model; ++
Examples: +
+dataExchangeModel twoWayFiles; +dataExchangeModel twoWayMPI; ++
Note: This examples list might not be complete - please look for other models (dataExchangeModel_XY) in this documentation. +
+Description: +
+The data exchange model performs the data exchange between the DEM code and the CFD code. +
+Restrictions: +
+None. +
+Related commands: +
+noDataExchange, oneWayVTK, twoWayFiles, twoWayMPI +
+Default: none +
+ diff --git a/doc/dataExchangeModel.txt b/doc/dataExchangeModel.txt new file mode 100644 index 0000000..42e0638 --- /dev/null +++ b/doc/dataExchangeModel.txt @@ -0,0 +1,37 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +dataExchangeModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +dataExchangeModel model; :pre + +model = name of data exchange model to be applied :ul + +[Examples:] + +dataExchangeModel twoWayFiles; +dataExchangeModel twoWayMPI; :pre + +Note: This examples list might not be complete - please look for other models (dataExchangeModel_XY) in this documentation. + +[Description:] + +The data exchange model performs the data exchange between the DEM code and the CFD code. + +[Restrictions:] + +None. + +[Related commands:] + +"noDataExchange"_dataExchangeModel_noDataExchange.html, "oneWayVTK"_dataExchangeModel_oneWayVTK.html, "twoWayFiles"_dataExchangeModel_twoWayFiles.html, "twoWayMPI"_dataExchangeModel_twoWayMPI.html + +[Default:] none diff --git a/doc/dataExchangeModel_noDataExchange.html b/doc/dataExchangeModel_noDataExchange.html new file mode 100644 index 0000000..f84f4a5 --- /dev/null +++ b/doc/dataExchangeModel_noDataExchange.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+dataExchangeModel noDataExchange; ++
Examples: +
+dataExchangeModel noDataExchange; ++
Description: +
+The data exchange model performs the data exchange between the DEM code and the CFD code. The noDataExchange model is a dummy model where no data is exchanged. +
+Restrictions: +
+None. +
+Related commands: +
+ + diff --git a/doc/dataExchangeModel_noDataExchange.txt b/doc/dataExchangeModel_noDataExchange.txt new file mode 100644 index 0000000..ee6db03 --- /dev/null +++ b/doc/dataExchangeModel_noDataExchange.txt @@ -0,0 +1,31 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +dataExchangeModel_noDataExchange command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +dataExchangeModel noDataExchange; :pre + +[Examples:] + +dataExchangeModel noDataExchange; :pre + +[Description:] + +The data exchange model performs the data exchange between the DEM code and the CFD code. The noDataExchange model is a dummy model where no data is exchanged. + +[Restrictions:] + +None. + +[Related commands:] + +"dataExchangeModel"_dataExchangeModel.html + diff --git a/doc/dataExchangeModel_oneWayVTK.html b/doc/dataExchangeModel_oneWayVTK.html new file mode 100644 index 0000000..800af8e --- /dev/null +++ b/doc/dataExchangeModel_oneWayVTK.html @@ -0,0 +1,58 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+dataExchangeModel oneWayVTK;
+oneWayVTKProps
+{
+ DEMts timeStep;
+ relativePath "path";
+ couplingFilename "filename";
+ maxNumberOfParticles number;
+};
+
+Examples: +
+dataExchangeModel oneWayVTK;
+oneWayVTKProps
+{
+ DEMts 0.0001;
+ relativePath "../DEM/post";
+ couplingFilename "vtk_out%4.4d.vtk";
+ maxNumberOfParticles 30000;
+}
+
+Description: +
+The data exchange model performs the data exchange between the DEM code and the CFD code. The oneWayVTK model is a model that can exchange particle properties from DEM to CFD based on previously stored VTK data. +
+Restrictions: +
+None. +
+Related commands: +
+ + diff --git a/doc/dataExchangeModel_oneWayVTK.txt b/doc/dataExchangeModel_oneWayVTK.txt new file mode 100644 index 0000000..f3e0153 --- /dev/null +++ b/doc/dataExchangeModel_oneWayVTK.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +dataExchangeModel_oneWayVTK command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +dataExchangeModel oneWayVTK; +oneWayVTKProps +\{ + DEMts timeStep; + relativePath "path"; + couplingFilename "filename"; + maxNumberOfParticles number; +\}; :pre + +{timeStep} = time step size of stored DEM data :ulb,l +{path} = path to the VTK data files relative do simulation directory :l +{filename} = filename of the VTK file series :l +{number} = maximum nuber of particles in DEM simulation :l +:ule + +[Examples:] + +dataExchangeModel oneWayVTK; +oneWayVTKProps +\{ + DEMts 0.0001; + relativePath "../DEM/post"; + couplingFilename "vtk_out%4.4d.vtk"; + maxNumberOfParticles 30000; +\} :pre + +[Description:] + +The data exchange model performs the data exchange between the DEM code and the CFD code. The oneWayVTK model is a model that can exchange particle properties from DEM to CFD based on previously stored VTK data. + +[Restrictions:] + +None. + +[Related commands:] + +"dataExchangeModel"_dataExchangeModel.html + diff --git a/doc/dataExchangeModel_twoWayFiles.html b/doc/dataExchangeModel_twoWayFiles.html new file mode 100644 index 0000000..30a7233 --- /dev/null +++ b/doc/dataExchangeModel_twoWayFiles.html @@ -0,0 +1,50 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+dataExchangeModel twoWayFiles;
+twoWayFilesProps
+{
+ couplingFilename "filename";
+ maxNumberOfParticles number;
+};
+
+Examples: +
+dataExchangeModel twoWayFiles;
+twoWayFilesProps
+{
+ couplingFilename "vtk_out%4.4d.vtk";
+ maxNumberOfParticles 30000;
+}
+
+Description: +
+The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayFiles model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via files that are sequentially written/read by the codes. +
+Restrictions: +
+Developed only for two processors, one for DEM and on for CFD run. +
+Related commands: +
+ + diff --git a/doc/dataExchangeModel_twoWayFiles.txt b/doc/dataExchangeModel_twoWayFiles.txt new file mode 100644 index 0000000..20c4d8d --- /dev/null +++ b/doc/dataExchangeModel_twoWayFiles.txt @@ -0,0 +1,45 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +dataExchangeModel_twoWayFiles command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +dataExchangeModel twoWayFiles; +twoWayFilesProps +\{ + couplingFilename "filename"; + maxNumberOfParticles number; +\}; :pre + +{filename} = filename of the VTK file series :ulb,l +{number} = maximum nuber of particles in DEM simulation :l +:ule + +[Examples:] + +dataExchangeModel twoWayFiles; +twoWayFilesProps +\{ + couplingFilename "vtk_out%4.4d.vtk"; + maxNumberOfParticles 30000; +\} :pre + +[Description:] + +The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayFiles model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via files that are sequentially written/read by the codes. + +[Restrictions:] + +Developed only for two processors, one for DEM and on for CFD run. + +[Related commands:] + +"dataExchangeModel"_dataExchangeModel.html + diff --git a/doc/dataExchangeModel_twoWayMPI.html b/doc/dataExchangeModel_twoWayMPI.html new file mode 100644 index 0000000..cde5fab --- /dev/null +++ b/doc/dataExchangeModel_twoWayMPI.html @@ -0,0 +1,46 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+dataExchangeModel twoWayMPI;
+twoWayMPIProps
+{
+ liggghtsPath "path";
+};
+
+Examples: +
+dataExchangeModel twoWayMPI;
+twoWayMPIProps
+{
+ liggghtsPath "../DEM/in.liggghts_init";
+}
+
+Description: +
+The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayMPI model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via MPI technique. The DEM run is executed by the coupling model, via a liggghtsCommandModel object. +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/dataExchangeModel_twoWayMPI.txt b/doc/dataExchangeModel_twoWayMPI.txt new file mode 100644 index 0000000..f698b0e --- /dev/null +++ b/doc/dataExchangeModel_twoWayMPI.txt @@ -0,0 +1,42 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +dataExchangeModel_twoWayMPI command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +dataExchangeModel twoWayMPI; +twoWayMPIProps +\{ + liggghtsPath "path"; +\}; :pre + +{path} = path to the DEM simulation input file :ulb,l +:ule + +[Examples:] + +dataExchangeModel twoWayMPI; +twoWayMPIProps +\{ + liggghtsPath "../DEM/in.liggghts_init"; +\} :pre + +[Description:] + +The data exchange model performs the data exchange between the DEM code and the CFD code. The twoWayMPI model is a model that can exchange particle properties from DEM to CFD and from CFD to DEM. Data is exchanged via MPI technique. The DEM run is executed by the coupling model, via a liggghtsCommandModel object. + +[Restrictions:] + +none. + +[Related commands:] + +"dataExchangeModel"_dataExchangeModel.html + diff --git a/doc/doxygen/confFile b/doc/doxygen/confFile new file mode 100644 index 0000000..34c3731 --- /dev/null +++ b/doc/doxygen/confFile @@ -0,0 +1,1551 @@ +# Doxyfile 1.6.3 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = CFDEMcoupling + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 2.4 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command
1.6.3
+
+
diff --git a/doc/doxygen/html/cfdemCloud_2cfdemCloudI_8H_source.html b/doc/doxygen/html/cfdemCloud_2cfdemCloudI_8H_source.html
new file mode 100644
index 0000000..ded06e7
--- /dev/null
+++ b/doc/doxygen/html/cfdemCloud_2cfdemCloudI_8H_source.html
@@ -0,0 +1,252 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/cfdemCloud_2cfdemCloud_8H_source.html b/doc/doxygen/html/cfdemCloud_2cfdemCloud_8H_source.html
new file mode 100644
index 0000000..dac4415
--- /dev/null
+++ b/doc/doxygen/html/cfdemCloud_2cfdemCloud_8H_source.html
@@ -0,0 +1,372 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/checkModelType_8H_source.html b/doc/doxygen/html/checkModelType_8H_source.html
new file mode 100644
index 0000000..e70936b
--- /dev/null
+++ b/doc/doxygen/html/checkModelType_8H_source.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes-members.html b/doc/doxygen/html/classFoam_1_1Archimedes-members.html
new file mode 100644
index 0000000..7b2a08e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| Archimedes(const dictionary &dict, cfdemCloud &sm) (defined in Foam::Archimedes) | Foam::Archimedes | |
| Archimedes(const dictionary &dict, cfdemCloud &sm) (defined in Foam::Archimedes) | Foam::Archimedes | |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::Archimedes) | Foam::Archimedes | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::Archimedes) | Foam::Archimedes | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("Archimedes") (defined in Foam::Archimedes) | Foam::Archimedes | |
| TypeName("Archimedes") (defined in Foam::Archimedes) | Foam::Archimedes | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~Archimedes() (defined in Foam::Archimedes) | Foam::Archimedes | |
| ~Archimedes() (defined in Foam::Archimedes) | Foam::Archimedes | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes.html b/doc/doxygen/html/classFoam_1_1Archimedes.html
new file mode 100644
index 0000000..8291343
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("Archimedes") |
| + | Archimedes (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("Archimedes") |
| + | Archimedes (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB-members.html b/doc/doxygen/html/classFoam_1_1ArchimedesIB-members.html
new file mode 100644
index 0000000..7877fcd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| ArchimedesIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| ArchimedesIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("ArchimedesIB") (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| TypeName("ArchimedesIB") (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~ArchimedesIB() (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| ~ArchimedesIB() (defined in Foam::ArchimedesIB) | Foam::ArchimedesIB | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB.html b/doc/doxygen/html/classFoam_1_1ArchimedesIB.html
new file mode 100644
index 0000000..1498341
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("ArchimedesIB") |
| + | ArchimedesIB (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("ArchimedesIB") |
| + | ArchimedesIB (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.map b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.map
new file mode 100644
index 0000000..1d428cd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.md5
new file mode 100644
index 0000000..7d4b512
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.md5
@@ -0,0 +1 @@
+f954d36ba81a8f4486ad97d91f9d26de
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.png b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.png
new file mode 100644
index 0000000..fa7553b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.map b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.map
new file mode 100644
index 0000000..232e056
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.md5
new file mode 100644
index 0000000..28c35bb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.md5
@@ -0,0 +1 @@
+b0a925ae279f2672fdaf32ab461309b7
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.png b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.png
new file mode 100644
index 0000000..cd591a5
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.map b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.md5
new file mode 100644
index 0000000..266c6fd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.md5
@@ -0,0 +1 @@
+1e9b8a9ff0e4733cfb1be5f88b72bc90
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.png b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.png
new file mode 100644
index 0000000..fcdf8b5
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.map b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.map
new file mode 100644
index 0000000..a9b8fb5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.md5
new file mode 100644
index 0000000..92f601f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.md5
@@ -0,0 +1 @@
+80373c781701a6d2561beb7e36b107b5
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.png b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.png
new file mode 100644
index 0000000..f276378
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion-members.html b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion-members.html
new file mode 100644
index 0000000..4b2fbbe
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion-members.html
@@ -0,0 +1,85 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| DEMdrivenMeshMotion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| DEMdrivenMeshMotion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| dict_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| particleCloud_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| setMotion() const (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | [virtual] |
| setMotion() const (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | [virtual] |
| TypeName("DEMdrivenMeshMotion") (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| TypeName("DEMdrivenMeshMotion") (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| TypeName("meshMotionModel") (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| ~DEMdrivenMeshMotion() (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| ~DEMdrivenMeshMotion() (defined in Foam::DEMdrivenMeshMotion) | Foam::DEMdrivenMeshMotion | |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion.html b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion.html
new file mode 100644
index 0000000..ff8b417
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("DEMdrivenMeshMotion") |
| + | DEMdrivenMeshMotion (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | setMotion () const |
| + | TypeName ("DEMdrivenMeshMotion") |
| + | DEMdrivenMeshMotion (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | setMotion () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.map b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.map
new file mode 100644
index 0000000..9d4b4e1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.md5
new file mode 100644
index 0000000..86ffddf
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.md5
@@ -0,0 +1 @@
+5e9627955a3c3eef8d522cb2d3da9500
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.png b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.png
new file mode 100644
index 0000000..6400492
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.map b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.map
new file mode 100644
index 0000000..8175c70
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.md5
new file mode 100644
index 0000000..c0539e8
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.md5
@@ -0,0 +1 @@
+4c8e879f4ae93b953b0aa5a110c8598c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.png b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.png
new file mode 100644
index 0000000..cf4f3e9
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag-members.html b/doc/doxygen/html/classFoam_1_1DiFeliceDrag-members.html
new file mode 100644
index 0000000..4e3aae5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| DiFeliceDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| DiFeliceDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("DiFeliceDrag") (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| TypeName("DiFeliceDrag") (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~DiFeliceDrag() (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| ~DiFeliceDrag() (defined in Foam::DiFeliceDrag) | Foam::DiFeliceDrag | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag.html b/doc/doxygen/html/classFoam_1_1DiFeliceDrag.html
new file mode 100644
index 0000000..a6f93ae
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("DiFeliceDrag") |
| + | DiFeliceDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("DiFeliceDrag") |
| + | DiFeliceDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS-members.html b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS-members.html
new file mode 100644
index 0000000..efb6922
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS-members.html
@@ -0,0 +1,111 @@
+
+
+
+
+
+| cloudRefMS() const (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| cloudRefMS() const (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| declareRunTimeSelectionTable(autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| DiFeliceDragMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| DiFeliceDragMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| forceModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloudMS &sm, word forceType) (defined in Foam::forceModelMS) | Foam::forceModelMS | [static] |
| New(const dictionary &dict, cfdemCloudMS &sm, word forceType) (defined in Foam::forceModelMS) | Foam::forceModelMS | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| particleCloudMS_ (defined in Foam::forceModelMS) | Foam::forceModelMS | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("DiFeliceDragMS") (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| TypeName("DiFeliceDragMS") (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| TypeName("forceModelMS") (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~DiFeliceDragMS() (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| ~DiFeliceDragMS() (defined in Foam::DiFeliceDragMS) | Foam::DiFeliceDragMS | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModelMS() (defined in Foam::forceModelMS) | Foam::forceModelMS | [virtual] |
| ~forceModelMS() (defined in Foam::forceModelMS) | Foam::forceModelMS | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS.html b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS.html
new file mode 100644
index 0000000..a3f8349
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("DiFeliceDragMS") |
| + | DiFeliceDragMS (const dictionary &dict, cfdemCloudMS &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("DiFeliceDragMS") |
| + | DiFeliceDragMS (const dictionary &dict, cfdemCloudMS &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.map b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.map
new file mode 100644
index 0000000..2dc8175
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.map
@@ -0,0 +1,6 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.md5
new file mode 100644
index 0000000..1b30304
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.md5
@@ -0,0 +1 @@
+1a8f4d266d613dfbd35e807439ccf17d
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.png b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.png
new file mode 100644
index 0000000..38fb06e
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.map b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.map
new file mode 100644
index 0000000..c809548
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.md5
new file mode 100644
index 0000000..ee3f988
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.md5
@@ -0,0 +1 @@
+bed15f6175740a3dc110d63a0a2bd6b6
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.png b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.png
new file mode 100644
index 0000000..37b4928
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.map b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.map
new file mode 100644
index 0000000..d0ae9c2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.md5
new file mode 100644
index 0000000..a642c9d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.md5
@@ -0,0 +1 @@
+75207c4fe5a150a3d4ca17e3fbc59fdd
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.png b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.png
new file mode 100644
index 0000000..94e4528
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.map b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.map
new file mode 100644
index 0000000..e809610
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.md5
new file mode 100644
index 0000000..ab95c94
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.md5
@@ -0,0 +1 @@
+3c6203ac3ffc59a71a50db090633c1c8
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.png b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.png
new file mode 100644
index 0000000..72f6b8d
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction-members.html b/doc/doxygen/html/classFoam_1_1GaussVoidFraction-members.html
new file mode 100644
index 0000000..d9803c6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction-members.html
@@ -0,0 +1,103 @@
+
+
+
+
+
+| buildLabelHashSet(const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| buildLabelHashSet(const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| GaussVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| GaussVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | [virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | [virtual] |
| TypeName("Gauss") (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| TypeName("Gauss") (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~GaussVoidFraction() (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| ~GaussVoidFraction() (defined in Foam::GaussVoidFraction) | Foam::GaussVoidFraction | |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction.html b/doc/doxygen/html/classFoam_1_1GaussVoidFraction.html
new file mode 100644
index 0000000..9331e9b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("Gauss") |
| + | GaussVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| +void | buildLabelHashSet (const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const |
| + | TypeName ("Gauss") |
| + | GaussVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| +void | buildLabelHashSet (const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.map b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.map
new file mode 100644
index 0000000..263eb09
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.md5
new file mode 100644
index 0000000..912d252
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.md5
@@ -0,0 +1 @@
+e8565073a6672d847e9769c6f8fcb4ce
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.png b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.png
new file mode 100644
index 0000000..2801da9
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.map b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.map
new file mode 100644
index 0000000..906eeb8
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.md5
new file mode 100644
index 0000000..6b3f82e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.md5
@@ -0,0 +1 @@
+d5bf8e811d9e14f0ada7a7c600a859fd
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.png b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.png
new file mode 100644
index 0000000..7470f55
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag-members.html b/doc/doxygen/html/classFoam_1_1GidaspowDrag-members.html
new file mode 100644
index 0000000..fcdc916
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| GidaspowDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | |
| GidaspowDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("GidaspowDrag") (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | |
| TypeName("GidaspowDrag") (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~GidaspowDrag() (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag | |
| ~GidaspowDrag() (defined in Foam::GidaspowDrag) | Foam::GidaspowDrag |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag.html b/doc/doxygen/html/classFoam_1_1GidaspowDrag.html
new file mode 100644
index 0000000..6cbb978
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("GidaspowDrag") |
| + | GidaspowDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("GidaspowDrag") |
| + | GidaspowDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.map b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.map
new file mode 100644
index 0000000..47432c1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.md5
new file mode 100644
index 0000000..7a62e6f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.md5
@@ -0,0 +1 @@
+c016f4aacb31e89b72870f7c9c8fc8be
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.png b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.png
new file mode 100644
index 0000000..5d918d2
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.map b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.map
new file mode 100644
index 0000000..d791aa3
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.md5
new file mode 100644
index 0000000..0d0656f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.md5
@@ -0,0 +1 @@
+88ca40d531aa69a6e729a229c8ec1439
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.png b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.png
new file mode 100644
index 0000000..e82512e
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1IOModel-members.html b/doc/doxygen/html/classFoam_1_1IOModel-members.html
new file mode 100644
index 0000000..001062c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel-members.html
@@ -0,0 +1,83 @@
+
+
+
+
+
+| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| dict_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| dumpDEMdata() const (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| dumpDEMdata() const (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| particleCloud_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| time_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| TypeName("IOModel") (defined in Foam::IOModel) | Foam::IOModel | |
| TypeName("IOModel") (defined in Foam::IOModel) | Foam::IOModel | |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1IOModel.html b/doc/doxygen/html/classFoam_1_1IOModel.html
new file mode 100644
index 0000000..2863db0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("IOModel") |
| + | declareRunTimeSelectionTable (autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | IOModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | dumpDEMdata () const |
| +fileName | createTimeDir (fileName) const |
| + | TypeName ("IOModel") |
| + | declareRunTimeSelectionTable (autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | IOModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | dumpDEMdata () const |
| +fileName | createTimeDir (fileName) const |
Static Public Member Functions | |
| +static autoPtr< IOModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< IOModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +const Time & | time_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.map
new file mode 100644
index 0000000..974dfa0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.md5
new file mode 100644
index 0000000..3868def
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.md5
@@ -0,0 +1 @@
+7cbe060aa0df062846fd6159113e6d8a
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.png
new file mode 100644
index 0000000..add3dc4
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1IOModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.map
new file mode 100644
index 0000000..592d221
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.md5
new file mode 100644
index 0000000..0174c31
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.md5
@@ -0,0 +1 @@
+20242bacbddc8d3103afdd5b2dce7e13
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.png
new file mode 100644
index 0000000..bdb6b9a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag-members.html b/doc/doxygen/html/classFoam_1_1KochHillDrag-members.html
new file mode 100644
index 0000000..8c80c25
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag-members.html
@@ -0,0 +1,105 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| KochHillDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| KochHillDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| KochHillDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::KochHillDrag) | Foam::KochHillDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::KochHillDrag) | Foam::KochHillDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::KochHillDrag) | Foam::KochHillDrag | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("KochHillDrag") (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| TypeName("KochHillDrag") (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| TypeName("KochHillDrag") (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~KochHillDrag() (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| ~KochHillDrag() (defined in Foam::KochHillDrag) | Foam::KochHillDrag | |
| ~KochHillDrag() (defined in Foam::KochHillDrag) | Foam::KochHillDrag |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag.html b/doc/doxygen/html/classFoam_1_1KochHillDrag.html
new file mode 100644
index 0000000..e6cf70c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("KochHillDrag") |
| + | KochHillDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("KochHillDrag") |
| + | KochHillDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("KochHillDrag") |
| + | KochHillDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2-members.html b/doc/doxygen/html/classFoam_1_1KochHillDrag2-members.html
new file mode 100644
index 0000000..783418c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| KochHillDrag2(const dictionary &dict, cfdemCloud &sm) (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | |
| KochHillDrag2(const dictionary &dict, cfdemCloud &sm) (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("KochHillDrag2") (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | |
| TypeName("KochHillDrag2") (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~KochHillDrag2() (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 | |
| ~KochHillDrag2() (defined in Foam::KochHillDrag2) | Foam::KochHillDrag2 |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2.html b/doc/doxygen/html/classFoam_1_1KochHillDrag2.html
new file mode 100644
index 0000000..3519282
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("KochHillDrag2") |
| + | KochHillDrag2 (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("KochHillDrag2") |
| + | KochHillDrag2 (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.map b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.map
new file mode 100644
index 0000000..1d428cd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.md5
new file mode 100644
index 0000000..059e996
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.md5
@@ -0,0 +1 @@
+4ec8c8f6f59dc9af54645a4b632564b4
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.png b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.png
new file mode 100644
index 0000000..6ee6021
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.map b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.map
new file mode 100644
index 0000000..232e056
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.md5
new file mode 100644
index 0000000..8199dfd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.md5
@@ -0,0 +1 @@
+5256fd9b5a4e43f50035c2aee5ee495b
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.png b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.png
new file mode 100644
index 0000000..b4fff34
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.map b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.map
new file mode 100644
index 0000000..d0ae9c2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.md5
new file mode 100644
index 0000000..a5cb2af
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.md5
@@ -0,0 +1 @@
+727078164ee259710f66e940b19ef411
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.png b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.png
new file mode 100644
index 0000000..0f7140a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.map b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.map
new file mode 100644
index 0000000..e809610
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.md5
new file mode 100644
index 0000000..35bff5b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.md5
@@ -0,0 +1 @@
+c525f2a75c469260ceced33d893275fd
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.png b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.png
new file mode 100644
index 0000000..496b7e2
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust-members.html b/doc/doxygen/html/classFoam_1_1LaEuScalarDust-members.html
new file mode 100644
index 0000000..f81429c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| LaEuScalarDust(const dictionary &dict, cfdemCloud &sm) (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | |
| LaEuScalarDust(const dictionary &dict, cfdemCloud &sm) (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | |
| manipulateScalarField(volScalarField &) const (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("LaEuScalarDust") (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | |
| TypeName("LaEuScalarDust") (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~LaEuScalarDust() (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust | |
| ~LaEuScalarDust() (defined in Foam::LaEuScalarDust) | Foam::LaEuScalarDust |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust.html b/doc/doxygen/html/classFoam_1_1LaEuScalarDust.html
new file mode 100644
index 0000000..544752d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("LaEuScalarDust") |
| + | LaEuScalarDust (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | manipulateScalarField (volScalarField &) const |
| + | TypeName ("LaEuScalarDust") |
| + | LaEuScalarDust (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | manipulateScalarField (volScalarField &) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.map b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.map
new file mode 100644
index 0000000..82293a7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.md5
new file mode 100644
index 0000000..da88d87
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.md5
@@ -0,0 +1 @@
+466960f09285011b2670a448a82de0f4
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.png b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.png
new file mode 100644
index 0000000..15b3b2a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.map b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.map
new file mode 100644
index 0000000..313f66a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.md5
new file mode 100644
index 0000000..2422a46
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.md5
@@ -0,0 +1 @@
+904baaa8c660a9f2fc6a4fafcd033ce7
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.png b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.png
new file mode 100644
index 0000000..ba333b1
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp-members.html b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp-members.html
new file mode 100644
index 0000000..91c1d11
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| LaEuScalarTemp(const dictionary &dict, cfdemCloud &sm) (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | |
| LaEuScalarTemp(const dictionary &dict, cfdemCloud &sm) (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | |
| manipulateScalarField(volScalarField &) const (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("LaEuScalarTemp") (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | |
| TypeName("LaEuScalarTemp") (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~LaEuScalarTemp() (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp | |
| ~LaEuScalarTemp() (defined in Foam::LaEuScalarTemp) | Foam::LaEuScalarTemp |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp.html b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp.html
new file mode 100644
index 0000000..8fc11d2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("LaEuScalarTemp") |
| + | LaEuScalarTemp (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | manipulateScalarField (volScalarField &) const |
| + | TypeName ("LaEuScalarTemp") |
| + | LaEuScalarTemp (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | manipulateScalarField (volScalarField &) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.map b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.map
new file mode 100644
index 0000000..1b2d7f9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.md5
new file mode 100644
index 0000000..e18e8d0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.md5
@@ -0,0 +1 @@
+de2a93c4b16ac6f02781830896f78409
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.png b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.png
new file mode 100644
index 0000000..e265713
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.map b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.map
new file mode 100644
index 0000000..b1031ac
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.md5
new file mode 100644
index 0000000..95f4dcf
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.md5
@@ -0,0 +1 @@
+e2ceca063b8191a21564a47ea0d0e01a
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.png b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.png
new file mode 100644
index 0000000..c0f6a37
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift-members.html b/doc/doxygen/html/classFoam_1_1MeiLift-members.html
new file mode 100644
index 0000000..b1d4706
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| MeiLift(const dictionary &dict, cfdemCloud &sm) (defined in Foam::MeiLift) | Foam::MeiLift | |
| MeiLift(const dictionary &dict, cfdemCloud &sm) (defined in Foam::MeiLift) | Foam::MeiLift | |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::MeiLift) | Foam::MeiLift | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::MeiLift) | Foam::MeiLift | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("MeiLift") (defined in Foam::MeiLift) | Foam::MeiLift | |
| TypeName("MeiLift") (defined in Foam::MeiLift) | Foam::MeiLift | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~MeiLift() (defined in Foam::MeiLift) | Foam::MeiLift | |
| ~MeiLift() (defined in Foam::MeiLift) | Foam::MeiLift |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift.html b/doc/doxygen/html/classFoam_1_1MeiLift.html
new file mode 100644
index 0000000..fd171b2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("MeiLift") |
| + | MeiLift (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("MeiLift") |
| + | MeiLift (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.map b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.md5
new file mode 100644
index 0000000..34d1798
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.md5
@@ -0,0 +1 @@
+ab6bdad3011f123874f3306d48d88592
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.png b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.png
new file mode 100644
index 0000000..477f67f
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.map b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.map
new file mode 100644
index 0000000..722331b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.md5
new file mode 100644
index 0000000..c680135
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.md5
@@ -0,0 +1 @@
+1cae7491993d8101075c8ca6a9f9834e
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.png b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.png
new file mode 100644
index 0000000..ea8cd91
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag-members.html b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag-members.html
new file mode 100644
index 0000000..31c4f70
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| SchillerNaumannDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | |
| SchillerNaumannDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("SchillerNaumannDrag") (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | |
| TypeName("SchillerNaumannDrag") (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~SchillerNaumannDrag() (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag | |
| ~SchillerNaumannDrag() (defined in Foam::SchillerNaumannDrag) | Foam::SchillerNaumannDrag |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag.html b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag.html
new file mode 100644
index 0000000..6770245
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("SchillerNaumannDrag") |
| + | SchillerNaumannDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("SchillerNaumannDrag") |
| + | SchillerNaumannDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.map b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.map
new file mode 100644
index 0000000..d71bff0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.md5
new file mode 100644
index 0000000..9a78974
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.md5
@@ -0,0 +1 @@
+a63117161de3ddf9f820401bbe12cc71
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.png b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.png
new file mode 100644
index 0000000..6ee1219
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.map b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.map
new file mode 100644
index 0000000..d0bce5d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.md5
new file mode 100644
index 0000000..b3030df
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.md5
@@ -0,0 +1 @@
+f830a2cefa3d1639f21d1729e9b5df9f
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.png b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.png
new file mode 100644
index 0000000..abf2585
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB-members.html b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB-members.html
new file mode 100644
index 0000000..35e709b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | [virtual] |
| ShirgaonkarIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | |
| ShirgaonkarIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("ShirgaonkarIB") (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | |
| TypeName("ShirgaonkarIB") (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~ShirgaonkarIB() (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB | |
| ~ShirgaonkarIB() (defined in Foam::ShirgaonkarIB) | Foam::ShirgaonkarIB |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB.html b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB.html
new file mode 100644
index 0000000..90da25b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("ShirgaonkarIB") |
| + | ShirgaonkarIB (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("ShirgaonkarIB") |
| + | ShirgaonkarIB (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.map b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.map
new file mode 100644
index 0000000..1d428cd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.md5
new file mode 100644
index 0000000..46fe19b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.md5
@@ -0,0 +1 @@
+adde3c7461cdbb64403145efdd462b56
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.png b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.png
new file mode 100644
index 0000000..d5ee953
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.map b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.map
new file mode 100644
index 0000000..232e056
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.md5
new file mode 100644
index 0000000..24d1c58
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.md5
@@ -0,0 +1 @@
+bf66d34a954203fdc4cbb1d25fd8e1e2
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.png b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.png
new file mode 100644
index 0000000..a7ae75c
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1ShirgaonkarIB__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange-members.html b/doc/doxygen/html/classFoam_1_1TempExchange-members.html
new file mode 100644
index 0000000..f08b322
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::TempExchange) | Foam::TempExchange | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::TempExchange) | Foam::TempExchange | [virtual] |
| TempExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::TempExchange) | Foam::TempExchange | |
| TempExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::TempExchange) | Foam::TempExchange | |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("TempExchange") (defined in Foam::TempExchange) | Foam::TempExchange | |
| TypeName("TempExchange") (defined in Foam::TempExchange) | Foam::TempExchange | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~TempExchange() (defined in Foam::TempExchange) | Foam::TempExchange | |
| ~TempExchange() (defined in Foam::TempExchange) | Foam::TempExchange |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange.html b/doc/doxygen/html/classFoam_1_1TempExchange.html
new file mode 100644
index 0000000..46a8abb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("TempExchange") |
| + | TempExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("TempExchange") |
| + | TempExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.map b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.map
new file mode 100644
index 0000000..06640e9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.md5
new file mode 100644
index 0000000..ad27512
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.md5
@@ -0,0 +1 @@
+477c61bd85bb1a12483c0f90b4632447
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.png b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.png
new file mode 100644
index 0000000..691c65d
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.map b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.map
new file mode 100644
index 0000000..fd4ca3f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.md5
new file mode 100644
index 0000000..3afa706
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.md5
@@ -0,0 +1 @@
+3b8df475111d465d227d5ee9d2df0134
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.png b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.png
new file mode 100644
index 0000000..24cdb85
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1allRegion-members.html b/doc/doxygen/html/classFoam_1_1allRegion-members.html
new file mode 100644
index 0000000..1cbf9af
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion-members.html
@@ -0,0 +1,98 @@
+
+
+
+
+
+| allRegion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::allRegion) | Foam::allRegion | |
| allRegion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::allRegion) | Foam::allRegion | |
| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| defineRegion() const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| defineRegion() const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| dict_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| expandRegion(volVectorField &) const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| expandRegion(volVectorField &) const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| particleCloud_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| resetVolFields(volVectorField &) const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| resetVolFields(volVectorField &) const (defined in Foam::allRegion) | Foam::allRegion | [virtual] |
| TypeName("allRegion") (defined in Foam::allRegion) | Foam::allRegion | |
| TypeName("allRegion") (defined in Foam::allRegion) | Foam::allRegion | |
| TypeName("regionModel") (defined in Foam::regionModel) | Foam::regionModel | |
| voidFractionModel (defined in Foam::regionModel) | Foam::regionModel | [friend] |
| ~allRegion() (defined in Foam::allRegion) | Foam::allRegion | |
| ~allRegion() (defined in Foam::allRegion) | Foam::allRegion | |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1allRegion.html b/doc/doxygen/html/classFoam_1_1allRegion.html
new file mode 100644
index 0000000..12ac821
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("allRegion") |
| + | allRegion (const dictionary &dict, cfdemCloud &sm) |
| +void | defineRegion () const |
| +void | expandRegion (volVectorField &) const |
| +void | resetVolFields (volVectorField &) const |
| + | TypeName ("allRegion") |
| + | allRegion (const dictionary &dict, cfdemCloud &sm) |
| +void | defineRegion () const |
| +void | expandRegion (volVectorField &) const |
| +void | resetVolFields (volVectorField &) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.map b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.map
new file mode 100644
index 0000000..41c50d3
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.md5
new file mode 100644
index 0000000..7e70848
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.md5
@@ -0,0 +1 @@
+a62524f97532a1b7bd88ff96a932eb10
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.png b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.png
new file mode 100644
index 0000000..e947461
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1allRegion__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.map b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.map
new file mode 100644
index 0000000..71ee50f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.md5
new file mode 100644
index 0000000..4e0b15e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.md5
@@ -0,0 +1 @@
+8bfd2fc4160b5a2393cecdcdaccaf066
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.png b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.png
new file mode 100644
index 0000000..ae19097
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel-members.html b/doc/doxygen/html/classFoam_1_1averagingModel-members.html
new file mode 100644
index 0000000..5dfc9ee
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel-members.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| dict_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| particleCloud_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 (defined in Foam::averagingModel) | Foam::averagingModel | [pure virtual] |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 (defined in Foam::averagingModel) | Foam::averagingModel | [pure virtual] |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 (defined in Foam::averagingModel) | Foam::averagingModel | [pure virtual] |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 (defined in Foam::averagingModel) | Foam::averagingModel | [pure virtual] |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| TypeName("averagingModel") (defined in Foam::averagingModel) | Foam::averagingModel | |
| TypeName("averagingModel") (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel.html b/doc/doxygen/html/classFoam_1_1averagingModel.html
new file mode 100644
index 0000000..e78dbfb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel.html
@@ -0,0 +1,174 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("averagingModel") |
| + | declareRunTimeSelectionTable (autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | averagingModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 |
| +virtual void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 |
| +void | undoVectorAverage (volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const |
| +void | undoVectorSum (volVectorField &field, double **const &value, double **const &weight, double **const &mask) const |
| +void | setVectorSum (volVectorField &field, double **&value, double **&weight, double **const &mask) const |
| +void | setScalarSum (volScalarField &field, double **&value, double **const &weight, double **const &mask) const |
| +void | resetVectorAverage (volVectorField &prev, volVectorField &next, bool single=false) const |
| +void | resetWeightFields () const |
| +void | undoWeightFields (double **const &) const |
| +tmp< volVectorField > | UsInterp () const |
| +volVectorField & | UsPrev () const |
| +volVectorField & | UsNext () const |
| +volScalarField & | UsWeightField () const |
| + | TypeName ("averagingModel") |
| + | declareRunTimeSelectionTable (autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | averagingModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 |
| +virtual void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const =0 |
| +void | undoVectorAverage (volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const |
| +void | undoVectorSum (volVectorField &field, double **const &value, double **const &weight, double **const &mask) const |
| +void | setVectorSum (volVectorField &field, double **&value, double **&weight, double **const &mask) const |
| +void | setScalarSum (volScalarField &field, double **&value, double **const &weight, double **const &mask) const |
| +void | resetVectorAverage (volVectorField &prev, volVectorField &next, bool single=false) const |
| +void | resetWeightFields () const |
| +void | undoWeightFields (double **const &) const |
| +tmp< volVectorField > | UsInterp () const |
| +volVectorField & | UsPrev () const |
| +volVectorField & | UsNext () const |
| +volScalarField & | UsWeightField () const |
Static Public Member Functions | |
| +static autoPtr< averagingModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< averagingModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +volScalarField | UsWeightField_ |
| +volVectorField | UsPrev_ |
| +volVectorField | UsNext_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.map
new file mode 100644
index 0000000..dffac7d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.md5
new file mode 100644
index 0000000..4b1bede
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.md5
@@ -0,0 +1 @@
+0788a857f38d7229789eeb8d84608302
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.png
new file mode 100644
index 0000000..7896393
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.map
new file mode 100644
index 0000000..7b3473d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.md5
new file mode 100644
index 0000000..ec362e8
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.md5
@@ -0,0 +1 @@
+62323ca3929410a5b6edcf0475c8e024
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.png
new file mode 100644
index 0000000..eb3dc05
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1basicIO-members.html b/doc/doxygen/html/classFoam_1_1basicIO-members.html
new file mode 100644
index 0000000..6161617
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO-members.html
@@ -0,0 +1,88 @@
+
+
+
+
+
+| basicIO(const dictionary &dict, cfdemCloud &sm) (defined in Foam::basicIO) | Foam::basicIO | |
| basicIO(const dictionary &dict, cfdemCloud &sm) (defined in Foam::basicIO) | Foam::basicIO | |
| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| dict_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| dumpDEMdata() const (defined in Foam::basicIO) | Foam::basicIO | [virtual] |
| dumpDEMdata() const (defined in Foam::basicIO) | Foam::basicIO | [virtual] |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| particleCloud_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| time_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| TypeName("basicIO") (defined in Foam::basicIO) | Foam::basicIO | |
| TypeName("basicIO") (defined in Foam::basicIO) | Foam::basicIO | |
| TypeName("IOModel") (defined in Foam::IOModel) | Foam::IOModel | |
| ~basicIO() (defined in Foam::basicIO) | Foam::basicIO | |
| ~basicIO() (defined in Foam::basicIO) | Foam::basicIO | |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1basicIO.html b/doc/doxygen/html/classFoam_1_1basicIO.html
new file mode 100644
index 0000000..0620af7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("basicIO") |
| + | basicIO (const dictionary &dict, cfdemCloud &sm) |
| +void | dumpDEMdata () const |
| + | TypeName ("basicIO") |
| + | basicIO (const dictionary &dict, cfdemCloud &sm) |
| +void | dumpDEMdata () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.map b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.map
new file mode 100644
index 0000000..95fe564
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.md5
new file mode 100644
index 0000000..bcdb51e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.md5
@@ -0,0 +1 @@
+884771a39eadd8c25ab5abcc4a50a954
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.png b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.png
new file mode 100644
index 0000000..5063f00
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1basicIO__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.map b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.map
new file mode 100644
index 0000000..dec6bf6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.md5
new file mode 100644
index 0000000..3086dbc
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.md5
@@ -0,0 +1 @@
+cb2dc5fc7caa833aa04c96250005cffc
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.png b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.png
new file mode 100644
index 0000000..faeb934
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction-members.html b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction-members.html
new file mode 100644
index 0000000..a9ed839
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction-members.html
@@ -0,0 +1,103 @@
+
+
+
+
+
+| bigParticleVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| bigParticleVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| buildLabelHashSet(const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| buildLabelHashSet(const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | [virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | [virtual] |
| TypeName("bigParticle") (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| TypeName("bigParticle") (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~bigParticleVoidFraction() (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| ~bigParticleVoidFraction() (defined in Foam::bigParticleVoidFraction) | Foam::bigParticleVoidFraction | |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction.html b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction.html
new file mode 100644
index 0000000..6701a41
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("bigParticle") |
| + | bigParticleVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| +void | buildLabelHashSet (const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const |
| + | TypeName ("bigParticle") |
| + | bigParticleVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| +void | buildLabelHashSet (const scalar radius, const vector position, const label cellID, labelHashSet &hashSett) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.map b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.map
new file mode 100644
index 0000000..93553ec
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.md5
new file mode 100644
index 0000000..9870672
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.md5
@@ -0,0 +1 @@
+1200db1475fe325169c2b9ed378721db
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.png b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.png
new file mode 100644
index 0000000..2b3578f
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.map b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.map
new file mode 100644
index 0000000..a0ea1ac
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.md5
new file mode 100644
index 0000000..50a5180
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.md5
@@ -0,0 +1 @@
+86e7e1d172055162b7fe7a22b6b7563e
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.png b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.png
new file mode 100644
index 0000000..af18e25
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction-members.html b/doc/doxygen/html/classFoam_1_1centreVoidFraction-members.html
new file mode 100644
index 0000000..b2f0ce7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| centreVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| centreVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | [virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | [virtual] |
| TypeName("centre") (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| TypeName("centre") (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~centreVoidFraction() (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| ~centreVoidFraction() (defined in Foam::centreVoidFraction) | Foam::centreVoidFraction | |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction.html b/doc/doxygen/html/classFoam_1_1centreVoidFraction.html
new file mode 100644
index 0000000..1240043
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("centre") |
| + | centreVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| + | TypeName ("centre") |
| + | centreVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.map b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.map
new file mode 100644
index 0000000..6af078b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.md5
new file mode 100644
index 0000000..cfbf184
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.md5
@@ -0,0 +1 @@
+4642002c461e3aad4f93316a378611fe
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.png b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.png
new file mode 100644
index 0000000..56ae746
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.map b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.map
new file mode 100644
index 0000000..6e87ce4
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.md5
new file mode 100644
index 0000000..1699beb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.md5
@@ -0,0 +1 @@
+8dc66495a0da4c6f83664056dbeb8221
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.png b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.png
new file mode 100644
index 0000000..25d1f57
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloud-members.html b/doc/doxygen/html/classFoam_1_1cfdemCloud-members.html
new file mode 100644
index 0000000..928f7a9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloud-members.html
@@ -0,0 +1,207 @@
+
+
+
+
+
+| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| arraysReallocated_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| averagingModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| cellIDs_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| couplingProperties_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| dataExchangeModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| dataExchangeModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| DEMForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| evolve(volScalarField &, volVectorField &, volVectorField &) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| evolve(volScalarField &, volVectorField &, volVectorField &) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| expForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| findCells() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| findCells() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| forceM(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| forceM(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| forceModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| forceModels_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| getDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| getDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| giveDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| giveDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| ignore_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| impForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| IOModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommand_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommandDict_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommandModelList_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| locateModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| mesh_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| meshMotionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| modelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| momCoupleModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| momCoupleModels_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| nrForceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| nrForceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticles_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticlesChanged_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleVolumes_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleWeights_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| positions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| radii_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| reAllocArrays() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| reAllocArrays() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| regionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| setForces() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| setForces() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| setNumberOfParticles(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| setNumberOfParticles(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected, virtual] |
| turbulenceModelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| velocities_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| verbous_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidFractionModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| voidFractionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidfractions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloud.html b/doc/doxygen/html/classFoam_1_1cfdemCloud.html
new file mode 100644
index 0000000..8544943
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloud.html
@@ -0,0 +1,370 @@
+
+
+
+
+
+
Public Member Functions | |
| + | cfdemCloud (const fvMesh &mesh) |
| +word | modelType () |
| +label | particleCell (int) |
| +double | d (int) |
| +vector | position (int) |
| +vector | velocity (int) |
| +virtual const forceModel & | forceM (int) |
| +virtual int | nrForceModels () |
| +scalar | radius (int) |
| +scalar | voidfraction (int) |
| +label | liggghtsCommandModelIndex (word) |
| +const bool & | ignore () const |
| +const fvMesh & | mesh () const |
| +bool | verbous () const |
| +const IOdictionary & | couplingProperties () const |
| +double ** | positions () const |
| +double ** | velocities () const |
| +double ** | impForces () const |
| +double ** | expForces () const |
| +double ** | radii () const |
| +double ** | voidfractions () const |
| +void | set_radii (double **&) const |
| +double ** | cellIDs () const |
| +void | set_cellIDs (double **&) const |
| +double ** | particleWeights () const |
| +double ** | particleVolumes () const |
| +int | numberOfParticles () const |
| +bool | numberOfParticlesChanged () const |
| +bool | arraysReallocated () const |
| +const wordList & | forceModels () |
| +const voidFractionModel & | voidFractionM () const |
| +const locateModel & | locateM () const |
| +const momCoupleModel & | momCoupleM (int) const |
| +const dataExchangeModel & | dataExchangeM () const |
| +const IOModel & | IOM () const |
| +const averagingModel & | averagingM () const |
| +const regionModel & | regionM () const |
| +const meshMotionModel & | meshMotionM () const |
| +const wordList & | liggghtsCommandModelList () const |
| +autoPtr< liggghtsCommandModel > * | liggghtsCommand () const |
| +virtual bool | evolve (volScalarField &, volVectorField &, volVectorField &) |
| +virtual bool | reAllocArrays () const |
| +void | writeScalarFieldToTerminal (double **&) |
| +void | writeVectorFieldToTerminal (double **&) |
| +tmp< fvVectorMatrix > | divVoidfractionTau (volVectorField &, volScalarField &) const |
| +tmp< volScalarField > | voidfractionNuEff (volScalarField &) const |
| +void | resetArray (double **&, int, int, double resetVal=0.) |
| + | cfdemCloud (const fvMesh &mesh) |
| +word | modelType () |
| +label | particleCell (int) |
| +double | d (int) |
| +vector | position (int) |
| +vector | velocity (int) |
| +virtual const forceModel & | forceM (int) |
| +virtual int | nrForceModels () |
| +scalar | radius (int) |
| +scalar | voidfraction (int) |
| +label | liggghtsCommandModelIndex (word) |
| +const bool & | ignore () const |
| +const fvMesh & | mesh () const |
| +bool | verbous () const |
| +const IOdictionary & | couplingProperties () const |
| +double ** | positions () const |
| +double ** | velocities () const |
| +double ** | impForces () const |
| +double ** | expForces () const |
| +double ** | radii () const |
| +double ** | voidfractions () const |
| +void | set_radii (double **&) const |
| +double ** | cellIDs () const |
| +void | set_cellIDs (double **&) const |
| +double ** | particleWeights () const |
| +double ** | particleVolumes () const |
| +int | numberOfParticles () const |
| +bool | numberOfParticlesChanged () const |
| +bool | arraysReallocated () const |
| +const wordList & | forceModels () |
| +const voidFractionModel & | voidFractionM () const |
| +const locateModel & | locateM () const |
| +const momCoupleModel & | momCoupleM (int) const |
| +const dataExchangeModel & | dataExchangeM () const |
| +const IOModel & | IOM () const |
| +const averagingModel & | averagingM () const |
| +const regionModel & | regionM () const |
| +const meshMotionModel & | meshMotionM () const |
| +const wordList & | liggghtsCommandModelList () const |
| +autoPtr< liggghtsCommandModel > * | liggghtsCommand () const |
| +virtual bool | evolve (volScalarField &, volVectorField &, volVectorField &) |
| +virtual bool | reAllocArrays () const |
| +void | writeScalarFieldToTerminal (double **&) |
| +void | writeVectorFieldToTerminal (double **&) |
| +tmp< fvVectorMatrix > | divVoidfractionTau (volVectorField &, volScalarField &) const |
| +tmp< volScalarField > | voidfractionNuEff (volScalarField &) const |
| +void | resetArray (double **&, int, int, double resetVal=0.) |
Protected Member Functions | |
| +virtual void | getDEMdata () |
| +virtual void | giveDEMdata () |
| +virtual void | setNumberOfParticles (int) |
| +virtual void | findCells () |
| +virtual void | setForces () |
| +virtual void | getDEMdata () |
| +virtual void | giveDEMdata () |
| +virtual void | setNumberOfParticles (int) |
| +virtual void | findCells () |
| +virtual void | setForces () |
Protected Attributes | |
| +const fvMesh & | mesh_ |
| +IOdictionary | couplingProperties_ |
| +IOdictionary | liggghtsCommandDict_ |
| +bool | verbous_ |
| +bool | ignore_ |
| +const word | modelType_ |
| +double ** | positions_ |
| +double ** | velocities_ |
| +double ** | impForces_ |
| +double ** | expForces_ |
| +double ** | DEMForces_ |
| +double ** | radii_ |
| +double ** | voidfractions_ |
| +double ** | cellIDs_ |
| +double ** | particleWeights_ |
| +double ** | particleVolumes_ |
| +int | numberOfParticles_ |
| +bool | numberOfParticlesChanged_ |
| +bool | arraysReallocated_ |
| +const wordList | forceModels_ |
| +const wordList | momCoupleModels_ |
| +const wordList | liggghtsCommandModelList_ |
| +const word | turbulenceModelType_ |
| +autoPtr< forceModel > * | forceModel_ |
| +autoPtr< locateModel > | locateModel_ |
| +autoPtr< momCoupleModel > * | momCoupleModel_ |
| +autoPtr< dataExchangeModel > | dataExchangeModel_ |
| +autoPtr< IOModel > | IOModel_ |
| +autoPtr< voidFractionModel > | voidFractionModel_ |
| +autoPtr< averagingModel > | averagingModel_ |
| +autoPtr< regionModel > | regionModel_ |
| +autoPtr< meshMotionModel > | meshMotionModel_ |
| +autoPtr< liggghtsCommandModel > * | liggghtsCommand_ |
Friends | |
| +class | dataExchangeModel |
| +class | voidFractionModel |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB-members.html b/doc/doxygen/html/classFoam_1_1cfdemCloudIB-members.html
new file mode 100644
index 0000000..a3765b1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB-members.html
@@ -0,0 +1,214 @@
+
+
+
+
+
+| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| arraysReallocated_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| averagingModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| calcVelocityCorrection(volScalarField &, volVectorField &, volScalarField &) (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| calcVelocityCorrection(volScalarField &, volVectorField &, volScalarField &) (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| cellIDs_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| cfdemCloudIB(const fvMesh &mesh) (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| cfdemCloudIB(const fvMesh &mesh) (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| couplingProperties_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| dataExchangeModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| dataExchangeModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| DEMForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| evolve() (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| evolve() (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| evolve(volScalarField &, volVectorField &, volVectorField &) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| expForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| findCells() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| findCells() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| forceM(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| forceM(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| forceModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| forceModels_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| getDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| getDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| giveDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| giveDEMdata() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| ignore_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| impForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| IOModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| liggghtsCommand_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| liggghtsCommandDict_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| liggghtsCommandModelList_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| locateModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| mesh_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| meshMotionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| modelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| momCoupleModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| momCoupleModels_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| nrForceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| nrForceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| numberOfParticles_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| numberOfParticlesChanged_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| particleVolumes_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| particleWeights_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| positions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| radii_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| reAllocArrays() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| reAllocArrays() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| regionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| setForces() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| setForces() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| setNumberOfParticles(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| setNumberOfParticles(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| turbulenceModelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| velocities_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| verbous_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| voidFractionModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| voidFractionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline, private] |
| voidfractions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, private] |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private] |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [private, virtual] |
| ~cfdemCloudIB() (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB | |
| ~cfdemCloudIB() (defined in Foam::cfdemCloudIB) | Foam::cfdemCloudIB |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB.html b/doc/doxygen/html/classFoam_1_1cfdemCloudIB.html
new file mode 100644
index 0000000..82e86ad
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.map b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.map
new file mode 100644
index 0000000..21fd4fe
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.md5
new file mode 100644
index 0000000..4e7e276
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.md5
@@ -0,0 +1 @@
+b1e97de66c58488393cf3f98b275ef48
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.png b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.png
new file mode 100644
index 0000000..0bb9368
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.map b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.map
new file mode 100644
index 0000000..21fd4fe
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.md5
new file mode 100644
index 0000000..4e7e276
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.md5
@@ -0,0 +1 @@
+b1e97de66c58488393cf3f98b275ef48
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.png b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.png
new file mode 100644
index 0000000..0bb9368
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS-members.html b/doc/doxygen/html/classFoam_1_1cfdemCloudMS-members.html
new file mode 100644
index 0000000..056369b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS-members.html
@@ -0,0 +1,221 @@
+
+
+
+
+
+| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| arraysReallocated() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| arraysReallocated_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| averagingM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| averagingModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| body(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| body(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| cellIDCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| cellIDCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| cellIDs() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| cellIDs_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| cfdemCloud(const fvMesh &mesh) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| cfdemCloudMS(const fvMesh &mesh) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| cfdemCloudMS(const fvMesh &mesh) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| couplingProperties() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| couplingProperties_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| d(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| dataExchangeM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| dataExchangeModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| dataExchangeModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| DEMForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| DEMForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| DEMForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| divVoidfractionTau(volVectorField &, volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| evolve(volScalarField &, volVectorField &, volVectorField &) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| evolve(volScalarField &, volVectorField &, volVectorField &) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| expForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| expForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| expForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| expForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| forceM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| forceM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| forceModels() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| ignore() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| ignore_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| impForces() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| impForces_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| impForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| impForcesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| IOM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| IOModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommand() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommand_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommandDict_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| liggghtsCommandModelIndex(word) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommandModelList() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| liggghtsCommandModelList_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| locateM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| locateModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| mesh() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| mesh_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| meshMotionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| meshMotionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| modelType() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| modelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| momCoupleM(int) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| momCoupleModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| momCoupleModels_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| nrForceModels() (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| nrForceModels() (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| nrigid(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| nrigid(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| numberOfClumps() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| numberOfClumps() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| numberOfClumpsChanged() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| numberOfClumpsChanged() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticles() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticles_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticlesChanged() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| numberOfParticlesChanged_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| particleCell(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleVolumes() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleVolumes_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleWeights() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| particleWeights_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| position(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| positionCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| positionCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| positions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| positions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| positionsCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| positionsCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| radii() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| radii_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| radius(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| regionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| regionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| resetArray(double **&, int, int, double resetVal=0.) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_cellIDs(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| set_radii(double **&) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| turbulenceModelType_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| velocities() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| velocities_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| velocitiesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| velocitiesCM() const (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [inline] |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| velocity(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| velocityCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| velocityCM(int) (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| verbous() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| verbous_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfraction(int) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidFractionM() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidFractionModel (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [friend] |
| voidFractionModel_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [protected] |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfractionNuEff(volScalarField &) const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidfractions() const (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [inline] |
| voidfractions_ (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [mutable, protected] |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeScalarFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| writeVectorFieldToTerminal(double **&) (defined in Foam::cfdemCloud) | Foam::cfdemCloud | |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| ~cfdemCloud() (defined in Foam::cfdemCloud) | Foam::cfdemCloud | [virtual] |
| ~cfdemCloudMS() (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
| ~cfdemCloudMS() (defined in Foam::cfdemCloudMS) | Foam::cfdemCloudMS | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS.html b/doc/doxygen/html/classFoam_1_1cfdemCloudMS.html
new file mode 100644
index 0000000..e0a872f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+

Public Member Functions | |
| + | cfdemCloudMS (const fvMesh &mesh) |
| +vector | positionCM (int) |
| +vector | velocityCM (int) |
| +label | cellIDCM (int) |
| +label | body (int) |
| +label | nrigid (int) |
| +double **& | positionsCM () const |
| +double **& | velocitiesCM () const |
| +double **& | impForcesCM () const |
| +double **& | expForcesCM () const |
| +double **& | DEMForcesCM () const |
| +int | numberOfClumps () const |
| +bool | numberOfClumpsChanged () const |
| +const forceModel & | forceM (int) |
| +int | nrForceModels () |
| +bool | evolve (volScalarField &, volVectorField &, volVectorField &) |
| + | cfdemCloudMS (const fvMesh &mesh) |
| +vector | positionCM (int) |
| +vector | velocityCM (int) |
| +label | cellIDCM (int) |
| +label | body (int) |
| +label | nrigid (int) |
| +double **& | positionsCM () const |
| +double **& | velocitiesCM () const |
| +double **& | impForcesCM () const |
| +double **& | expForcesCM () const |
| +double **& | DEMForcesCM () const |
| +int | numberOfClumps () const |
| +bool | numberOfClumpsChanged () const |
| +const forceModel & | forceM (int) |
| +int | nrForceModels () |
| +bool | evolve (volScalarField &, volVectorField &, volVectorField &) |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.map b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.map
new file mode 100644
index 0000000..dffac7d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.md5
new file mode 100644
index 0000000..e71b2fd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.md5
@@ -0,0 +1 @@
+2155a31af8602ead80c8fdf3ec22f2a9
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.png b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.png
new file mode 100644
index 0000000..0d9eb69
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.map b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.map
new file mode 100644
index 0000000..dffac7d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.md5
new file mode 100644
index 0000000..e71b2fd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.md5
@@ -0,0 +1 @@
+2155a31af8602ead80c8fdf3ec22f2a9
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.png b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.png
new file mode 100644
index 0000000..0d9eb69
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.map b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.map
new file mode 100644
index 0000000..a06858b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.md5
new file mode 100644
index 0000000..ed308cf
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.md5
@@ -0,0 +1 @@
+ffc3fa869a36ad8aa29d74f7d8727816
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.png b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.png
new file mode 100644
index 0000000..447efe1
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel-members.html b/doc/doxygen/html/classFoam_1_1dataExchangeModel-members.html
new file mode 100644
index 0000000..1a0b337
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel-members.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [mutable, protected] |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| dict_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| getData(word name, word type, int **const &field, label step) const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| getData(word name, word type, int **const &field, label step) const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="double") const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="double") const =0 (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [pure virtual] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| particleCloud_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel.html b/doc/doxygen/html/classFoam_1_1dataExchangeModel.html
new file mode 100644
index 0000000..1a5f43e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel.html
@@ -0,0 +1,209 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("dataExchangeModel") |
| + | declareRunTimeSelectionTable (autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | dataExchangeModel (const dictionary &dict, cfdemCloud &sm) |
| +const int & | maxNumberOfParticles () const |
| +int | nClumpTypes () const |
| +template<typename T > | |
| void | getData (word name, word type, T **const &field) const |
| +virtual void | getData (word name, word type, double **const &field, label step) const =0 |
| +virtual void | getData (word name, word type, int **const &field, label step) const =0 |
| +virtual void | giveData (word name, word type, double **const &field, const char *datatype="double") const =0 |
| +virtual void | allocateArray (double **&, double, int, int) const |
| +virtual void | allocateArray (double **&, double, int, const char *="nparticles") const |
| +virtual void | allocateArray (int **&, int, int, int) const |
| +virtual void | allocateArray (int **&, int, int, const char *="nparticles") const |
| +virtual bool | couple () const |
| +virtual scalar | timeStepFraction () const |
| +int | couplingStep () const |
| +const scalar & | DEMts () const |
| +int | couplingInterval () const |
| +void | checkTSsize () const |
| +void | readDEMtsfromDict (dictionary &propsDict) |
| +bool | doCoupleNow () const |
| +virtual int | getNumberOfClumps () const |
| + | TypeName ("dataExchangeModel") |
| + | declareRunTimeSelectionTable (autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | dataExchangeModel (const dictionary &dict, cfdemCloud &sm) |
| +const int & | maxNumberOfParticles () const |
| +int | nClumpTypes () const |
| +template<typename T > | |
| void | getData (word name, word type, T **const &field) const |
| +virtual void | getData (word name, word type, double **const &field, label step) const =0 |
| +virtual void | getData (word name, word type, int **const &field, label step) const =0 |
| +virtual void | giveData (word name, word type, double **const &field, const char *datatype="double") const =0 |
| +virtual void | allocateArray (double **&, double, int, int) const |
| +virtual void | allocateArray (double **&, double, int, const char *="nparticles") const |
| +virtual void | allocateArray (int **&, int, int, int) const |
| +virtual void | allocateArray (int **&, int, int, const char *="nparticles") const |
| +virtual bool | couple () const |
| +virtual scalar | timeStepFraction () const |
| +int | couplingStep () const |
| +const scalar & | DEMts () const |
| +int | couplingInterval () const |
| +void | checkTSsize () const |
| +void | readDEMtsfromDict (dictionary &propsDict) |
| +bool | doCoupleNow () const |
| +virtual int | getNumberOfClumps () const |
Static Public Member Functions | |
| +static autoPtr< dataExchangeModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< dataExchangeModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Member Functions | |
| +void | setNumberOfParticles (int) const |
| +void | setNumberOfParticles (int) const |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +int | maxNumberOfParticles_ |
| +int | nClumpTypes_ |
| +int | couplingStep_ |
| +scalar | DEMts_ |
| +int | couplingInterval_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.map
new file mode 100644
index 0000000..120ad38
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.md5
new file mode 100644
index 0000000..d9a73e4
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.md5
@@ -0,0 +1 @@
+289003ac6edf68bf1b06da0dc06e2425
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.png
new file mode 100644
index 0000000..3bf98ac
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.map
new file mode 100644
index 0000000..ca0efb0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.map
@@ -0,0 +1,6 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.md5
new file mode 100644
index 0000000..a91a9e5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.md5
@@ -0,0 +1 @@
+56e93dbe750ee556d9d5432e0fa5e7ee
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.png
new file mode 100644
index 0000000..dc5743d
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dense-members.html b/doc/doxygen/html/classFoam_1_1dense-members.html
new file mode 100644
index 0000000..25ef776
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense-members.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| dense(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dense) | Foam::dense | |
| dense(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dense) | Foam::dense | |
| dict_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| particleCloud_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dense) | Foam::dense | [virtual] |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dense) | Foam::dense | [virtual] |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dense) | Foam::dense | [virtual] |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dense) | Foam::dense | [virtual] |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| TypeName("dense") (defined in Foam::dense) | Foam::dense | |
| TypeName("dense") (defined in Foam::dense) | Foam::dense | |
| TypeName("averagingModel") (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
| ~dense() (defined in Foam::dense) | Foam::dense | |
| ~dense() (defined in Foam::dense) | Foam::dense |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dense.html b/doc/doxygen/html/classFoam_1_1dense.html
new file mode 100644
index 0000000..cb35dce
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("dense") |
| + | dense (const dictionary &dict, cfdemCloud &sm) |
| +void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| +void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| + | TypeName ("dense") |
| + | dense (const dictionary &dict, cfdemCloud &sm) |
| +void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| +void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dense__coll__graph.map b/doc/doxygen/html/classFoam_1_1dense__coll__graph.map
new file mode 100644
index 0000000..4c4816c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dense__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1dense__coll__graph.md5
new file mode 100644
index 0000000..c229c5f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense__coll__graph.md5
@@ -0,0 +1 @@
+274dd9dc22a731f27174fc019a3f0954
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dense__coll__graph.png b/doc/doxygen/html/classFoam_1_1dense__coll__graph.png
new file mode 100644
index 0000000..f604f60
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dense__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dense__inherit__graph.map b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.map
new file mode 100644
index 0000000..b1e5715
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dense__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.md5
new file mode 100644
index 0000000..d59988e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.md5
@@ -0,0 +1 @@
+9dfaf894b7d3f718eea01d23ac69b5fd
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dense__inherit__graph.png b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.png
new file mode 100644
index 0000000..dda00b6
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dense__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion-members.html b/doc/doxygen/html/classFoam_1_1differentialRegion-members.html
new file mode 100644
index 0000000..1f39fa0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion-members.html
@@ -0,0 +1,98 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| defineRegion() const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| defineRegion() const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| dict_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| differentialRegion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| differentialRegion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| expandRegion(volVectorField &) const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| expandRegion(volVectorField &) const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| particleCloud_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| resetVolFields(volVectorField &) const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| resetVolFields(volVectorField &) const (defined in Foam::differentialRegion) | Foam::differentialRegion | [virtual] |
| TypeName("differentialRegion") (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| TypeName("differentialRegion") (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| TypeName("regionModel") (defined in Foam::regionModel) | Foam::regionModel | |
| voidFractionModel (defined in Foam::regionModel) | Foam::regionModel | [friend] |
| ~differentialRegion() (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| ~differentialRegion() (defined in Foam::differentialRegion) | Foam::differentialRegion | |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion.html b/doc/doxygen/html/classFoam_1_1differentialRegion.html
new file mode 100644
index 0000000..c6754be
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("differentialRegion") |
| + | differentialRegion (const dictionary &dict, cfdemCloud &sm) |
| +void | defineRegion () const |
| +void | expandRegion (volVectorField &) const |
| +void | resetVolFields (volVectorField &) const |
| + | TypeName ("differentialRegion") |
| + | differentialRegion (const dictionary &dict, cfdemCloud &sm) |
| +void | defineRegion () const |
| +void | expandRegion (volVectorField &) const |
| +void | resetVolFields (volVectorField &) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.map b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.map
new file mode 100644
index 0000000..a2e5691
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.md5
new file mode 100644
index 0000000..722b17b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.md5
@@ -0,0 +1 @@
+643faebcceb403e9f22f1abc9f5b4b9c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.png b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.png
new file mode 100644
index 0000000..44ba901
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.map b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.map
new file mode 100644
index 0000000..702b974
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.md5
new file mode 100644
index 0000000..d3a2363
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.md5
@@ -0,0 +1 @@
+abf18b081b1933800f8de13ff4956c23
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.png b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.png
new file mode 100644
index 0000000..d4b0750
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dilute-members.html b/doc/doxygen/html/classFoam_1_1dilute-members.html
new file mode 100644
index 0000000..0c01b89
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute-members.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| averagingModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| declareRunTimeSelectionTable(autoPtr, averagingModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::averagingModel) | Foam::averagingModel | |
| dict_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| dilute(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dilute) | Foam::dilute | |
| dilute(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dilute) | Foam::dilute | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::averagingModel) | Foam::averagingModel | [static] |
| particleCloud_ (defined in Foam::averagingModel) | Foam::averagingModel | [protected] |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetVectorAverage(volVectorField &prev, volVectorField &next, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| resetWeightFields() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dilute) | Foam::dilute | [virtual] |
| setScalarAverage(volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dilute) | Foam::dilute | [virtual] |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setScalarSum(volScalarField &field, double **&value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dilute) | Foam::dilute | [virtual] |
| setVectorAverage(volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const (defined in Foam::dilute) | Foam::dilute | [virtual] |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| setVectorSum(volVectorField &field, double **&value, double **&weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| TypeName("dilute") (defined in Foam::dilute) | Foam::dilute | |
| TypeName("dilute") (defined in Foam::dilute) | Foam::dilute | |
| TypeName("averagingModel") (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorAverage(volVectorField &fieldPrev, volVectorField &fieldNext, volScalarField &weightField, double **const &value, double **const &weight, double **const &mask, bool single=false) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoVectorSum(volVectorField &field, double **const &value, double **const &weight, double **const &mask) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| undoWeightFields(double **const &) const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsInterp() const (defined in Foam::averagingModel) | Foam::averagingModel | |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsNext_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsPrev_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField() const (defined in Foam::averagingModel) | Foam::averagingModel | [inline] |
| UsWeightField_ (defined in Foam::averagingModel) | Foam::averagingModel | [mutable, protected] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
| ~averagingModel() (defined in Foam::averagingModel) | Foam::averagingModel | [virtual] |
| ~dilute() (defined in Foam::dilute) | Foam::dilute | |
| ~dilute() (defined in Foam::dilute) | Foam::dilute |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dilute.html b/doc/doxygen/html/classFoam_1_1dilute.html
new file mode 100644
index 0000000..d37e944
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("dilute") |
| + | dilute (const dictionary &dict, cfdemCloud &sm) |
| +void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| +void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| + | TypeName ("dilute") |
| + | dilute (const dictionary &dict, cfdemCloud &sm) |
| +void | setScalarAverage (volScalarField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
| +void | setVectorAverage (volVectorField &field, double **&value, double **&weight, volScalarField &weightField, double **const &mask) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dilute__coll__graph.map b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.map
new file mode 100644
index 0000000..4c4816c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dilute__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.md5
new file mode 100644
index 0000000..dec1fc7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.md5
@@ -0,0 +1 @@
+eb995c2e68937c729951de02a95805ce
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dilute__coll__graph.png b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.png
new file mode 100644
index 0000000..2e94a67
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dilute__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.map b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.map
new file mode 100644
index 0000000..b1e5715
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.md5
new file mode 100644
index 0000000..6c7137b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.md5
@@ -0,0 +1 @@
+c0027b97ac33037233f40cc4a495a16f
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.png b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.png
new file mode 100644
index 0000000..f900a47
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dilute__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction-members.html b/doc/doxygen/html/classFoam_1_1dividedVoidFraction-members.html
new file mode 100644
index 0000000..e4fb47a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| dividedVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| dividedVoidFraction(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | [virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | [virtual] |
| TypeName("divided") (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| TypeName("divided") (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~dividedVoidFraction() (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| ~dividedVoidFraction() (defined in Foam::dividedVoidFraction) | Foam::dividedVoidFraction | |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction.html b/doc/doxygen/html/classFoam_1_1dividedVoidFraction.html
new file mode 100644
index 0000000..429500a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("divided") |
| + | dividedVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| + | TypeName ("divided") |
| + | dividedVoidFraction (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS-members.html b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS-members.html
new file mode 100644
index 0000000..ff9fb7e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| dividedVoidFractionMS(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| dividedVoidFractionMS(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | [virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | [virtual] |
| TypeName("dividedMS") (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| TypeName("dividedMS") (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~dividedVoidFractionMS() (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| ~dividedVoidFractionMS() (defined in Foam::dividedVoidFractionMS) | Foam::dividedVoidFractionMS | |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS.html b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS.html
new file mode 100644
index 0000000..eb2dc51
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("dividedMS") |
| + | dividedVoidFractionMS (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
| + | TypeName ("dividedMS") |
| + | dividedVoidFractionMS (const dictionary &dict, cfdemCloud &sm) |
| +void | setvoidFraction (double **const &, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.map b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.map
new file mode 100644
index 0000000..36c2e33
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.md5
new file mode 100644
index 0000000..8da5a15
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.md5
@@ -0,0 +1 @@
+5874c1be4b4d5764d7d73212e8e45465
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.png b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.png
new file mode 100644
index 0000000..457ad8a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.map b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.map
new file mode 100644
index 0000000..e34a003
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.md5
new file mode 100644
index 0000000..884b17d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.md5
@@ -0,0 +1 @@
+539991b72866aafefde98c2ef7c502b3
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.png b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.png
new file mode 100644
index 0000000..cd7ce42
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.map b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.map
new file mode 100644
index 0000000..eb45bee
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.md5
new file mode 100644
index 0000000..0af698b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.md5
@@ -0,0 +1 @@
+b6a8f7aee0d6ad746450143abb373d98
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.png b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.png
new file mode 100644
index 0000000..da1d26b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.map b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.map
new file mode 100644
index 0000000..66aa361
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.md5
new file mode 100644
index 0000000..dff1f82
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.md5
@@ -0,0 +1 @@
+61728ec727cf0b92723e85f09999c99c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.png b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.png
new file mode 100644
index 0000000..889ee69
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch-members.html b/doc/doxygen/html/classFoam_1_1engineSearch-members.html
new file mode 100644
index 0000000..52c5c65
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch-members.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| engineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearch) | Foam::engineSearch | |
| engineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearch) | Foam::engineSearch | |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| TypeName("engine") (defined in Foam::engineSearch) | Foam::engineSearch | |
| TypeName("engine") (defined in Foam::engineSearch) | Foam::engineSearch | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~engineSearch() (defined in Foam::engineSearch) | Foam::engineSearch | |
| ~engineSearch() (defined in Foam::engineSearch) | Foam::engineSearch | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch.html b/doc/doxygen/html/classFoam_1_1engineSearch.html
new file mode 100644
index 0000000..5f538ec
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("engine") |
| + | engineSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
| + | TypeName ("engine") |
| + | engineSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB-members.html b/doc/doxygen/html/classFoam_1_1engineSearchIB-members.html
new file mode 100644
index 0000000..95418c1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB-members.html
@@ -0,0 +1,92 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| engineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearch) | Foam::engineSearch | |
| engineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearch) | Foam::engineSearch | |
| engineSearchIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| engineSearchIB(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearchIB) | Foam::engineSearchIB | [virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearchIB) | Foam::engineSearchIB | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearch) | Foam::engineSearch | [virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| TypeName("engineIB") (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| TypeName("engineIB") (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| TypeName("engine") (defined in Foam::engineSearch) | Foam::engineSearch | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~engineSearch() (defined in Foam::engineSearch) | Foam::engineSearch | |
| ~engineSearch() (defined in Foam::engineSearch) | Foam::engineSearch | |
| ~engineSearchIB() (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| ~engineSearchIB() (defined in Foam::engineSearchIB) | Foam::engineSearchIB | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB.html b/doc/doxygen/html/classFoam_1_1engineSearchIB.html
new file mode 100644
index 0000000..6550183
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("engineIB") |
| + | engineSearchIB (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| + | TypeName ("engineIB") |
| + | engineSearchIB (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.map b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.map
new file mode 100644
index 0000000..c303198
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.md5
new file mode 100644
index 0000000..613d823
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.md5
@@ -0,0 +1 @@
+b80e37fe3719312af848d3140e3cad74
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.png b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.png
new file mode 100644
index 0000000..9a7dedd
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.map b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.map
new file mode 100644
index 0000000..97055e7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.md5
new file mode 100644
index 0000000..357c00b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.md5
@@ -0,0 +1 @@
+53c3c6ef92865894376b351dbd45e503
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.png b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.png
new file mode 100644
index 0000000..4865a49
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda-members.html b/doc/doxygen/html/classFoam_1_1engineSearchLambda-members.html
new file mode 100644
index 0000000..f9dcc4d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda-members.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| engineSearchLambda(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| engineSearchLambda(const dictionary &dict, cfdemCloud &sm) (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | [virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | [virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| TypeName("engine") (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| TypeName("engine") (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~engineSearchLambda() (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| ~engineSearchLambda() (defined in Foam::engineSearchLambda) | Foam::engineSearchLambda | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda.html b/doc/doxygen/html/classFoam_1_1engineSearchLambda.html
new file mode 100644
index 0000000..edd9d68
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("engine") |
| + | engineSearchLambda (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
| + | TypeName ("engine") |
| + | engineSearchLambda (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.map b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.map
new file mode 100644
index 0000000..bba858c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.md5
new file mode 100644
index 0000000..4b2fe1f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.md5
@@ -0,0 +1 @@
+a368c23704ba8693232d021be2374e91
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.png b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.png
new file mode 100644
index 0000000..b6a023a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.map b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.map
new file mode 100644
index 0000000..b21aa6b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.md5
new file mode 100644
index 0000000..2519050
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.md5
@@ -0,0 +1 @@
+e19dea90f4dc21c44cdaf46e6aca109e
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.png b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.png
new file mode 100644
index 0000000..453f7c9
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.map b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.map
new file mode 100644
index 0000000..ddc4159
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.md5
new file mode 100644
index 0000000..3c41079
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.md5
@@ -0,0 +1 @@
+8c2c675764c70667689be26c4327b197
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.png b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.png
new file mode 100644
index 0000000..b9932e1
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.map b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.map
new file mode 100644
index 0000000..9dc2eea
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.md5
new file mode 100644
index 0000000..4f11775
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.md5
@@ -0,0 +1 @@
+9fa7863d58d2bfdde834b059aea2a79a
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.png b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.png
new file mode 100644
index 0000000..1b017ce
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1execute-members.html b/doc/doxygen/html/classFoam_1_1execute-members.html
new file mode 100644
index 0000000..46e678b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute-members.html
@@ -0,0 +1,114 @@
+
+
+
+
+
+| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| command() (defined in Foam::execute) | Foam::execute | [virtual] |
| command() (defined in Foam::execute) | Foam::execute | [virtual] |
| couplingStepInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| dict_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| endTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| execute(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::execute) | Foam::execute | |
| execute(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::execute) | Foam::execute | |
| firstCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| name() (defined in Foam::execute) | Foam::execute | [inline, virtual] |
| name() (defined in Foam::execute) | Foam::execute | [inline, virtual] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| particleCloud_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runCommand(int) (defined in Foam::execute) | Foam::execute | [virtual] |
| runCommand(int) (defined in Foam::execute) | Foam::execute | [virtual] |
| runEveryCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runEveryWriteStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runFirst_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runLast_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| startTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| strCommand_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| timeInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| TypeName("execute") (defined in Foam::execute) | Foam::execute | |
| TypeName("execute") (defined in Foam::execute) | Foam::execute | |
| TypeName("liggghtsCommandModel") (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| updateCommand() (defined in Foam::execute) | Foam::execute | |
| updateCommand() (defined in Foam::execute) | Foam::execute | |
| ~execute() (defined in Foam::execute) | Foam::execute | |
| ~execute() (defined in Foam::execute) | Foam::execute | |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1execute.html b/doc/doxygen/html/classFoam_1_1execute.html
new file mode 100644
index 0000000..79eb1db
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("execute") |
| + | execute (const dictionary &dict, cfdemCloud &sm, int i) |
| +word | name () |
| +const char * | command () |
| +void | updateCommand () |
| +bool | runCommand (int) |
| + | TypeName ("execute") |
| + | execute (const dictionary &dict, cfdemCloud &sm, int i) |
| +word | name () |
| +const char * | command () |
| +void | updateCommand () |
| +bool | runCommand (int) |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1execute__coll__graph.map b/doc/doxygen/html/classFoam_1_1execute__coll__graph.map
new file mode 100644
index 0000000..96d7f06
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1execute__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1execute__coll__graph.md5
new file mode 100644
index 0000000..c02abf7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute__coll__graph.md5
@@ -0,0 +1 @@
+6144fbc93c78d61281fce737714edc8d
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1execute__coll__graph.png b/doc/doxygen/html/classFoam_1_1execute__coll__graph.png
new file mode 100644
index 0000000..46f4b90
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1execute__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1execute__inherit__graph.map b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.map
new file mode 100644
index 0000000..aa7ccf2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1execute__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.md5
new file mode 100644
index 0000000..1299e09
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.md5
@@ -0,0 +1 @@
+e47d9c2ff7f7da39599b2f5af8ce16f9
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1execute__inherit__graph.png b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.png
new file mode 100644
index 0000000..d4617ce
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1execute__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple-members.html b/doc/doxygen/html/classFoam_1_1explicitCouple-members.html
new file mode 100644
index 0000000..b880ffa
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple-members.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| dict_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| explicitCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| explicitCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| expMomSource() const (defined in Foam::explicitCouple) | Foam::explicitCouple | [virtual] |
| expMomSource() const (defined in Foam::explicitCouple) | Foam::explicitCouple | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| particleCloud_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| resetMomSourceField() const (defined in Foam::explicitCouple) | Foam::explicitCouple | [virtual] |
| resetMomSourceField() const (defined in Foam::explicitCouple) | Foam::explicitCouple | [virtual] |
| TypeName("explicitCouple") (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| TypeName("explicitCouple") (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| TypeName("momCoupleModel") (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| ~explicitCouple() (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| ~explicitCouple() (defined in Foam::explicitCouple) | Foam::explicitCouple | |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple.html b/doc/doxygen/html/classFoam_1_1explicitCouple.html
new file mode 100644
index 0000000..0888596
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("explicitCouple") |
| + | explicitCouple (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | expMomSource () const |
| +void | resetMomSourceField () const |
| + | TypeName ("explicitCouple") |
| + | explicitCouple (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | expMomSource () const |
| +void | resetMomSourceField () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.map b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.map
new file mode 100644
index 0000000..afb3a10
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.md5
new file mode 100644
index 0000000..0dcd0f2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.md5
@@ -0,0 +1 @@
+cf914caf36053eccbf06fd31314f702e
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.png b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.png
new file mode 100644
index 0000000..149b03b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.map b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.map
new file mode 100644
index 0000000..f953b28
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.md5
new file mode 100644
index 0000000..9fca7cc
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.md5
@@ -0,0 +1 @@
+ae7e605caa66f7bbb8b905619a462d65
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.png b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.png
new file mode 100644
index 0000000..3a9d6f0
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage-members.html b/doc/doxygen/html/classFoam_1_1fieldTimeAverage-members.html
new file mode 100644
index 0000000..c76cce7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| fieldTimeAverage(const dictionary &dict, cfdemCloud &sm) (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| fieldTimeAverage(const dictionary &dict, cfdemCloud &sm) (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("fieldTimeAverage") (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| TypeName("fieldTimeAverage") (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~fieldTimeAverage() (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| ~fieldTimeAverage() (defined in Foam::fieldTimeAverage) | Foam::fieldTimeAverage | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage.html b/doc/doxygen/html/classFoam_1_1fieldTimeAverage.html
new file mode 100644
index 0000000..2610c96
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("fieldTimeAverage") |
| + | fieldTimeAverage (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("fieldTimeAverage") |
| + | fieldTimeAverage (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.map b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.map
new file mode 100644
index 0000000..8b69bae
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.md5
new file mode 100644
index 0000000..bf5ef2e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.md5
@@ -0,0 +1 @@
+e02a379ef0b2fb9a6c64839bfa9040b3
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.png b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.png
new file mode 100644
index 0000000..f9750c1
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.map b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.map
new file mode 100644
index 0000000..f14c78b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.md5
new file mode 100644
index 0000000..f1d933b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.md5
@@ -0,0 +1 @@
+f70d62b98a796341436f3f525120bb95
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.png b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.png
new file mode 100644
index 0000000..987a342
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1forceModel-members.html b/doc/doxygen/html/classFoam_1_1forceModel-members.html
new file mode 100644
index 0000000..f3d8afe
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel-members.html
@@ -0,0 +1,96 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const =0 (defined in Foam::forceModel) | Foam::forceModel | [pure virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const =0 (defined in Foam::forceModel) | Foam::forceModel | [pure virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModel.html b/doc/doxygen/html/classFoam_1_1forceModel.html
new file mode 100644
index 0000000..c5ea52d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("forceModel") |
| + | declareRunTimeSelectionTable (autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | forceModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setForce (double **const &mask, double **&, double **&, double **&) const =0 |
| +virtual void | manipulateScalarField (volScalarField &) const |
| +word | modelType () |
| +volVectorField & | impParticleForces () const |
| +volVectorField & | expParticleForces () const |
| +const bool & | coupleForce () const |
| + | TypeName ("forceModel") |
| + | declareRunTimeSelectionTable (autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | forceModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setForce (double **const &mask, double **&, double **&, double **&) const =0 |
| +virtual void | manipulateScalarField (volScalarField &) const |
| +word | modelType () |
| +volVectorField & | impParticleForces () const |
| +volVectorField & | expParticleForces () const |
| +const bool & | coupleForce () const |
Static Public Member Functions | |
| +static autoPtr< forceModel > | New (const dictionary &dict, cfdemCloud &sm, word forceType) |
| +static autoPtr< forceModel > | New (const dictionary &dict, cfdemCloud &sm, word forceType) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +Switch | treatExplicit_ |
| +Switch | treatDEM_ |
| +volVectorField | impParticleForces_ |
| +volVectorField | expParticleForces_ |
| +bool | coupleForce_ |
| +const word | modelType_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS-members.html b/doc/doxygen/html/classFoam_1_1forceModelMS-members.html
new file mode 100644
index 0000000..5461757
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS-members.html
@@ -0,0 +1,106 @@
+
+
+
+
+
+| cloudRefMS() const (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| cloudRefMS() const (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| declareRunTimeSelectionTable(autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| forceModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloudMS &sm, word forceType) (defined in Foam::forceModelMS) | Foam::forceModelMS | [static] |
| New(const dictionary &dict, cfdemCloudMS &sm, word forceType) (defined in Foam::forceModelMS) | Foam::forceModelMS | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| particleCloudMS_ (defined in Foam::forceModelMS) | Foam::forceModelMS | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const =0 (defined in Foam::forceModel) | Foam::forceModel | [pure virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const =0 (defined in Foam::forceModel) | Foam::forceModel | [pure virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("forceModelMS") (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| TypeName("forceModelMS") (defined in Foam::forceModelMS) | Foam::forceModelMS | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModelMS() (defined in Foam::forceModelMS) | Foam::forceModelMS | [virtual] |
| ~forceModelMS() (defined in Foam::forceModelMS) | Foam::forceModelMS | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS.html b/doc/doxygen/html/classFoam_1_1forceModelMS.html
new file mode 100644
index 0000000..84f5b89
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("forceModelMS") |
| + | declareRunTimeSelectionTable (autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) |
| + | forceModelMS (const dictionary &dict, cfdemCloudMS &sm) |
| +cfdemCloudMS & | cloudRefMS () const |
| + | TypeName ("forceModelMS") |
| + | declareRunTimeSelectionTable (autoPtr, forceModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) |
| + | forceModelMS (const dictionary &dict, cfdemCloudMS &sm) |
| +cfdemCloudMS & | cloudRefMS () const |
Static Public Member Functions | |
| +static autoPtr< forceModelMS > | New (const dictionary &dict, cfdemCloudMS &sm, word forceType) |
| +static autoPtr< forceModelMS > | New (const dictionary &dict, cfdemCloudMS &sm, word forceType) |
Protected Attributes | |
| +cfdemCloudMS & | particleCloudMS_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.map b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.map
new file mode 100644
index 0000000..0d716a6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.md5
new file mode 100644
index 0000000..a0eace6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.md5
@@ -0,0 +1 @@
+f157d923ae7a985215df96ed52ee6690
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.png b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.png
new file mode 100644
index 0000000..7e616cd
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.map b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.map
new file mode 100644
index 0000000..5ae163a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.md5
new file mode 100644
index 0000000..c5c8442
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.md5
@@ -0,0 +1 @@
+5ccbdfec97430bc3ab5e95a8d631c1cb
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.png b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.png
new file mode 100644
index 0000000..dd54640
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.map
new file mode 100644
index 0000000..974dfa0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.md5
new file mode 100644
index 0000000..6364a38
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.md5
@@ -0,0 +1 @@
+d613087e7860172593cc646dd22a2397
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.png
new file mode 100644
index 0000000..8f899bb
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1forceModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.map
new file mode 100644
index 0000000..b164ad5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.map
@@ -0,0 +1,24 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.md5
new file mode 100644
index 0000000..2fd4312
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.md5
@@ -0,0 +1 @@
+b3696ee044424f547b91a01e69dec35b
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.png
new file mode 100644
index 0000000..78fa1ce
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce-members.html b/doc/doxygen/html/classFoam_1_1gradPForce-members.html
new file mode 100644
index 0000000..99d03f2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| gradPForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::gradPForce) | Foam::gradPForce | |
| gradPForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::gradPForce) | Foam::gradPForce | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::gradPForce) | Foam::gradPForce | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::gradPForce) | Foam::gradPForce | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("gradPForce") (defined in Foam::gradPForce) | Foam::gradPForce | |
| TypeName("gradPForce") (defined in Foam::gradPForce) | Foam::gradPForce | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~gradPForce() (defined in Foam::gradPForce) | Foam::gradPForce | |
| ~gradPForce() (defined in Foam::gradPForce) | Foam::gradPForce |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce.html b/doc/doxygen/html/classFoam_1_1gradPForce.html
new file mode 100644
index 0000000..2fca29d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("gradPForce") |
| + | gradPForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("gradPForce") |
| + | gradPForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.map b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.md5
new file mode 100644
index 0000000..59bb28b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.md5
@@ -0,0 +1 @@
+50955745f535d6b25c2c4e976ed44b0b
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.png b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.png
new file mode 100644
index 0000000..9a6fcaf
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.map b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.map
new file mode 100644
index 0000000..e14740b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.md5
new file mode 100644
index 0000000..8c7d94f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.md5
@@ -0,0 +1 @@
+8cf2518ed9d6c52ea33fbf9e994319b7
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.png b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.png
new file mode 100644
index 0000000..49681a7
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple-members.html b/doc/doxygen/html/classFoam_1_1implicitCouple-members.html
new file mode 100644
index 0000000..bb1c2ab
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple-members.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| dict_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| implicitCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| implicitCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| impMomSource() const (defined in Foam::implicitCouple) | Foam::implicitCouple | [virtual] |
| impMomSource() const (defined in Foam::implicitCouple) | Foam::implicitCouple | [virtual] |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| particleCloud_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| resetMomSourceField() const (defined in Foam::implicitCouple) | Foam::implicitCouple | [virtual] |
| resetMomSourceField() const (defined in Foam::implicitCouple) | Foam::implicitCouple | [virtual] |
| TypeName("implicitCouple") (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| TypeName("implicitCouple") (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| TypeName("momCoupleModel") (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| ~implicitCouple() (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| ~implicitCouple() (defined in Foam::implicitCouple) | Foam::implicitCouple | |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple.html b/doc/doxygen/html/classFoam_1_1implicitCouple.html
new file mode 100644
index 0000000..917f6a6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("implicitCouple") |
| + | implicitCouple (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volScalarField > | impMomSource () const |
| +void | resetMomSourceField () const |
| + | TypeName ("implicitCouple") |
| + | implicitCouple (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volScalarField > | impMomSource () const |
| +void | resetMomSourceField () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.map b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.map
new file mode 100644
index 0000000..afb3a10
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.md5
new file mode 100644
index 0000000..d6602c1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.md5
@@ -0,0 +1 @@
+4e18000ffeae8cf9f214198b46409bac
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.png b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.png
new file mode 100644
index 0000000..66d6512
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.map b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.map
new file mode 100644
index 0000000..f953b28
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.md5
new file mode 100644
index 0000000..e8c3b5c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.md5
@@ -0,0 +1 @@
+9cfd73cc8928f349a4e0f56ce4d2e4ce
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.png b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.png
new file mode 100644
index 0000000..19935f3
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1interface-members.html b/doc/doxygen/html/classFoam_1_1interface-members.html
new file mode 100644
index 0000000..fb55d69
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| interface(const dictionary &dict, cfdemCloud &sm) (defined in Foam::interface) | Foam::interface | |
| interface(const dictionary &dict, cfdemCloud &sm) (defined in Foam::interface) | Foam::interface | |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::interface) | Foam::interface | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::interface) | Foam::interface | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("interface") (defined in Foam::interface) | Foam::interface | |
| TypeName("interface") (defined in Foam::interface) | Foam::interface | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~interface() (defined in Foam::interface) | Foam::interface | |
| ~interface() (defined in Foam::interface) | Foam::interface |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1interface.html b/doc/doxygen/html/classFoam_1_1interface.html
new file mode 100644
index 0000000..5a6d0a5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("interface") |
| + | interface (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("interface") |
| + | interface (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1interface__coll__graph.map b/doc/doxygen/html/classFoam_1_1interface__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1interface__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1interface__coll__graph.md5
new file mode 100644
index 0000000..39bcf4e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface__coll__graph.md5
@@ -0,0 +1 @@
+2461b9bcf0c6ed26db28f17b16b17376
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1interface__coll__graph.png b/doc/doxygen/html/classFoam_1_1interface__coll__graph.png
new file mode 100644
index 0000000..31f6900
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1interface__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1interface__inherit__graph.map b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.map
new file mode 100644
index 0000000..722331b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1interface__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.md5
new file mode 100644
index 0000000..ad1c729
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.md5
@@ -0,0 +1 @@
+44f8057743bde523897491d093f36ee4
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1interface__inherit__graph.png b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.png
new file mode 100644
index 0000000..bbf9f2e
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1interface__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel-members.html b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel-members.html
new file mode 100644
index 0000000..389ad3f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel-members.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| command()=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| command()=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| couplingStepInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| dict_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| endTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| firstCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| name()=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| name()=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| particleCloud_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runCommand(int)=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| runCommand(int)=0 (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [pure virtual] |
| runEveryCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runEveryWriteStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runFirst_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runLast_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| startTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| strCommand_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| timeInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| TypeName("liggghtsCommandModel") (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| TypeName("liggghtsCommandModel") (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel.html b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel.html
new file mode 100644
index 0000000..aa7bb8b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel.html
@@ -0,0 +1,176 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("liggghtsCommandModel") |
| + | declareRunTimeSelectionTable (autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) |
| + | liggghtsCommandModel (const dictionary &dict, cfdemCloud &sm, int i) |
| +virtual const char * | command ()=0 |
| +void | checkTimeMode (dictionary &) |
| +void | checkTimeSettings (dictionary &) |
| +virtual bool | runCommand (int)=0 |
| +bool | runThisCommand (int) |
| +int | nextRun () |
| +int | lastRun () |
| +virtual word | name ()=0 |
| + | TypeName ("liggghtsCommandModel") |
| + | declareRunTimeSelectionTable (autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) |
| + | liggghtsCommandModel (const dictionary &dict, cfdemCloud &sm, int i) |
| +virtual const char * | command ()=0 |
| +void | checkTimeMode (dictionary &) |
| +void | checkTimeSettings (dictionary &) |
| +virtual bool | runCommand (int)=0 |
| +bool | runThisCommand (int) |
| +int | nextRun () |
| +int | lastRun () |
| +virtual word | name ()=0 |
Static Public Member Functions | |
|
+static autoPtr +< liggghtsCommandModel > | New (const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) |
|
+static autoPtr +< liggghtsCommandModel > | New (const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +string | strCommand_ |
| +int | nextRun_ |
| +int | lastRun_ |
| +Switch | runFirst_ |
| +Switch | runLast_ |
| +Switch | runEveryCouplingStep_ |
| +Switch | runEveryWriteStep_ |
| +scalar | startTime_ |
| +scalar | endTime_ |
| +scalar | timeInterval_ |
| +int | firstCouplingStep_ |
| +int | lastCouplingStep_ |
| +int | couplingStepInterval_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.map
new file mode 100644
index 0000000..98a2f30
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.md5
new file mode 100644
index 0000000..31cd17e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.md5
@@ -0,0 +1 @@
+c0807dcad9ce4ba9829dbb5e147e9de9
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.png
new file mode 100644
index 0000000..682a472
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.map
new file mode 100644
index 0000000..d4f4550
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.md5
new file mode 100644
index 0000000..0a79a48
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.md5
@@ -0,0 +1 @@
+08eacc7d1cb0ffd5fd32a0be04b82dfb
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.png
new file mode 100644
index 0000000..310185c
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1locateModel-members.html b/doc/doxygen/html/classFoam_1_1locateModel-members.html
new file mode 100644
index 0000000..22a90c1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel-members.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const =0 (defined in Foam::locateModel) | Foam::locateModel | [pure virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const =0 (defined in Foam::locateModel) | Foam::locateModel | [pure virtual] |
| findSingleCell(vector &position, label &oldCellID) const =0 (defined in Foam::locateModel) | Foam::locateModel | [pure virtual] |
| findSingleCell(vector &position, label &oldCellID) const =0 (defined in Foam::locateModel) | Foam::locateModel | [pure virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1locateModel.html b/doc/doxygen/html/classFoam_1_1locateModel.html
new file mode 100644
index 0000000..0baf640
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel.html
@@ -0,0 +1,124 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("locateModel") |
| + | declareRunTimeSelectionTable (autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | locateModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const =0 |
| +virtual label | findSingleCell (vector &position, label &oldCellID) const =0 |
| + | TypeName ("locateModel") |
| + | declareRunTimeSelectionTable (autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | locateModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const =0 |
| +virtual label | findSingleCell (vector &position, label &oldCellID) const =0 |
Static Public Member Functions | |
| +static autoPtr< locateModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< locateModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.map
new file mode 100644
index 0000000..974dfa0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.md5
new file mode 100644
index 0000000..d1e6efe
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.md5
@@ -0,0 +1 @@
+73a23c434302f020a1415730d956e42c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.png
new file mode 100644
index 0000000..67646e7
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1locateModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.map
new file mode 100644
index 0000000..3697682
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.map
@@ -0,0 +1,7 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.md5
new file mode 100644
index 0000000..ce77b1a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.md5
@@ -0,0 +1 @@
+e2d3e537e7a069cbbfce4969cc4e8779
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.png
new file mode 100644
index 0000000..ad168bf
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel-members.html b/doc/doxygen/html/classFoam_1_1meshMotionModel-members.html
new file mode 100644
index 0000000..b960347
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel-members.html
@@ -0,0 +1,80 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| dict_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| particleCloud_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| setMotion() const =0 (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [pure virtual] |
| setMotion() const =0 (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [pure virtual] |
| TypeName("meshMotionModel") (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| TypeName("meshMotionModel") (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel.html b/doc/doxygen/html/classFoam_1_1meshMotionModel.html
new file mode 100644
index 0000000..91c5ec6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel.html
@@ -0,0 +1,120 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("meshMotionModel") |
| + | declareRunTimeSelectionTable (autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | meshMotionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual tmp< volVectorField > | setMotion () const =0 |
| + | TypeName ("meshMotionModel") |
| + | declareRunTimeSelectionTable (autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | meshMotionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual tmp< volVectorField > | setMotion () const =0 |
Static Public Member Functions | |
| +static autoPtr< meshMotionModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< meshMotionModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.map
new file mode 100644
index 0000000..4eb836e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.md5
new file mode 100644
index 0000000..fc2807b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.md5
@@ -0,0 +1 @@
+6c75d669d49978d7dca38955deb8d5b5
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.png
new file mode 100644
index 0000000..7ce2efe
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.map
new file mode 100644
index 0000000..2fac75d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.md5
new file mode 100644
index 0000000..65ca563
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.md5
@@ -0,0 +1 @@
+132bef07102e526076747fbc5cb01c7c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.png
new file mode 100644
index 0000000..3537822
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel-members.html b/doc/doxygen/html/classFoam_1_1momCoupleModel-members.html
new file mode 100644
index 0000000..70dc956
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel-members.html
@@ -0,0 +1,84 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| dict_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| particleCloud_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| resetMomSourceField() const =0 (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [pure virtual] |
| resetMomSourceField() const =0 (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [pure virtual] |
| TypeName("momCoupleModel") (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| TypeName("momCoupleModel") (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel.html b/doc/doxygen/html/classFoam_1_1momCoupleModel.html
new file mode 100644
index 0000000..a189452
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel.html
@@ -0,0 +1,128 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("momCoupleModel") |
| + | declareRunTimeSelectionTable (autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | momCoupleModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual tmp< volScalarField > | impMomSource () const |
| +virtual tmp< volVectorField > | expMomSource () const |
| +virtual void | resetMomSourceField () const =0 |
| + | TypeName ("momCoupleModel") |
| + | declareRunTimeSelectionTable (autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | momCoupleModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual tmp< volScalarField > | impMomSource () const |
| +virtual tmp< volVectorField > | expMomSource () const |
| +virtual void | resetMomSourceField () const =0 |
Static Public Member Functions | |
| +static autoPtr< momCoupleModel > | New (const dictionary &dict, cfdemCloud &sm, word momCoupleType) |
| +static autoPtr< momCoupleModel > | New (const dictionary &dict, cfdemCloud &sm, word momCoupleType) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.map
new file mode 100644
index 0000000..9ec91a4
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.md5
new file mode 100644
index 0000000..c5ea8d5
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.md5
@@ -0,0 +1 @@
+a583311c1229dc8cf379ea3daceccac4
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.png
new file mode 100644
index 0000000..4158c88
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.map
new file mode 100644
index 0000000..82538da
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.md5
new file mode 100644
index 0000000..56eec5e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.md5
@@ -0,0 +1 @@
+9915d2f36ecc37f3706c25eab36fb5a5
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.png
new file mode 100644
index 0000000..101024a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noCouple-members.html b/doc/doxygen/html/classFoam_1_1noCouple-members.html
new file mode 100644
index 0000000..3c29c01
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple-members.html
@@ -0,0 +1,89 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| declareRunTimeSelectionTable(autoPtr, momCoupleModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| dict_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| expMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| impMomSource() const (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| momCoupleModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word momCoupleType) (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [static] |
| noCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noCouple) | Foam::noCouple | |
| noCouple(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noCouple) | Foam::noCouple | |
| particleCloud_ (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [protected] |
| resetMomSourceField() const (defined in Foam::noCouple) | Foam::noCouple | [virtual] |
| resetMomSourceField() const (defined in Foam::noCouple) | Foam::noCouple | [virtual] |
| TypeName("off") (defined in Foam::noCouple) | Foam::noCouple | |
| TypeName("off") (defined in Foam::noCouple) | Foam::noCouple | |
| TypeName("momCoupleModel") (defined in Foam::momCoupleModel) | Foam::momCoupleModel | |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| ~momCoupleModel() (defined in Foam::momCoupleModel) | Foam::momCoupleModel | [virtual] |
| ~noCouple() (defined in Foam::noCouple) | Foam::noCouple | |
| ~noCouple() (defined in Foam::noCouple) | Foam::noCouple |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noCouple.html b/doc/doxygen/html/classFoam_1_1noCouple.html
new file mode 100644
index 0000000..ddede2a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("off") |
| + | noCouple (const dictionary &dict, cfdemCloud &sm) |
| +void | resetMomSourceField () const |
| + | TypeName ("off") |
| + | noCouple (const dictionary &dict, cfdemCloud &sm) |
| +void | resetMomSourceField () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.map b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.map
new file mode 100644
index 0000000..afb3a10
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.md5
new file mode 100644
index 0000000..136d788
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.md5
@@ -0,0 +1 @@
+158e3a3972fc149db32aea9d0c62fdc6
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.png b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.png
new file mode 100644
index 0000000..e84bd74
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noCouple__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.map b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.map
new file mode 100644
index 0000000..f953b28
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.md5
new file mode 100644
index 0000000..3fd3cdf
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.md5
@@ -0,0 +1 @@
+2642928f7d5b122cc404caa973d1393c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.png b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.png
new file mode 100644
index 0000000..f65306a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange-members.html b/doc/doxygen/html/classFoam_1_1noDataExchange-members.html
new file mode 100644
index 0000000..fa3f4f9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange-members.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [mutable, protected] |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| dict_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::noDataExchange) | Foam::noDataExchange | [inline, virtual] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| noDataExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noDataExchange) | Foam::noDataExchange | |
| noDataExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noDataExchange) | Foam::noDataExchange | |
| particleCloud_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| TypeName("noDataExchange") (defined in Foam::noDataExchange) | Foam::noDataExchange | |
| TypeName("noDataExchange") (defined in Foam::noDataExchange) | Foam::noDataExchange | |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~noDataExchange() (defined in Foam::noDataExchange) | Foam::noDataExchange | |
| ~noDataExchange() (defined in Foam::noDataExchange) | Foam::noDataExchange |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange.html b/doc/doxygen/html/classFoam_1_1noDataExchange.html
new file mode 100644
index 0000000..d3be198
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("noDataExchange") |
| + | noDataExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
| + | TypeName ("noDataExchange") |
| + | noDataExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.map b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.map
new file mode 100644
index 0000000..4017e7b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.md5
new file mode 100644
index 0000000..240bdc7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.md5
@@ -0,0 +1 @@
+62341b4755feee098f6e4e8475e53dbb
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.png b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.png
new file mode 100644
index 0000000..79b6b29
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.map b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.map
new file mode 100644
index 0000000..77c952e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.md5
new file mode 100644
index 0000000..040578e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.md5
@@ -0,0 +1 @@
+980bfe81d80415f3f261e2e780122534
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.png b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.png
new file mode 100644
index 0000000..8da67fc
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noDrag-members.html b/doc/doxygen/html/classFoam_1_1noDrag-members.html
new file mode 100644
index 0000000..d2558ef
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| noDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noDrag) | Foam::noDrag | |
| noDrag(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noDrag) | Foam::noDrag | |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::noDrag) | Foam::noDrag | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::noDrag) | Foam::noDrag | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("off") (defined in Foam::noDrag) | Foam::noDrag | |
| TypeName("off") (defined in Foam::noDrag) | Foam::noDrag | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~noDrag() (defined in Foam::noDrag) | Foam::noDrag | |
| ~noDrag() (defined in Foam::noDrag) | Foam::noDrag |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noDrag.html b/doc/doxygen/html/classFoam_1_1noDrag.html
new file mode 100644
index 0000000..116ac6b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("off") |
| + | noDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("off") |
| + | noDrag (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.map b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.md5
new file mode 100644
index 0000000..cfec971
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.md5
@@ -0,0 +1 @@
+c7b5474d96c5dcdebfcda64d2f9f92bb
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.png b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.png
new file mode 100644
index 0000000..2cfb551
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noDrag__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.map b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.map
new file mode 100644
index 0000000..722331b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.md5
new file mode 100644
index 0000000..ef0a477
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.md5
@@ -0,0 +1 @@
+072503c30e870e42862f83a2d8d596b8
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.png b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.png
new file mode 100644
index 0000000..81cc409
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noIO-members.html b/doc/doxygen/html/classFoam_1_1noIO-members.html
new file mode 100644
index 0000000..e38f6b0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO-members.html
@@ -0,0 +1,88 @@
+
+
+
+
+
+| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| createTimeDir(fileName) const (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| declareRunTimeSelectionTable(autoPtr, IOModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::IOModel) | Foam::IOModel | |
| dict_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| dumpDEMdata() const (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| dumpDEMdata() const (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| IOModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::IOModel) | Foam::IOModel | [static] |
| noIO(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noIO) | Foam::noIO | |
| noIO(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noIO) | Foam::noIO | |
| particleCloud_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| time_ (defined in Foam::IOModel) | Foam::IOModel | [protected] |
| TypeName("off") (defined in Foam::noIO) | Foam::noIO | |
| TypeName("off") (defined in Foam::noIO) | Foam::noIO | |
| TypeName("IOModel") (defined in Foam::IOModel) | Foam::IOModel | |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| ~IOModel() (defined in Foam::IOModel) | Foam::IOModel | [virtual] |
| ~noIO() (defined in Foam::noIO) | Foam::noIO | |
| ~noIO() (defined in Foam::noIO) | Foam::noIO |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noIO.html b/doc/doxygen/html/classFoam_1_1noIO.html
new file mode 100644
index 0000000..2d9ef32
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO.html
@@ -0,0 +1,100 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("off") |
| + | noIO (const dictionary &dict, cfdemCloud &sm) |
| + | TypeName ("off") |
| + | noIO (const dictionary &dict, cfdemCloud &sm) |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noIO__coll__graph.map b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.map
new file mode 100644
index 0000000..95fe564
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noIO__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.md5
new file mode 100644
index 0000000..56967a9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.md5
@@ -0,0 +1 @@
+adb685588129106cb106e518ac4e3d1c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noIO__coll__graph.png b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.png
new file mode 100644
index 0000000..a80b404
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noIO__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.map b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.map
new file mode 100644
index 0000000..dec6bf6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.md5
new file mode 100644
index 0000000..f1c4ad9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.md5
@@ -0,0 +1 @@
+61bc6727e99c5ffa4363cfa34de9970f
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.png b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.png
new file mode 100644
index 0000000..0c0c835
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noIO__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion-members.html b/doc/doxygen/html/classFoam_1_1noMeshMotion-members.html
new file mode 100644
index 0000000..e4365d1
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion-members.html
@@ -0,0 +1,85 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| declareRunTimeSelectionTable(autoPtr, meshMotionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| dict_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| meshMotionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [static] |
| noMeshMotion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noMeshMotion) | Foam::noMeshMotion | |
| noMeshMotion(const dictionary &dict, cfdemCloud &sm) (defined in Foam::noMeshMotion) | Foam::noMeshMotion | |
| particleCloud_ (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [protected] |
| setMotion() const (defined in Foam::noMeshMotion) | Foam::noMeshMotion | [virtual] |
| setMotion() const (defined in Foam::noMeshMotion) | Foam::noMeshMotion | [virtual] |
| TypeName("noMeshMotion") (defined in Foam::noMeshMotion) | Foam::noMeshMotion | |
| TypeName("noMeshMotion") (defined in Foam::noMeshMotion) | Foam::noMeshMotion | |
| TypeName("meshMotionModel") (defined in Foam::meshMotionModel) | Foam::meshMotionModel | |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
| ~meshMotionModel() (defined in Foam::meshMotionModel) | Foam::meshMotionModel | [virtual] |
| ~noMeshMotion() (defined in Foam::noMeshMotion) | Foam::noMeshMotion | |
| ~noMeshMotion() (defined in Foam::noMeshMotion) | Foam::noMeshMotion |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion.html b/doc/doxygen/html/classFoam_1_1noMeshMotion.html
new file mode 100644
index 0000000..234c862
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("noMeshMotion") |
| + | noMeshMotion (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | setMotion () const |
| + | TypeName ("noMeshMotion") |
| + | noMeshMotion (const dictionary &dict, cfdemCloud &sm) |
| +tmp< volVectorField > | setMotion () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.map b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.map
new file mode 100644
index 0000000..9180820
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.md5
new file mode 100644
index 0000000..8e749d2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.md5
@@ -0,0 +1 @@
+3572b711fa504627a9a265e5b8573fa8
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.png b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.png
new file mode 100644
index 0000000..c223aa5
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.map b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.map
new file mode 100644
index 0000000..e9a4ec6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.md5
new file mode 100644
index 0000000..7055a9a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.md5
@@ -0,0 +1 @@
+9668ae87c5426b7e63fd3c9801eecb5e
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.png b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.png
new file mode 100644
index 0000000..49c7796
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK-members.html b/doc/doxygen/html/classFoam_1_1oneWayVTK-members.html
new file mode 100644
index 0000000..89d25ca
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK-members.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [mutable, protected] |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| dict_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [inline, virtual] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [inline, virtual] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::oneWayVTK) | Foam::oneWayVTK | [virtual] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| oneWayVTK(const dictionary &dict, cfdemCloud &sm) (defined in Foam::oneWayVTK) | Foam::oneWayVTK | |
| oneWayVTK(const dictionary &dict, cfdemCloud &sm) (defined in Foam::oneWayVTK) | Foam::oneWayVTK | |
| particleCloud_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| TypeName("oneWayVTK") (defined in Foam::oneWayVTK) | Foam::oneWayVTK | |
| TypeName("oneWayVTK") (defined in Foam::oneWayVTK) | Foam::oneWayVTK | |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~oneWayVTK() (defined in Foam::oneWayVTK) | Foam::oneWayVTK | |
| ~oneWayVTK() (defined in Foam::oneWayVTK) | Foam::oneWayVTK |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK.html b/doc/doxygen/html/classFoam_1_1oneWayVTK.html
new file mode 100644
index 0000000..f6ffd83
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("oneWayVTK") |
| + | oneWayVTK (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
| + | TypeName ("oneWayVTK") |
| + | oneWayVTK (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.map b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.map
new file mode 100644
index 0000000..4017e7b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.md5
new file mode 100644
index 0000000..a3a3b5d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.md5
@@ -0,0 +1 @@
+dc27d21af1e84dd608b7dbadedb35f58
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.png b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.png
new file mode 100644
index 0000000..f76dd79
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.map b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.map
new file mode 100644
index 0000000..77c952e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.md5
new file mode 100644
index 0000000..03b0905
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.md5
@@ -0,0 +1 @@
+0bb56eb3d21d7e8f84dfa183ddaa72c0
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.png b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.png
new file mode 100644
index 0000000..cc5959a
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData-members.html b/doc/doxygen/html/classFoam_1_1readLiggghtsData-members.html
new file mode 100644
index 0000000..aaafddd
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData-members.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeMode(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| checkTimeSettings(dictionary &) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| command() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [virtual] |
| command() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [virtual] |
| couplingStepInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| declareRunTimeSelectionTable(autoPtr, liggghtsCommandModel, dictionary,(const dictionary &dict, cfdemCloud &sm, int i),(dict, sm, i)) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| dict_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| endTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| firstCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| lastRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| liggghtsCommandModel(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| name() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [inline, virtual] |
| name() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [inline, virtual] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word liggghtsCommandType, int i) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [static] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [inline] |
| nextRun_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| particleCloud_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| readLiggghtsData(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | |
| readLiggghtsData(const dictionary &dict, cfdemCloud &sm, int i) (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | |
| runCommand(int) (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [virtual] |
| runCommand(int) (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | [virtual] |
| runEveryCouplingStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runEveryWriteStep_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runFirst_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runLast_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| runThisCommand(int) (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| startTime_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| strCommand_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| timeInterval_ (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [protected] |
| TypeName("readLiggghtsData") (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | |
| TypeName("readLiggghtsData") (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | |
| TypeName("liggghtsCommandModel") (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
| ~liggghtsCommandModel() (defined in Foam::liggghtsCommandModel) | Foam::liggghtsCommandModel | [virtual] |
| ~readLiggghtsData() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData | |
| ~readLiggghtsData() (defined in Foam::readLiggghtsData) | Foam::readLiggghtsData |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData.html b/doc/doxygen/html/classFoam_1_1readLiggghtsData.html
new file mode 100644
index 0000000..be4706a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("readLiggghtsData") |
| + | readLiggghtsData (const dictionary &dict, cfdemCloud &sm, int i) |
| +word | name () |
| +const char * | command () |
| +bool | runCommand (int) |
| + | TypeName ("readLiggghtsData") |
| + | readLiggghtsData (const dictionary &dict, cfdemCloud &sm, int i) |
| +word | name () |
| +const char * | command () |
| +bool | runCommand (int) |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.map b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.map
new file mode 100644
index 0000000..96d7f06
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.md5
new file mode 100644
index 0000000..7298296
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.md5
@@ -0,0 +1 @@
+886d2b32c00d4dc3d69dd46fc920bfc4
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.png b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.png
new file mode 100644
index 0000000..bb95ca0
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.map b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.map
new file mode 100644
index 0000000..aa7ccf2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.md5
new file mode 100644
index 0000000..113798c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.md5
@@ -0,0 +1 @@
+cba1546bb337a2b8252960b4fe35cfc8
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.png b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.png
new file mode 100644
index 0000000..5fee9ee
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1regionModel-members.html b/doc/doxygen/html/classFoam_1_1regionModel-members.html
new file mode 100644
index 0000000..30c2772
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel-members.html
@@ -0,0 +1,93 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| declareRunTimeSelectionTable(autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::regionModel) | Foam::regionModel | |
| defineRegion() const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| defineRegion() const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| dict_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| expandRegion(volVectorField &) const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| expandRegion(volVectorField &) const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| inRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | [static] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion() const (defined in Foam::regionModel) | Foam::regionModel | [inline] |
| outRegion_ (defined in Foam::regionModel) | Foam::regionModel | [mutable, protected] |
| particleCloud_ (defined in Foam::regionModel) | Foam::regionModel | [protected] |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| reAllocArrays() const (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| regionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::regionModel) | Foam::regionModel | |
| resetVolFields(volVectorField &) const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| resetVolFields(volVectorField &) const =0 (defined in Foam::regionModel) | Foam::regionModel | [pure virtual] |
| TypeName("regionModel") (defined in Foam::regionModel) | Foam::regionModel | |
| TypeName("regionModel") (defined in Foam::regionModel) | Foam::regionModel | |
| voidFractionModel (defined in Foam::regionModel) | Foam::regionModel | [friend] |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
| ~regionModel() (defined in Foam::regionModel) | Foam::regionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1regionModel.html b/doc/doxygen/html/classFoam_1_1regionModel.html
new file mode 100644
index 0000000..7b15c1f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("regionModel") |
| + | declareRunTimeSelectionTable (autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | regionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | defineRegion () const =0 |
| +virtual void | expandRegion (volVectorField &) const =0 |
| +virtual void | resetVolFields (volVectorField &) const =0 |
| +void | reAllocArrays () const |
| +double **const & | inRegion () const |
| +double **const & | outRegion () const |
| + | TypeName ("regionModel") |
| + | declareRunTimeSelectionTable (autoPtr, regionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | regionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | defineRegion () const =0 |
| +virtual void | expandRegion (volVectorField &) const =0 |
| +virtual void | resetVolFields (volVectorField &) const =0 |
| +void | reAllocArrays () const |
| +double **const & | inRegion () const |
| +double **const & | outRegion () const |
Static Public Member Functions | |
| +static autoPtr< regionModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< regionModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +double ** | inRegion_ |
| +double ** | outRegion_ |
Friends | |
| +class | voidFractionModel |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.map
new file mode 100644
index 0000000..974dfa0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.md5
new file mode 100644
index 0000000..a874084
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.md5
@@ -0,0 +1 @@
+0bbf099cef0204b4d2ca7045b161538c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.png
new file mode 100644
index 0000000..365598d
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1regionModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.map
new file mode 100644
index 0000000..eea7439
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.md5
new file mode 100644
index 0000000..9cafe35
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.md5
@@ -0,0 +1 @@
+efd9f2f16f133ecee7e66929070be686
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.png
new file mode 100644
index 0000000..f272555
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch-members.html b/doc/doxygen/html/classFoam_1_1standardSearch-members.html
new file mode 100644
index 0000000..986ec9f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch-members.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::standardSearch) | Foam::standardSearch | [virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::standardSearch) | Foam::standardSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::standardSearch) | Foam::standardSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::standardSearch) | Foam::standardSearch | [virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| standardSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::standardSearch) | Foam::standardSearch | |
| standardSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::standardSearch) | Foam::standardSearch | |
| TypeName("standard") (defined in Foam::standardSearch) | Foam::standardSearch | |
| TypeName("standard") (defined in Foam::standardSearch) | Foam::standardSearch | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~standardSearch() (defined in Foam::standardSearch) | Foam::standardSearch | |
| ~standardSearch() (defined in Foam::standardSearch) | Foam::standardSearch |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch.html b/doc/doxygen/html/classFoam_1_1standardSearch.html
new file mode 100644
index 0000000..b3d8f6a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("standard") |
| + | standardSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
| + | TypeName ("standard") |
| + | standardSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.map b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.map
new file mode 100644
index 0000000..68791c8
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.md5
new file mode 100644
index 0000000..6bd6b19
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.md5
@@ -0,0 +1 @@
+c8a6bb6be86d7032c18513cb07622d44
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.png b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.png
new file mode 100644
index 0000000..c157433
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.map b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.map
new file mode 100644
index 0000000..323432f
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.md5
new file mode 100644
index 0000000..c1c9b62
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.md5
@@ -0,0 +1 @@
+feadd054501f437fd05ecf46849aa8d1
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.png b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.png
new file mode 100644
index 0000000..273170b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange-members.html b/doc/doxygen/html/classFoam_1_1totalMomentumExchange-members.html
new file mode 100644
index 0000000..c9a5ab7
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | [virtual] |
| totalMomentumExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | |
| totalMomentumExchange(const dictionary &dict, cfdemCloud &sm) (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("totalMomentumExchange") (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | |
| TypeName("totalMomentumExchange") (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~totalMomentumExchange() (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange | |
| ~totalMomentumExchange() (defined in Foam::totalMomentumExchange) | Foam::totalMomentumExchange |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange.html b/doc/doxygen/html/classFoam_1_1totalMomentumExchange.html
new file mode 100644
index 0000000..7cf8772
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("totalMomentumExchange") |
| + | totalMomentumExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("totalMomentumExchange") |
| + | totalMomentumExchange (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.map b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.map
new file mode 100644
index 0000000..13f2c0d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.md5
new file mode 100644
index 0000000..88fe9c4
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.md5
@@ -0,0 +1 @@
+a34c29b19a838e64e390049529793bd7
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.png b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.png
new file mode 100644
index 0000000..0478c14
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.map b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.map
new file mode 100644
index 0000000..ab512d6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.md5
new file mode 100644
index 0000000..9396bf2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.md5
@@ -0,0 +1 @@
+809a35df970904236ff787b9f822dfaa
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.png b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.png
new file mode 100644
index 0000000..0da0619
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch-members.html b/doc/doxygen/html/classFoam_1_1turboEngineSearch-members.html
new file mode 100644
index 0000000..19350de
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch-members.html
@@ -0,0 +1,87 @@
+
+
+
+
+
+| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| declareRunTimeSelectionTable(autoPtr, locateModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::locateModel) | Foam::locateModel | |
| dict_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | [virtual] |
| findCell(double **const &mask, double **&positions, double **&cellIDs, int size) const (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | [virtual] |
| findSingleCell(vector &position, label &oldCellID) const (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | [virtual] |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| locateModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::locateModel) | Foam::locateModel | [static] |
| particleCloud_ (defined in Foam::locateModel) | Foam::locateModel | [protected] |
| turboEngineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | |
| turboEngineSearch(const dictionary &dict, cfdemCloud &sm) (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | |
| TypeName("turboEngine") (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | |
| TypeName("turboEngine") (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | |
| TypeName("locateModel") (defined in Foam::locateModel) | Foam::locateModel | |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~locateModel() (defined in Foam::locateModel) | Foam::locateModel | [virtual] |
| ~turboEngineSearch() (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch | |
| ~turboEngineSearch() (defined in Foam::turboEngineSearch) | Foam::turboEngineSearch |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch.html b/doc/doxygen/html/classFoam_1_1turboEngineSearch.html
new file mode 100644
index 0000000..84d299c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("turboEngine") |
| + | turboEngineSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
| + | TypeName ("turboEngine") |
| + | turboEngineSearch (const dictionary &dict, cfdemCloud &sm) |
| +label | findCell (double **const &mask, double **&positions, double **&cellIDs, int size) const |
| +label | findSingleCell (vector &position, label &oldCellID) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.map b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.map
new file mode 100644
index 0000000..fe7f9fb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.md5
new file mode 100644
index 0000000..039d031
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.md5
@@ -0,0 +1 @@
+978a5bb74c61f2146dda2bbcda446dac
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.png b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.png
new file mode 100644
index 0000000..4d9af26
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.map b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.map
new file mode 100644
index 0000000..8ccb836
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.md5
new file mode 100644
index 0000000..e26f8ab
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.md5
@@ -0,0 +1 @@
+e8caf178892959026b683ee6b095f12c
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.png b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.png
new file mode 100644
index 0000000..2493f7b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles-members.html b/doc/doxygen/html/classFoam_1_1twoWayFiles-members.html
new file mode 100644
index 0000000..6079f5a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles-members.html
@@ -0,0 +1,127 @@
+
+
+
+
+
+| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couple() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [mutable, protected] |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| dict_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [inline, virtual] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [inline, virtual] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| getNumberOfClumps() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [virtual] |
| giveData(word name, word type, double **const &field, const char *datatype="") const (defined in Foam::twoWayFiles) | Foam::twoWayFiles | [virtual] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| particleCloud_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| twoWayFiles(const dictionary &dict, cfdemCloud &sm) (defined in Foam::twoWayFiles) | Foam::twoWayFiles | |
| twoWayFiles(const dictionary &dict, cfdemCloud &sm) (defined in Foam::twoWayFiles) | Foam::twoWayFiles | |
| TypeName("twoWayFiles") (defined in Foam::twoWayFiles) | Foam::twoWayFiles | |
| TypeName("twoWayFiles") (defined in Foam::twoWayFiles) | Foam::twoWayFiles | |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~twoWayFiles() (defined in Foam::twoWayFiles) | Foam::twoWayFiles | |
| ~twoWayFiles() (defined in Foam::twoWayFiles) | Foam::twoWayFiles |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles.html b/doc/doxygen/html/classFoam_1_1twoWayFiles.html
new file mode 100644
index 0000000..ee8b96a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("twoWayFiles") |
| + | twoWayFiles (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
| + | TypeName ("twoWayFiles") |
| + | twoWayFiles (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype="") const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.map b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.map
new file mode 100644
index 0000000..4017e7b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.md5
new file mode 100644
index 0000000..54106c9
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.md5
@@ -0,0 +1 @@
+a4a34028fcd2f89b5cc05485d43c0bc6
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.png b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.png
new file mode 100644
index 0000000..4e5a85c
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.map b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.map
new file mode 100644
index 0000000..77c952e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.md5
new file mode 100644
index 0000000..c1a74db
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.md5
@@ -0,0 +1 @@
+13ac6809c9e4ee807968deefead62bc2
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.png b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.png
new file mode 100644
index 0000000..fc7e67e
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI-members.html b/doc/doxygen/html/classFoam_1_1twoWayMPI-members.html
new file mode 100644
index 0000000..a820c10
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI-members.html
@@ -0,0 +1,133 @@
+
+
+
+
+
+| allocateArray(double **&, double, int, int=-1) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| allocateArray(double **&, double, int, int) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| allocateArray(double **&, double, int, const char *="nparticles") const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| allocateArray(int **&, int, int, int) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| allocateArray(int **&, int, int, const char *="nparticles") const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| allocateArray(double **&, double, int, int=-1) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| checkTSsize() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couple() const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| couple() const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| couple() const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingInterval_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| couplingStep_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [mutable, protected] |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| dataExchangeModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| declareRunTimeSelectionTable(autoPtr, dataExchangeModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| DEMts_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| dict_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| doCoupleNow() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getData(word name, word type, double **const &field, label step) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| getData(word name, word type, int **const &field, label step) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| getData(word name, word type, T **const &field) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| getNumberOfClumps() const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| getScalarData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| getScalarData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| getVectorData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| getVectorData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| giveData(word name, word type, double **const &field, const char *datatype) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | [virtual] |
| giveScalarData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| giveScalarData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| giveVectorData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| giveVectorData(word name, double **const &field) const (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| maxNumberOfParticles_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| nClumpTypes_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [static] |
| particleCloud_ (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| readDEMtsfromDict(dictionary &propsDict) (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [inline] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| setNumberOfParticles(int) const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [protected] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| timeStepFraction() const (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| twoWayMPI(const dictionary &dict, cfdemCloud &sm) (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| twoWayMPI(const dictionary &dict, cfdemCloud &sm) (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| twoWayMPI(const dictionary &dict, cfdemCloud &sm) (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| TypeName("twoWayMPI") (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| TypeName("twoWayMPI") (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| TypeName("twoWayMPI") (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| TypeName("dataExchangeModel") (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~dataExchangeModel() (defined in Foam::dataExchangeModel) | Foam::dataExchangeModel | [virtual] |
| ~twoWayMPI() (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| ~twoWayMPI() (defined in Foam::twoWayMPI) | Foam::twoWayMPI | |
| ~twoWayMPI() (defined in Foam::twoWayMPI) | Foam::twoWayMPI |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI.html b/doc/doxygen/html/classFoam_1_1twoWayMPI.html
new file mode 100644
index 0000000..13b36eb
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("twoWayMPI") |
| + | twoWayMPI (const dictionary &dict, cfdemCloud &sm) |
| +void | getScalarData (word name, double **const &field) const |
| +void | getVectorData (word name, double **const &field) const |
| +void | giveScalarData (word name, double **const &field) const |
| +void | giveVectorData (word name, double **const &field) const |
| +void | allocateArray (double **&, double, int, int=-1) const |
| +bool | couple () const |
| + | TypeName ("twoWayMPI") |
| + | twoWayMPI (const dictionary &dict, cfdemCloud &sm) |
| +void | getData (word name, word type, double **const &field, label step) const |
| +void | getData (word name, word type, int **const &field, label step) const |
| +void | giveData (word name, word type, double **const &field, const char *datatype) const |
| +void | allocateArray (double **&, double, int, int) const |
| +void | allocateArray (double **&, double, int, const char *="nparticles") const |
| +void | allocateArray (int **&, int, int, int) const |
| +void | allocateArray (int **&, int, int, const char *="nparticles") const |
| +bool | couple () const |
| +int | getNumberOfClumps () const |
| + | TypeName ("twoWayMPI") |
| + | twoWayMPI (const dictionary &dict, cfdemCloud &sm) |
| +void | getScalarData (word name, double **const &field) const |
| +void | getVectorData (word name, double **const &field) const |
| +void | giveScalarData (word name, double **const &field) const |
| +void | giveVectorData (word name, double **const &field) const |
| +void | allocateArray (double **&, double, int, int=-1) const |
| +bool | couple () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.map b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.map
new file mode 100644
index 0000000..4017e7b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.md5
new file mode 100644
index 0000000..517fe87
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.md5
@@ -0,0 +1 @@
+41b57f6e08abb6849a39d3bb1a75a416
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.png b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.png
new file mode 100644
index 0000000..b92db7b
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.map b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.map
new file mode 100644
index 0000000..77c952e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.md5
new file mode 100644
index 0000000..8bf5689
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.md5
@@ -0,0 +1 @@
+bf70bd0c2d2a5c787b02f87ae5c49fd9
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.png b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.png
new file mode 100644
index 0000000..0bcef76
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce-members.html b/doc/doxygen/html/classFoam_1_1virtualMassForce-members.html
new file mode 100644
index 0000000..85c9301
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce-members.html
@@ -0,0 +1,103 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| reAllocArrays() const (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| reAllocArrays() const (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::virtualMassForce) | Foam::virtualMassForce | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::virtualMassForce) | Foam::virtualMassForce | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("virtualMassForce") (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| TypeName("virtualMassForce") (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| virtualMassForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| virtualMassForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~virtualMassForce() (defined in Foam::virtualMassForce) | Foam::virtualMassForce | |
| ~virtualMassForce() (defined in Foam::virtualMassForce) | Foam::virtualMassForce |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce.html b/doc/doxygen/html/classFoam_1_1virtualMassForce.html
new file mode 100644
index 0000000..221266a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce.html
@@ -0,0 +1,108 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("virtualMassForce") |
| + | virtualMassForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | reAllocArrays () const |
| + | TypeName ("virtualMassForce") |
| + | virtualMassForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| +void | reAllocArrays () const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.map b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.map
new file mode 100644
index 0000000..8b69bae
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.md5
new file mode 100644
index 0000000..218a945
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.md5
@@ -0,0 +1 @@
+f39377a4cadf591314f3fd842f191764
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.png b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.png
new file mode 100644
index 0000000..2707574
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.map b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.map
new file mode 100644
index 0000000..f14c78b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.md5
new file mode 100644
index 0000000..f0ee76c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.md5
@@ -0,0 +1 @@
+3ed2ba5ba71b7e2cfbbbfe005ee3b00b
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.png b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.png
new file mode 100644
index 0000000..e6548e2
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1viscForce-members.html b/doc/doxygen/html/classFoam_1_1viscForce-members.html
new file mode 100644
index 0000000..539488d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::viscForce) | Foam::viscForce | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::viscForce) | Foam::viscForce | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("viscForce") (defined in Foam::viscForce) | Foam::viscForce | |
| TypeName("viscForce") (defined in Foam::viscForce) | Foam::viscForce | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| viscForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::viscForce) | Foam::viscForce | |
| viscForce(const dictionary &dict, cfdemCloud &sm) (defined in Foam::viscForce) | Foam::viscForce | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~viscForce() (defined in Foam::viscForce) | Foam::viscForce | |
| ~viscForce() (defined in Foam::viscForce) | Foam::viscForce |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1viscForce.html b/doc/doxygen/html/classFoam_1_1viscForce.html
new file mode 100644
index 0000000..2553117
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("viscForce") |
| + | viscForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("viscForce") |
| + | viscForce (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.map b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.map
new file mode 100644
index 0000000..a083fe2
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.md5
new file mode 100644
index 0000000..42c079b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.md5
@@ -0,0 +1 @@
+7c2c1d374588c2da1a5d3520ab8298f5
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.png b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.png
new file mode 100644
index 0000000..492d844
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1viscForce__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.map b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.map
new file mode 100644
index 0000000..722331b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.md5
new file mode 100644
index 0000000..5859f03
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.md5
@@ -0,0 +1 @@
+f5aec64a71d1a476aa88c885e138d9fb
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.png b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.png
new file mode 100644
index 0000000..c0c2855
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel-members.html b/doc/doxygen/html/classFoam_1_1voidFractionModel-members.html
new file mode 100644
index 0000000..89d288c
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel-members.html
@@ -0,0 +1,96 @@
+
+
+
+
+
+| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const =0 (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [pure virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const =0 (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [pure virtual] |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel.html b/doc/doxygen/html/classFoam_1_1voidFractionModel.html
new file mode 100644
index 0000000..87a995d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("voidFractionModel") |
| + | declareRunTimeSelectionTable (autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | voidFractionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setvoidFraction (double **const &, double **&, double **&, double **&) const =0 |
| +tmp< volScalarField > | voidFractionInterp () const |
| +void | resetVoidFractions () const |
| +void | undoVoidFractions (double **const &) const |
| +double **const & | cellsPerParticle () const |
| +int | maxCellsPerParticle () const |
| +void | reAllocArrays () const |
| + | TypeName ("voidFractionModel") |
| + | declareRunTimeSelectionTable (autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) |
| + | voidFractionModel (const dictionary &dict, cfdemCloud &sm) |
| +virtual void | setvoidFraction (double **const &, double **&, double **&, double **&) const =0 |
| +tmp< volScalarField > | voidFractionInterp () const |
| +void | resetVoidFractions () const |
| +void | undoVoidFractions (double **const &) const |
| +double **const & | cellsPerParticle () const |
| +int | maxCellsPerParticle () const |
| +void | reAllocArrays () const |
Static Public Member Functions | |
| +static autoPtr< voidFractionModel > | New (const dictionary &dict, cfdemCloud &sm) |
| +static autoPtr< voidFractionModel > | New (const dictionary &dict, cfdemCloud &sm) |
Protected Attributes | |
| +const dictionary & | dict_ |
| +cfdemCloud & | particleCloud_ |
| +volScalarField | voidfractionPrev_ |
| +volScalarField | voidfractionNext_ |
| +double ** | cellsPerParticle_ |
| +int | maxCellsPerParticle_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS-members.html b/doc/doxygen/html/classFoam_1_1voidFractionModelMS-members.html
new file mode 100644
index 0000000..d1fb39a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS-members.html
@@ -0,0 +1,107 @@
+
+
+
+
+
+| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| cellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| cloudRefMS() const (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| cloudRefMS() const (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| declareRunTimeSelectionTable(autoPtr, voidFractionModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| dict_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| maxCellsPerParticle_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| New(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [static] |
| New(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [static] |
| New(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [static] |
| particleCloud_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [protected] |
| particleCloudMS_ (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [protected] |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| reAllocArrays() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| resetVoidFractions() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| setvoidFraction(double **const &, double **&, double **&, double **&) const =0 (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [pure virtual] |
| setvoidFraction(double **const &, double **&, double **&, double **&) const =0 (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [pure virtual] |
| TypeName("voidFractionModelMS") (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| TypeName("voidFractionModelMS") (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| TypeName("voidFractionModel") (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| undoVoidFractions(double **const &) const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionInterp() const (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::voidFractionModel) | Foam::voidFractionModel | |
| voidFractionModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| voidFractionModelMS(const dictionary &dict, cfdemCloudMS &sm) (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | |
| voidfractionNext_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| voidfractionPrev_ (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [mutable, protected] |
| volClump_ (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [protected] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModel() (defined in Foam::voidFractionModel) | Foam::voidFractionModel | [virtual] |
| ~voidFractionModelMS() (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [virtual] |
| ~voidFractionModelMS() (defined in Foam::voidFractionModelMS) | Foam::voidFractionModelMS | [virtual] |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS.html b/doc/doxygen/html/classFoam_1_1voidFractionModelMS.html
new file mode 100644
index 0000000..886edf6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS.html
@@ -0,0 +1,122 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("voidFractionModelMS") |
| + | declareRunTimeSelectionTable (autoPtr, voidFractionModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) |
| + | voidFractionModelMS (const dictionary &dict, cfdemCloudMS &sm) |
| +cfdemCloudMS & | cloudRefMS () const |
| + | TypeName ("voidFractionModelMS") |
| + | declareRunTimeSelectionTable (autoPtr, voidFractionModelMS, dictionary,(const dictionary &dict, cfdemCloudMS &sm),(dict, sm)) |
| + | voidFractionModelMS (const dictionary &dict, cfdemCloudMS &sm) |
| +cfdemCloudMS & | cloudRefMS () const |
Static Public Member Functions | |
|
+static autoPtr +< voidFractionModelMS > | New (const dictionary &dict, cfdemCloudMS &sm) |
|
+static autoPtr +< voidFractionModelMS > | New (const dictionary &dict, cfdemCloudMS &sm) |
Protected Attributes | |
| +cfdemCloudMS & | particleCloudMS_ |
| +scalar | volClump_ |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.map b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.map
new file mode 100644
index 0000000..65b8b40
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.md5
new file mode 100644
index 0000000..644e4a6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.md5
@@ -0,0 +1 @@
+afb9c542458844848be200cb1e01b1f5
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.png b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.png
new file mode 100644
index 0000000..c25a247
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.map b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.map
new file mode 100644
index 0000000..3ffa1c6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.md5
new file mode 100644
index 0000000..e17a98b
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.md5
@@ -0,0 +1 @@
+2a7856f532ffe5921b22123cc1380e28
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.png b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.png
new file mode 100644
index 0000000..12f7228
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.map b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.map
new file mode 100644
index 0000000..4eb836e
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.md5
new file mode 100644
index 0000000..5635570
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.md5
@@ -0,0 +1 @@
+2a1a6caa1bf4c922472b5df2675eee71
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.png b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.png
new file mode 100644
index 0000000..445e6e9
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.map b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.map
new file mode 100644
index 0000000..566b5c6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.map
@@ -0,0 +1,8 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.md5
new file mode 100644
index 0000000..deee53d
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.md5
@@ -0,0 +1 @@
+b589b883e17f321375d29bfc4c872057
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.png b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.png
new file mode 100644
index 0000000..6ee2820
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage-members.html b/doc/doxygen/html/classFoam_1_1volWeightedAverage-members.html
new file mode 100644
index 0000000..8f17e86
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage-members.html
@@ -0,0 +1,101 @@
+
+
+
+
+
+| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| coupleForce_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| declareRunTimeSelectionTable(autoPtr, forceModel, dictionary,(const dictionary &dict, cfdemCloud &sm),(dict, sm)) (defined in Foam::forceModel) | Foam::forceModel | |
| dict_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| expParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| forceModel(const dictionary &dict, cfdemCloud &sm) (defined in Foam::forceModel) | Foam::forceModel | |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces() const (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| impParticleForces_ (defined in Foam::forceModel) | Foam::forceModel | [mutable, protected] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| manipulateScalarField(volScalarField &) const (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType() (defined in Foam::forceModel) | Foam::forceModel | [inline] |
| modelType_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| New(const dictionary &dict, cfdemCloud &sm, word forceType) (defined in Foam::forceModel) | Foam::forceModel | [static] |
| particleCloud_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | [virtual] |
| setForce(double **const &mask, double **&, double **&, double **&) const (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | [virtual] |
| treatDEM_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| treatExplicit_ (defined in Foam::forceModel) | Foam::forceModel | [protected] |
| TypeName("volWeightedAverage") (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | |
| TypeName("volWeightedAverage") (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | |
| TypeName("forceModel") (defined in Foam::forceModel) | Foam::forceModel | |
| volWeightedAverage(const dictionary &dict, cfdemCloud &sm) (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | |
| volWeightedAverage(const dictionary &dict, cfdemCloud &sm) (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~forceModel() (defined in Foam::forceModel) | Foam::forceModel | [virtual] |
| ~volWeightedAverage() (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage | |
| ~volWeightedAverage() (defined in Foam::volWeightedAverage) | Foam::volWeightedAverage |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage.html b/doc/doxygen/html/classFoam_1_1volWeightedAverage.html
new file mode 100644
index 0000000..75e11a6
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage.html
@@ -0,0 +1,104 @@
+
+
+
+
+
+

Public Member Functions | |
| + | TypeName ("volWeightedAverage") |
| + | volWeightedAverage (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
| + | TypeName ("volWeightedAverage") |
| + | volWeightedAverage (const dictionary &dict, cfdemCloud &sm) |
| +void | setForce (double **const &mask, double **&, double **&, double **&) const |
1.6.3
+
+
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.map b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.map
new file mode 100644
index 0000000..241a430
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.map
@@ -0,0 +1,4 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.md5 b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.md5
new file mode 100644
index 0000000..4c9eb13
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.md5
@@ -0,0 +1 @@
+1793e8240ec4fb1a2588876ff2ca334a
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.png b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.png
new file mode 100644
index 0000000..b44904f
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.png differ
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.map b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.map
new file mode 100644
index 0000000..775f28a
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.map
@@ -0,0 +1,3 @@
+
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.md5 b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.md5
new file mode 100644
index 0000000..6ea4cc0
--- /dev/null
+++ b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.md5
@@ -0,0 +1 @@
+30bfeaefd193ca1d28745e83b10a8dbc
\ No newline at end of file
diff --git a/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.png b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.png
new file mode 100644
index 0000000..b96e5df
Binary files /dev/null and b/doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.png differ
diff --git a/doc/doxygen/html/classes.html b/doc/doxygen/html/classes.html
new file mode 100644
index 0000000..15a67f0
--- /dev/null
+++ b/doc/doxygen/html/classes.html
@@ -0,0 +1,85 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/debugInfo_8H_source.html b/doc/doxygen/html/debugInfo_8H_source.html
new file mode 100644
index 0000000..a4b092c
--- /dev/null
+++ b/doc/doxygen/html/debugInfo_8H_source.html
@@ -0,0 +1,182 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/derived_2cfdemCloudIB_2cfdemCloudIB_8H_source.html b/doc/doxygen/html/derived_2cfdemCloudIB_2cfdemCloudIB_8H_source.html
new file mode 100644
index 0000000..6c56d12
--- /dev/null
+++ b/doc/doxygen/html/derived_2cfdemCloudIB_2cfdemCloudIB_8H_source.html
@@ -0,0 +1,150 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMSI_8H_source.html b/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMSI_8H_source.html
new file mode 100644
index 0000000..253574a
--- /dev/null
+++ b/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMSI_8H_source.html
@@ -0,0 +1,130 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMS_8H_source.html b/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMS_8H_source.html
new file mode 100644
index 0000000..49dbc5d
--- /dev/null
+++ b/doc/doxygen/html/derived_2cfdemCloudMS_2cfdemCloudMS_8H_source.html
@@ -0,0 +1,216 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/doxygen.css b/doc/doxygen/html/doxygen.css
new file mode 100644
index 0000000..d6aaf28
--- /dev/null
+++ b/doc/doxygen/html/doxygen.css
@@ -0,0 +1,545 @@
+/* The standard CSS for doxygen */
+
+body, table, div, p, dl {
+ font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
+ font-size: 12px;
+}
+
+/* @group Heading Levels */
+
+h1 {
+ text-align: center;
+ font-size: 150%;
+}
+
+h2 {
+ font-size: 120%;
+}
+
+h3 {
+ font-size: 100%;
+}
+
+dt {
+ font-weight: bold;
+}
+
+div.multicol {
+ -moz-column-gap: 1em;
+ -webkit-column-gap: 1em;
+ -moz-column-count: 3;
+ -webkit-column-count: 3;
+}
+
+p.startli, p.startdd, p.starttd {
+ margin-top: 2px;
+}
+
+p.endli {
+ margin-bottom: 0px;
+}
+
+p.enddd {
+ margin-bottom: 4px;
+}
+
+p.endtd {
+ margin-bottom: 2px;
+}
+
+/* @end */
+
+caption {
+ font-weight: bold;
+}
+
+span.legend {
+ font-size: 70%;
+ text-align: center;
+}
+
+h3.version {
+ font-size: 90%;
+ text-align: center;
+}
+
+div.qindex, div.navtab{
+ background-color: #e8eef2;
+ border: 1px solid #84b0c7;
+ text-align: center;
+ margin: 2px;
+ padding: 2px;
+}
+
+div.qindex, div.navpath {
+ width: 100%;
+ line-height: 140%;
+}
+
+div.navtab {
+ margin-right: 15px;
+}
+
+/* @group Link Styling */
+
+a {
+ color: #153788;
+ font-weight: normal;
+ text-decoration: none;
+}
+
+.contents a:visited {
+ color: #1b77c5;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+a.qindex {
+ font-weight: bold;
+}
+
+a.qindexHL {
+ font-weight: bold;
+ background-color: #6666cc;
+ color: #ffffff;
+ border: 1px double #9295C2;
+}
+
+.contents a.qindexHL:visited {
+ color: #ffffff;
+}
+
+a.el {
+ font-weight: bold;
+}
+
+a.elRef {
+}
+
+a.code {
+ color: #3030f0;
+}
+
+a.codeRef {
+ color: #3030f0;
+}
+
+/* @end */
+
+dl.el {
+ margin-left: -1cm;
+}
+
+.fragment {
+ font-family: monospace, fixed;
+ font-size: 105%;
+}
+
+pre.fragment {
+ border: 1px solid #CCCCCC;
+ background-color: #f5f5f5;
+ padding: 4px 6px;
+ margin: 4px 8px 4px 2px;
+ overflow: auto;
+ word-wrap: break-word;
+ font-size: 9pt;
+ line-height: 125%;
+}
+
+div.ah {
+ background-color: black;
+ font-weight: bold;
+ color: #ffffff;
+ margin-bottom: 3px;
+ margin-top: 3px
+}
+
+div.groupHeader {
+ margin-left: 16px;
+ margin-top: 12px;
+ margin-bottom: 6px;
+ font-weight: bold;
+}
+
+div.groupText {
+ margin-left: 16px;
+ font-style: italic;
+}
+
+body {
+ background: white;
+ color: black;
+ margin-right: 20px;
+ margin-left: 20px;
+}
+
+td.indexkey {
+ background-color: #e8eef2;
+ font-weight: bold;
+ border: 1px solid #CCCCCC;
+ margin: 2px 0px 2px 0;
+ padding: 2px 10px;
+}
+
+td.indexvalue {
+ background-color: #e8eef2;
+ border: 1px solid #CCCCCC;
+ padding: 2px 10px;
+ margin: 2px 0px;
+}
+
+tr.memlist {
+ background-color: #f0f0f0;
+}
+
+p.formulaDsp {
+ text-align: center;
+}
+
+img.formulaDsp {
+
+}
+
+img.formulaInl {
+ vertical-align: middle;
+}
+
+div.center {
+ text-align: center;
+ margin-top: 0px;
+ margin-bottom: 0px;
+ padding: 0px;
+}
+
+div.center img {
+ border: 0px;
+}
+
+img.footer {
+ border: 0px;
+ vertical-align: middle;
+}
+
+/* @group Code Colorization */
+
+span.keyword {
+ color: #008000
+}
+
+span.keywordtype {
+ color: #604020
+}
+
+span.keywordflow {
+ color: #e08000
+}
+
+span.comment {
+ color: #800000
+}
+
+span.preprocessor {
+ color: #806020
+}
+
+span.stringliteral {
+ color: #002080
+}
+
+span.charliteral {
+ color: #008080
+}
+
+span.vhdldigit {
+ color: #ff00ff
+}
+
+span.vhdlchar {
+ color: #000000
+}
+
+span.vhdlkeyword {
+ color: #700070
+}
+
+span.vhdllogic {
+ color: #ff0000
+}
+
+/* @end */
+
+.search {
+ color: #003399;
+ font-weight: bold;
+}
+
+form.search {
+ margin-bottom: 0px;
+ margin-top: 0px;
+}
+
+input.search {
+ font-size: 75%;
+ color: #000080;
+ font-weight: normal;
+ background-color: #e8eef2;
+}
+
+td.tiny {
+ font-size: 75%;
+}
+
+.dirtab {
+ padding: 4px;
+ border-collapse: collapse;
+ border: 1px solid #84b0c7;
+}
+
+th.dirtab {
+ background: #e8eef2;
+ font-weight: bold;
+}
+
+hr {
+ height: 0px;
+ border: none;
+ border-top: 1px solid #666;
+}
+
+hr.footer {
+ height: 1px;
+}
+
+/* @group Member Descriptions */
+
+.mdescLeft, .mdescRight,
+.memItemLeft, .memItemRight,
+.memTemplItemLeft, .memTemplItemRight, .memTemplParams {
+ background-color: #FAFAFA;
+ border: none;
+ margin: 4px;
+ padding: 1px 0 0 8px;
+}
+
+.mdescLeft, .mdescRight {
+ padding: 0px 8px 4px 8px;
+ color: #555;
+}
+
+.memItemLeft, .memItemRight, .memTemplParams {
+ border-top: 1px solid #ccc;
+}
+
+.memItemLeft, .memTemplItemLeft {
+ white-space: nowrap;
+}
+
+.memTemplParams {
+ color: #606060;
+ white-space: nowrap;
+}
+
+/* @end */
+
+/* @group Member Details */
+
+/* Styles for detailed member documentation */
+
+.memtemplate {
+ font-size: 80%;
+ color: #606060;
+ font-weight: normal;
+ margin-left: 3px;
+}
+
+.memnav {
+ background-color: #e8eef2;
+ border: 1px solid #84b0c7;
+ text-align: center;
+ margin: 2px;
+ margin-right: 15px;
+ padding: 2px;
+}
+
+.memitem {
+ padding: 0;
+ margin-bottom: 10px;
+}
+
+.memname {
+ white-space: nowrap;
+ font-weight: bold;
+ margin-left: 6px;
+}
+
+.memproto {
+ border-top: 1px solid #84b0c7;
+ border-left: 1px solid #84b0c7;
+ border-right: 1px solid #84b0c7;
+ padding: 0;
+ background-color: #d5e1e8;
+ font-weight: bold;
+ /* firefox specific markup */
+ background-image: -moz-linear-gradient(rgba(228, 233, 245, 1.0) 0%, rgba(193, 205, 232, 1.0) 100%);
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
+ -moz-border-radius-topright: 8px;
+ -moz-border-radius-topleft: 8px;
+ /* webkit specific markup */
+ background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(228, 233, 245, 1.0)), to(rgba(193, 205, 232, 1.0)));
+ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+ -webkit-border-top-right-radius: 8px;
+ -webkit-border-top-left-radius: 8px;
+
+}
+
+.memdoc {
+ border-bottom: 1px solid #84b0c7;
+ border-left: 1px solid #84b0c7;
+ border-right: 1px solid #84b0c7;
+ padding: 2px 5px;
+ background-color: #eef3f5;
+ border-top-width: 0;
+ /* firefox specific markup */
+ -moz-border-radius-bottomleft: 8px;
+ -moz-border-radius-bottomright: 8px;
+ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
+ /* webkit specific markup */
+ -webkit-border-bottom-left-radius: 8px;
+ -webkit-border-bottom-right-radius: 8px;
+ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
+}
+
+.paramkey {
+ text-align: right;
+}
+
+.paramtype {
+ white-space: nowrap;
+}
+
+.paramname {
+ color: #602020;
+ white-space: nowrap;
+}
+.paramname em {
+ font-style: normal;
+}
+
+/* @end */
+
+/* @group Directory (tree) */
+
+/* for the tree view */
+
+.ftvtree {
+ font-family: sans-serif;
+ margin: 0.5em;
+}
+
+/* these are for tree view when used as main index */
+
+.directory {
+ font-size: 9pt;
+ font-weight: bold;
+}
+
+.directory h3 {
+ margin: 0px;
+ margin-top: 1em;
+ font-size: 11pt;
+}
+
+/*
+The following two styles can be used to replace the root node title
+with an image of your choice. Simply uncomment the next two styles,
+specify the name of your image and be sure to set 'height' to the
+proper pixel height of your image.
+*/
+
+/*
+.directory h3.swap {
+ height: 61px;
+ background-repeat: no-repeat;
+ background-image: url("yourimage.gif");
+}
+.directory h3.swap span {
+ display: none;
+}
+*/
+
+.directory > h3 {
+ margin-top: 0;
+}
+
+.directory p {
+ margin: 0px;
+ white-space: nowrap;
+}
+
+.directory div {
+ display: none;
+ margin: 0px;
+}
+
+.directory img {
+ vertical-align: -30%;
+}
+
+/* these are for tree view when not used as main index */
+
+.directory-alt {
+ font-size: 100%;
+ font-weight: bold;
+}
+
+.directory-alt h3 {
+ margin: 0px;
+ margin-top: 1em;
+ font-size: 11pt;
+}
+
+.directory-alt > h3 {
+ margin-top: 0;
+}
+
+.directory-alt p {
+ margin: 0px;
+ white-space: nowrap;
+}
+
+.directory-alt div {
+ display: none;
+ margin: 0px;
+}
+
+.directory-alt img {
+ vertical-align: -30%;
+}
+
+/* @end */
+
+address {
+ font-style: normal;
+ color: #333;
+}
+
+table.doxtable {
+ border-collapse:collapse;
+}
+
+table.doxtable td, table.doxtable th {
+ border: 1px solid #153788;
+ padding: 3px 7px 2px;
+}
+
+table.doxtable th {
+ background-color: #254798;
+ color: #FFFFFF;
+ font-size: 110%;
+ padding-bottom: 4px;
+ padding-top: 5px;
+ text-align:left;
+}
+
diff --git a/doc/doxygen/html/doxygen.png b/doc/doxygen/html/doxygen.png
new file mode 100644
index 0000000..f0a274b
Binary files /dev/null and b/doc/doxygen/html/doxygen.png differ
diff --git a/doc/doxygen/html/files.html b/doc/doxygen/html/files.html
new file mode 100644
index 0000000..8dddb6a
--- /dev/null
+++ b/doc/doxygen/html/files.html
@@ -0,0 +1,205 @@
+
+
+
+
+
+| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloud.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdemCloud/cfdemCloudI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/debugInfo.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/solverDebugInfo.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/cfdTools/versionInfo.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/derived/cfdemCloudIB/cfdemCloudIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/derived/cfdemCloudMS/cfdemCloudMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/derived/cfdemCloudMS/cfdemCloudMSI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/allRegion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/Archimedes.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/ArchimedesIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/averagingModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/basicIO.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/bigParticleVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/centreVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/cfdemCloud.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/cfdemCloudI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/cfdemCloudIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/cfdemCloudMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/cfdemCloudMSI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/dataExchangeModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DEMdrivenMeshMotion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/dense.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DiFeliceDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/DiFeliceDragMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/differentialRegion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/dilute.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/dividedVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/dividedVoidFractionMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/engineSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/engineSearchIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/engineSearchLambda.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/execute.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/explicitCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/fieldTimeAverage.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/forceModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/forceModelMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/GaussVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/GidaspowDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/gradPForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/implicitCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/interface.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/IOModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/KochHillDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/KochHillDrag2.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/LaEuScalarDust.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/LaEuScalarTemp.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/liggghtsCommandModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/locateModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/MeiLift.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/meshMotionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/momCoupleModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/noCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/noDataExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/noDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/noIO.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/noMeshMotion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/oneWayVTK.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/readLiggghtsData.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/regionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/SchillerNaumannDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/setWeightedSource.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/ShirgaonkarIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/standardSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/TempExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/totalMomentumExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/turboEngineSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/twoWayFiles.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/twoWayMPI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/virtualMassForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/viscForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/voidFractionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/voidFractionModelMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/lnInclude/volWeightedAverage.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/averagingModel/averagingModel/averagingModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/averagingModel/dense/dense.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/averagingModel/dilute/dilute.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/dataExchangeModel/dataExchangeModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/noDataExchange/noDataExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/oneWayVTK/oneWayVTK.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/twoWayFiles/twoWayFiles.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/twoWayMPI/twoWayMPI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/dataExchangeModel/twoWayMPI_alt/twoWayMPI.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/Archimedes/Archimedes.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/ArchimedesIB/ArchimedesIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/fieldTimeAverage/fieldTimeAverage.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/forceModel/forceModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/GidaspowDrag/GidaspowDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/gradPForce/gradPForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/interface/interface.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/KochHillDrag/KochHillDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/KochHillDrag2/KochHillDrag2.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/KochHillDrag_dev/KochHillDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/LaEuScalarDust/LaEuScalarDust.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/LaEuScalarTemp/LaEuScalarTemp.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/MeiLift/MeiLift.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/noDrag/noDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/SchillerNaumannDrag/SchillerNaumannDrag.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/ShirgaonkarIB/ShirgaonkarIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/TempExchange/TempExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/totalMomentumExchange/totalMomentumExchange.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/virtualMassForce/virtualMassForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/viscForce/viscForce.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModel/volWeightedAverage/volWeightedAverage.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModelMS/DiFeliceDragMS/DiFeliceDragMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/forceModelMS/forceModelMS/forceModelMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/IOModel/basicIO/basicIO.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/IOModel/IOModel/IOModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/IOModel/noIO/noIO.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/liggghtsCommandModel/execute/execute.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/liggghtsCommandModel/liggghtsCommandModel/liggghtsCommandModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/liggghtsCommandModel/readLiggghtsData/readLiggghtsData.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/engineSearch/engineSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/engineSearchIB/engineSearchIB.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/engineSearchLambda/engineSearchLambda.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/locateModel/locateModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/standardSearch/standardSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/locateModel/turboEngineSearch/turboEngineSearch.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/meshMotionModel/DEMdrivenMeshMotion/DEMdrivenMeshMotion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/meshMotionModel/meshMotionModel/meshMotionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/meshMotionModel/noMeshMotion/noMeshMotion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/momCoupleModel/explicitCouple/explicitCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/momCoupleModel/implicitCouple/implicitCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/momCoupleModel/momCoupleModel/momCoupleModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/momCoupleModel/noCouple/noCouple.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/regionModel/allRegion/allRegion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/regionModel/differentialRegion/differentialRegion.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/regionModel/regionModel/regionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/bigParticleVoidFraction/bigParticleVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/centreVoidFraction/centreVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/dividedVoidFraction/dividedVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/dividedVoidFraction/setWeightedSource.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/dividedVoidFractionMS/dividedVoidFractionMS.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/dividedVoidFractionMS/setWeightedSource.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/GaussVoidFraction/GaussVoidFraction.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModel/voidFractionModel/voidFractionModel.H [code] | |
| /home/cfdem/CFDEM/CFDEM-x.x-2.0.x/src/lagrangian/cfdemParticle/subModels/voidFractionModelMS_zukunft/voidFractionModelMS/voidFractionModelMS.H [code] |
1.6.3
+
+
diff --git a/doc/doxygen/html/graph_legend.dot b/doc/doxygen/html/graph_legend.dot
new file mode 100644
index 0000000..9a09018
--- /dev/null
+++ b/doc/doxygen/html/graph_legend.dot
@@ -0,0 +1,22 @@
+digraph G
+{
+ edge [fontname="FreeSans",fontsize="10",labelfontname="FreeSans",labelfontsize="10"];
+ node [fontname="FreeSans",fontsize="10",shape=record];
+ Node9 [shape="box",label="Inherited",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",fillcolor="grey75",style="filled" fontcolor="black"];
+ Node10 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"];
+ Node10 [shape="box",label="PublicBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classPublicBase.html"];
+ Node11 -> Node10 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"];
+ Node11 [shape="box",label="Truncated",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="red",URL="$classTruncated.html"];
+ Node13 -> Node9 [dir=back,color="darkgreen",fontsize="10",style="solid",fontname="FreeSans"];
+ Node13 [shape="box",label="ProtectedBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classProtectedBase.html"];
+ Node14 -> Node9 [dir=back,color="firebrick4",fontsize="10",style="solid",fontname="FreeSans"];
+ Node14 [shape="box",label="PrivateBase",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classPrivateBase.html"];
+ Node15 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"];
+ Node15 [shape="box",label="Undocumented",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="grey75"];
+ Node16 -> Node9 [dir=back,color="midnightblue",fontsize="10",style="solid",fontname="FreeSans"];
+ Node16 [shape="box",label="Templ< int >",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classTempl.html"];
+ Node17 -> Node16 [dir=back,color="orange",fontsize="10",style="dashed",label="< int >",fontname="FreeSans"];
+ Node17 [shape="box",label="Templ< T >",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classTempl.html"];
+ Node18 -> Node9 [dir=back,color="darkorchid3",fontsize="10",style="dashed",label="m_usedClass",fontname="FreeSans"];
+ Node18 [shape="box",label="Used",fontsize="10",height=0.2,width=0.4,fontname="FreeSans",color="black",URL="$classUsed.html"];
+}
diff --git a/doc/doxygen/html/graph_legend.html b/doc/doxygen/html/graph_legend.html
new file mode 100644
index 0000000..f34a01a
--- /dev/null
+++ b/doc/doxygen/html/graph_legend.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+This page explains how to interpret the graphs that are generated by doxygen.
+Consider the following example:
+/*! Invisible class because of truncation */ +class Invisible { }; + +/*! Truncated class, inheritance relation is hidden */ +class Truncated : public Invisible { }; + +/* Class not documented with doxygen comments */ +class Undocumented { }; + +/*! Class that is inherited using public inheritance */ +class PublicBase : public Truncated { }; + +/*! A template class */ +template<class T> class Templ { }; + +/*! Class that is inherited using protected inheritance */ +class ProtectedBase { }; + +/*! Class that is inherited using private inheritance */ +class PrivateBase { }; + +/*! Class that is used by the Inherited class */ +class Used { }; + +/*! Super class that inherits a number of other classes */ +class Inherited : public PublicBase, + protected ProtectedBase, + private PrivateBase, + public Undocumented, + public Templ<int> +{ + private: + Used *m_usedClass; +}; +
This will result in the following graph:
+
+The boxes in the above graph have the following meaning:
+The arrows have the following meaning:
+
1.6.3
+
+
diff --git a/doc/doxygen/html/graph_legend.png b/doc/doxygen/html/graph_legend.png
new file mode 100644
index 0000000..b66a055
Binary files /dev/null and b/doc/doxygen/html/graph_legend.png differ
diff --git a/doc/doxygen/html/hierarchy.html b/doc/doxygen/html/hierarchy.html
new file mode 100644
index 0000000..f7ae731
--- /dev/null
+++ b/doc/doxygen/html/hierarchy.html
@@ -0,0 +1,212 @@
+
+
+
+
+
+Go to the graphical class hierarchy
+This inheritance list is sorted roughly, but not completely, alphabetically:
1.6.3
+
+
diff --git a/doc/doxygen/html/index.html b/doc/doxygen/html/index.html
new file mode 100644
index 0000000..8770a16
--- /dev/null
+++ b/doc/doxygen/html/index.html
@@ -0,0 +1,59 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/inherit__graph__0.map b/doc/doxygen/html/inherit__graph__0.map
new file mode 100644
index 0000000..b6e303d
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__0.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__0.md5 b/doc/doxygen/html/inherit__graph__0.md5
new file mode 100644
index 0000000..2d76bad
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__0.md5
@@ -0,0 +1 @@
+960c3e3394e086370652c886079e095f
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__0.png b/doc/doxygen/html/inherit__graph__0.png
new file mode 100644
index 0000000..4370a1f
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__0.png differ
diff --git a/doc/doxygen/html/inherit__graph__1.map b/doc/doxygen/html/inherit__graph__1.map
new file mode 100644
index 0000000..b2ce5e4
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__1.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__1.md5 b/doc/doxygen/html/inherit__graph__1.md5
new file mode 100644
index 0000000..9fdd6d5
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__1.md5
@@ -0,0 +1 @@
+c07c186d161be3cfc926f0cbed859a78
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__1.png b/doc/doxygen/html/inherit__graph__1.png
new file mode 100644
index 0000000..9d5ffa7
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__1.png differ
diff --git a/doc/doxygen/html/inherit__graph__10.map b/doc/doxygen/html/inherit__graph__10.map
new file mode 100644
index 0000000..775753d
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__10.map
@@ -0,0 +1,9 @@
+
diff --git a/doc/doxygen/html/inherit__graph__10.md5 b/doc/doxygen/html/inherit__graph__10.md5
new file mode 100644
index 0000000..6a841f1
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__10.md5
@@ -0,0 +1 @@
+3dc2f74a3265c9eab15132fad65fdf1a
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__10.png b/doc/doxygen/html/inherit__graph__10.png
new file mode 100644
index 0000000..cb15a22
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__10.png differ
diff --git a/doc/doxygen/html/inherit__graph__2.map b/doc/doxygen/html/inherit__graph__2.map
new file mode 100644
index 0000000..d5431de
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__2.map
@@ -0,0 +1,7 @@
+
diff --git a/doc/doxygen/html/inherit__graph__2.md5 b/doc/doxygen/html/inherit__graph__2.md5
new file mode 100644
index 0000000..118147e
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__2.md5
@@ -0,0 +1 @@
+c909eb29adfef8849828ac4e42433cd4
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__2.png b/doc/doxygen/html/inherit__graph__2.png
new file mode 100644
index 0000000..dec08b9
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__2.png differ
diff --git a/doc/doxygen/html/inherit__graph__3.map b/doc/doxygen/html/inherit__graph__3.map
new file mode 100644
index 0000000..d8d3770
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__3.map
@@ -0,0 +1,25 @@
+
diff --git a/doc/doxygen/html/inherit__graph__3.md5 b/doc/doxygen/html/inherit__graph__3.md5
new file mode 100644
index 0000000..8d73d45
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__3.md5
@@ -0,0 +1 @@
+50702384f088dfa663e4194080027fc2
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__3.png b/doc/doxygen/html/inherit__graph__3.png
new file mode 100644
index 0000000..e7cc11f
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__3.png differ
diff --git a/doc/doxygen/html/inherit__graph__4.map b/doc/doxygen/html/inherit__graph__4.map
new file mode 100644
index 0000000..f75cd75
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__4.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__4.md5 b/doc/doxygen/html/inherit__graph__4.md5
new file mode 100644
index 0000000..de98ec9
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__4.md5
@@ -0,0 +1 @@
+84ce85f7e9bc85d9c5eb2704da607336
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__4.png b/doc/doxygen/html/inherit__graph__4.png
new file mode 100644
index 0000000..b2526d9
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__4.png differ
diff --git a/doc/doxygen/html/inherit__graph__5.map b/doc/doxygen/html/inherit__graph__5.map
new file mode 100644
index 0000000..feca8f0
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__5.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__5.md5 b/doc/doxygen/html/inherit__graph__5.md5
new file mode 100644
index 0000000..b5139c7
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__5.md5
@@ -0,0 +1 @@
+5728e8fd13bddeaf80b85cd1f06c2d19
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__5.png b/doc/doxygen/html/inherit__graph__5.png
new file mode 100644
index 0000000..22fce73
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__5.png differ
diff --git a/doc/doxygen/html/inherit__graph__6.map b/doc/doxygen/html/inherit__graph__6.map
new file mode 100644
index 0000000..a2a20c4
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__6.map
@@ -0,0 +1,8 @@
+
diff --git a/doc/doxygen/html/inherit__graph__6.md5 b/doc/doxygen/html/inherit__graph__6.md5
new file mode 100644
index 0000000..62c7205
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__6.md5
@@ -0,0 +1 @@
+b86b1f4a9d0a69723796bc49a869edee
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__6.png b/doc/doxygen/html/inherit__graph__6.png
new file mode 100644
index 0000000..bfcf176
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__6.png differ
diff --git a/doc/doxygen/html/inherit__graph__7.map b/doc/doxygen/html/inherit__graph__7.map
new file mode 100644
index 0000000..656c2f1
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__7.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__7.md5 b/doc/doxygen/html/inherit__graph__7.md5
new file mode 100644
index 0000000..218ac25
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__7.md5
@@ -0,0 +1 @@
+a71bdd74ac93783c5ee1bb651d661cfb
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__7.png b/doc/doxygen/html/inherit__graph__7.png
new file mode 100644
index 0000000..5e36bbd
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__7.png differ
diff --git a/doc/doxygen/html/inherit__graph__8.map b/doc/doxygen/html/inherit__graph__8.map
new file mode 100644
index 0000000..0770088
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__8.map
@@ -0,0 +1,6 @@
+
diff --git a/doc/doxygen/html/inherit__graph__8.md5 b/doc/doxygen/html/inherit__graph__8.md5
new file mode 100644
index 0000000..2c34aab
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__8.md5
@@ -0,0 +1 @@
+4120a42b19cdec9e12accedb2165f0ff
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__8.png b/doc/doxygen/html/inherit__graph__8.png
new file mode 100644
index 0000000..9fd6f88
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__8.png differ
diff --git a/doc/doxygen/html/inherit__graph__9.map b/doc/doxygen/html/inherit__graph__9.map
new file mode 100644
index 0000000..fe6c474
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__9.map
@@ -0,0 +1,5 @@
+
diff --git a/doc/doxygen/html/inherit__graph__9.md5 b/doc/doxygen/html/inherit__graph__9.md5
new file mode 100644
index 0000000..ee756ff
--- /dev/null
+++ b/doc/doxygen/html/inherit__graph__9.md5
@@ -0,0 +1 @@
+e0056d0b9b387ad79e12965ec4c84262
\ No newline at end of file
diff --git a/doc/doxygen/html/inherit__graph__9.png b/doc/doxygen/html/inherit__graph__9.png
new file mode 100644
index 0000000..ab43d22
Binary files /dev/null and b/doc/doxygen/html/inherit__graph__9.png differ
diff --git a/doc/doxygen/html/inherits.html b/doc/doxygen/html/inherits.html
new file mode 100644
index 0000000..3ed0393
--- /dev/null
+++ b/doc/doxygen/html/inherits.html
@@ -0,0 +1,102 @@
+
+
+
+
+
+Go to the textual class hierarchy
+
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
1.6.3
+
+
diff --git a/doc/doxygen/html/installdox b/doc/doxygen/html/installdox
new file mode 100755
index 0000000..9b89fe0
--- /dev/null
+++ b/doc/doxygen/html/installdox
@@ -0,0 +1,117 @@
+#!/usr/bin/perl
+
+%subst = ( );
+$quiet = 0;
+
+if (open(F,"search.cfg"))
+{
+ $_=
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2Archimedes_8H_source.html b/doc/doxygen/html/lnInclude_2Archimedes_8H_source.html
new file mode 100644
index 0000000..06cec9c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2Archimedes_8H_source.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2DEMdrivenMeshMotion_8H_source.html b/doc/doxygen/html/lnInclude_2DEMdrivenMeshMotion_8H_source.html
new file mode 100644
index 0000000..68f35df
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2DEMdrivenMeshMotion_8H_source.html
@@ -0,0 +1,161 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2DiFeliceDragMS_8H_source.html b/doc/doxygen/html/lnInclude_2DiFeliceDragMS_8H_source.html
new file mode 100644
index 0000000..d48d546
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2DiFeliceDragMS_8H_source.html
@@ -0,0 +1,177 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2DiFeliceDrag_8H_source.html b/doc/doxygen/html/lnInclude_2DiFeliceDrag_8H_source.html
new file mode 100644
index 0000000..5d872ec
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2DiFeliceDrag_8H_source.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2GaussVoidFraction_8H_source.html b/doc/doxygen/html/lnInclude_2GaussVoidFraction_8H_source.html
new file mode 100644
index 0000000..3cc3046
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2GaussVoidFraction_8H_source.html
@@ -0,0 +1,168 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2GidaspowDrag_8H_source.html b/doc/doxygen/html/lnInclude_2GidaspowDrag_8H_source.html
new file mode 100644
index 0000000..af04369
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2GidaspowDrag_8H_source.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2IOModel_8H_source.html b/doc/doxygen/html/lnInclude_2IOModel_8H_source.html
new file mode 100644
index 0000000..ab9a96b
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2IOModel_8H_source.html
@@ -0,0 +1,181 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2KochHillDrag2_8H_source.html b/doc/doxygen/html/lnInclude_2KochHillDrag2_8H_source.html
new file mode 100644
index 0000000..c6726af
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2KochHillDrag2_8H_source.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2KochHillDrag_8H_source.html b/doc/doxygen/html/lnInclude_2KochHillDrag_8H_source.html
new file mode 100644
index 0000000..fcc26df
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2KochHillDrag_8H_source.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2LaEuScalarDust_8H_source.html b/doc/doxygen/html/lnInclude_2LaEuScalarDust_8H_source.html
new file mode 100644
index 0000000..fd9c15c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2LaEuScalarDust_8H_source.html
@@ -0,0 +1,185 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2LaEuScalarTemp_8H_source.html b/doc/doxygen/html/lnInclude_2LaEuScalarTemp_8H_source.html
new file mode 100644
index 0000000..f90b43c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2LaEuScalarTemp_8H_source.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2MeiLift_8H_source.html b/doc/doxygen/html/lnInclude_2MeiLift_8H_source.html
new file mode 100644
index 0000000..d0e0ced
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2MeiLift_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2SchillerNaumannDrag_8H_source.html b/doc/doxygen/html/lnInclude_2SchillerNaumannDrag_8H_source.html
new file mode 100644
index 0000000..ea6cc0c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2SchillerNaumannDrag_8H_source.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2ShirgaonkarIB_8H_source.html b/doc/doxygen/html/lnInclude_2ShirgaonkarIB_8H_source.html
new file mode 100644
index 0000000..40cb037
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2ShirgaonkarIB_8H_source.html
@@ -0,0 +1,176 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2TempExchange_8H_source.html b/doc/doxygen/html/lnInclude_2TempExchange_8H_source.html
new file mode 100644
index 0000000..bf3b4d3
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2TempExchange_8H_source.html
@@ -0,0 +1,163 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2allRegion_8H_source.html b/doc/doxygen/html/lnInclude_2allRegion_8H_source.html
new file mode 100644
index 0000000..5bc418c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2allRegion_8H_source.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2averagingModel_8H_source.html b/doc/doxygen/html/lnInclude_2averagingModel_8H_source.html
new file mode 100644
index 0000000..5adf000
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2averagingModel_8H_source.html
@@ -0,0 +1,252 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2basicIO_8H_source.html b/doc/doxygen/html/lnInclude_2basicIO_8H_source.html
new file mode 100644
index 0000000..a5a55d1
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2basicIO_8H_source.html
@@ -0,0 +1,161 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2bigParticleVoidFraction_8H_source.html b/doc/doxygen/html/lnInclude_2bigParticleVoidFraction_8H_source.html
new file mode 100644
index 0000000..54c5ef8
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2bigParticleVoidFraction_8H_source.html
@@ -0,0 +1,167 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2centreVoidFraction_8H_source.html b/doc/doxygen/html/lnInclude_2centreVoidFraction_8H_source.html
new file mode 100644
index 0000000..1dc5062
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2centreVoidFraction_8H_source.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2cfdemCloudIB_8H_source.html b/doc/doxygen/html/lnInclude_2cfdemCloudIB_8H_source.html
new file mode 100644
index 0000000..571f705
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2cfdemCloudIB_8H_source.html
@@ -0,0 +1,150 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2cfdemCloudI_8H_source.html b/doc/doxygen/html/lnInclude_2cfdemCloudI_8H_source.html
new file mode 100644
index 0000000..275de12
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2cfdemCloudI_8H_source.html
@@ -0,0 +1,252 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2cfdemCloudMSI_8H_source.html b/doc/doxygen/html/lnInclude_2cfdemCloudMSI_8H_source.html
new file mode 100644
index 0000000..f958d58
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2cfdemCloudMSI_8H_source.html
@@ -0,0 +1,130 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2cfdemCloudMS_8H_source.html b/doc/doxygen/html/lnInclude_2cfdemCloudMS_8H_source.html
new file mode 100644
index 0000000..ad230b1
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2cfdemCloudMS_8H_source.html
@@ -0,0 +1,216 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2cfdemCloud_8H_source.html b/doc/doxygen/html/lnInclude_2cfdemCloud_8H_source.html
new file mode 100644
index 0000000..f176a0b
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2cfdemCloud_8H_source.html
@@ -0,0 +1,372 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2dataExchangeModel_8H_source.html b/doc/doxygen/html/lnInclude_2dataExchangeModel_8H_source.html
new file mode 100644
index 0000000..8b2ffad
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2dataExchangeModel_8H_source.html
@@ -0,0 +1,279 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2dense_8H_source.html b/doc/doxygen/html/lnInclude_2dense_8H_source.html
new file mode 100644
index 0000000..5509a29
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2dense_8H_source.html
@@ -0,0 +1,164 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2differentialRegion_8H_source.html b/doc/doxygen/html/lnInclude_2differentialRegion_8H_source.html
new file mode 100644
index 0000000..e76147b
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2differentialRegion_8H_source.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2dilute_8H_source.html b/doc/doxygen/html/lnInclude_2dilute_8H_source.html
new file mode 100644
index 0000000..b1a46fd
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2dilute_8H_source.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2dividedVoidFractionMS_8H_source.html b/doc/doxygen/html/lnInclude_2dividedVoidFractionMS_8H_source.html
new file mode 100644
index 0000000..5ffc619
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2dividedVoidFractionMS_8H_source.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2dividedVoidFraction_8H_source.html b/doc/doxygen/html/lnInclude_2dividedVoidFraction_8H_source.html
new file mode 100644
index 0000000..da66994
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2dividedVoidFraction_8H_source.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2engineSearchIB_8H_source.html b/doc/doxygen/html/lnInclude_2engineSearchIB_8H_source.html
new file mode 100644
index 0000000..96b4f33
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2engineSearchIB_8H_source.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2engineSearchLambda_8H_source.html b/doc/doxygen/html/lnInclude_2engineSearchLambda_8H_source.html
new file mode 100644
index 0000000..f93d643
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2engineSearchLambda_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2engineSearch_8H_source.html b/doc/doxygen/html/lnInclude_2engineSearch_8H_source.html
new file mode 100644
index 0000000..f497c22
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2engineSearch_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2execute_8H_source.html b/doc/doxygen/html/lnInclude_2execute_8H_source.html
new file mode 100644
index 0000000..6e803fe
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2execute_8H_source.html
@@ -0,0 +1,173 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2explicitCouple_8H_source.html b/doc/doxygen/html/lnInclude_2explicitCouple_8H_source.html
new file mode 100644
index 0000000..968d63c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2explicitCouple_8H_source.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2fieldTimeAverage_8H_source.html b/doc/doxygen/html/lnInclude_2fieldTimeAverage_8H_source.html
new file mode 100644
index 0000000..1998be4
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2fieldTimeAverage_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2forceModelMS_8H_source.html b/doc/doxygen/html/lnInclude_2forceModelMS_8H_source.html
new file mode 100644
index 0000000..e44306d
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2forceModelMS_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2forceModel_8H_source.html b/doc/doxygen/html/lnInclude_2forceModel_8H_source.html
new file mode 100644
index 0000000..effda6e
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2forceModel_8H_source.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2gradPForce_8H_source.html b/doc/doxygen/html/lnInclude_2gradPForce_8H_source.html
new file mode 100644
index 0000000..89986b0
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2gradPForce_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2implicitCouple_8H_source.html b/doc/doxygen/html/lnInclude_2implicitCouple_8H_source.html
new file mode 100644
index 0000000..fa85848
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2implicitCouple_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2interface_8H_source.html b/doc/doxygen/html/lnInclude_2interface_8H_source.html
new file mode 100644
index 0000000..2ae66b6
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2interface_8H_source.html
@@ -0,0 +1,182 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2liggghtsCommandModel_8H_source.html b/doc/doxygen/html/lnInclude_2liggghtsCommandModel_8H_source.html
new file mode 100644
index 0000000..478f738
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2liggghtsCommandModel_8H_source.html
@@ -0,0 +1,225 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2locateModel_8H_source.html b/doc/doxygen/html/lnInclude_2locateModel_8H_source.html
new file mode 100644
index 0000000..92d89c1
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2locateModel_8H_source.html
@@ -0,0 +1,187 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2meshMotionModel_8H_source.html b/doc/doxygen/html/lnInclude_2meshMotionModel_8H_source.html
new file mode 100644
index 0000000..74af6d1
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2meshMotionModel_8H_source.html
@@ -0,0 +1,180 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2momCoupleModel_8H_source.html b/doc/doxygen/html/lnInclude_2momCoupleModel_8H_source.html
new file mode 100644
index 0000000..15f450d
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2momCoupleModel_8H_source.html
@@ -0,0 +1,184 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2noCouple_8H_source.html b/doc/doxygen/html/lnInclude_2noCouple_8H_source.html
new file mode 100644
index 0000000..9d67fdc
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2noCouple_8H_source.html
@@ -0,0 +1,149 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2noDataExchange_8H_source.html b/doc/doxygen/html/lnInclude_2noDataExchange_8H_source.html
new file mode 100644
index 0000000..7e6290c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2noDataExchange_8H_source.html
@@ -0,0 +1,170 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2noDrag_8H_source.html b/doc/doxygen/html/lnInclude_2noDrag_8H_source.html
new file mode 100644
index 0000000..0a9b0e1
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2noDrag_8H_source.html
@@ -0,0 +1,153 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2noIO_8H_source.html b/doc/doxygen/html/lnInclude_2noIO_8H_source.html
new file mode 100644
index 0000000..cf4d5c2
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2noIO_8H_source.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2noMeshMotion_8H_source.html b/doc/doxygen/html/lnInclude_2noMeshMotion_8H_source.html
new file mode 100644
index 0000000..e9a8e2c
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2noMeshMotion_8H_source.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2oneWayVTK_8H_source.html b/doc/doxygen/html/lnInclude_2oneWayVTK_8H_source.html
new file mode 100644
index 0000000..9f858eb
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2oneWayVTK_8H_source.html
@@ -0,0 +1,180 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2readLiggghtsData_8H_source.html b/doc/doxygen/html/lnInclude_2readLiggghtsData_8H_source.html
new file mode 100644
index 0000000..c23690f
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2readLiggghtsData_8H_source.html
@@ -0,0 +1,167 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2regionModel_8H_source.html b/doc/doxygen/html/lnInclude_2regionModel_8H_source.html
new file mode 100644
index 0000000..4e3f0c0
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2regionModel_8H_source.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2setWeightedSource_8H_source.html b/doc/doxygen/html/lnInclude_2setWeightedSource_8H_source.html
new file mode 100644
index 0000000..44ae5f8
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2setWeightedSource_8H_source.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2standardSearch_8H_source.html b/doc/doxygen/html/lnInclude_2standardSearch_8H_source.html
new file mode 100644
index 0000000..f10513f
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2standardSearch_8H_source.html
@@ -0,0 +1,159 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2totalMomentumExchange_8H_source.html b/doc/doxygen/html/lnInclude_2totalMomentumExchange_8H_source.html
new file mode 100644
index 0000000..68566dc
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2totalMomentumExchange_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2turboEngineSearch_8H_source.html b/doc/doxygen/html/lnInclude_2turboEngineSearch_8H_source.html
new file mode 100644
index 0000000..27ebad6
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2turboEngineSearch_8H_source.html
@@ -0,0 +1,173 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2twoWayFiles_8H_source.html b/doc/doxygen/html/lnInclude_2twoWayFiles_8H_source.html
new file mode 100644
index 0000000..1a249da
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2twoWayFiles_8H_source.html
@@ -0,0 +1,185 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2twoWayMPI_8H_source.html b/doc/doxygen/html/lnInclude_2twoWayMPI_8H_source.html
new file mode 100644
index 0000000..346d0b2
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2twoWayMPI_8H_source.html
@@ -0,0 +1,209 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2virtualMassForce_8H_source.html b/doc/doxygen/html/lnInclude_2virtualMassForce_8H_source.html
new file mode 100644
index 0000000..027ebe8
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2virtualMassForce_8H_source.html
@@ -0,0 +1,170 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2viscForce_8H_source.html b/doc/doxygen/html/lnInclude_2viscForce_8H_source.html
new file mode 100644
index 0000000..8b49ba4
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2viscForce_8H_source.html
@@ -0,0 +1,168 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2voidFractionModelMS_8H_source.html b/doc/doxygen/html/lnInclude_2voidFractionModelMS_8H_source.html
new file mode 100644
index 0000000..e8dacf5
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2voidFractionModelMS_8H_source.html
@@ -0,0 +1,182 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2voidFractionModel_8H_source.html b/doc/doxygen/html/lnInclude_2voidFractionModel_8H_source.html
new file mode 100644
index 0000000..8e14da4
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2voidFractionModel_8H_source.html
@@ -0,0 +1,197 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/lnInclude_2volWeightedAverage_8H_source.html b/doc/doxygen/html/lnInclude_2volWeightedAverage_8H_source.html
new file mode 100644
index 0000000..cc22de3
--- /dev/null
+++ b/doc/doxygen/html/lnInclude_2volWeightedAverage_8H_source.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/search/all_61.html b/doc/doxygen/html/search/all_61.html
new file mode 100644
index 0000000..c79cafd
--- /dev/null
+++ b/doc/doxygen/html/search/all_61.html
@@ -0,0 +1,44 @@
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2IOModel_2IOModel_2IOModel_8H_source.html b/doc/doxygen/html/subModels_2IOModel_2IOModel_2IOModel_8H_source.html
new file mode 100644
index 0000000..40a3020
--- /dev/null
+++ b/doc/doxygen/html/subModels_2IOModel_2IOModel_2IOModel_8H_source.html
@@ -0,0 +1,181 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2IOModel_2basicIO_2basicIO_8H_source.html b/doc/doxygen/html/subModels_2IOModel_2basicIO_2basicIO_8H_source.html
new file mode 100644
index 0000000..3a5579a
--- /dev/null
+++ b/doc/doxygen/html/subModels_2IOModel_2basicIO_2basicIO_8H_source.html
@@ -0,0 +1,161 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2IOModel_2noIO_2noIO_8H_source.html b/doc/doxygen/html/subModels_2IOModel_2noIO_2noIO_8H_source.html
new file mode 100644
index 0000000..bbda893
--- /dev/null
+++ b/doc/doxygen/html/subModels_2IOModel_2noIO_2noIO_8H_source.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2averagingModel_2averagingModel_2averagingModel_8H_source.html b/doc/doxygen/html/subModels_2averagingModel_2averagingModel_2averagingModel_8H_source.html
new file mode 100644
index 0000000..02e3373
--- /dev/null
+++ b/doc/doxygen/html/subModels_2averagingModel_2averagingModel_2averagingModel_8H_source.html
@@ -0,0 +1,252 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2averagingModel_2dense_2dense_8H_source.html b/doc/doxygen/html/subModels_2averagingModel_2dense_2dense_8H_source.html
new file mode 100644
index 0000000..0221a4e
--- /dev/null
+++ b/doc/doxygen/html/subModels_2averagingModel_2dense_2dense_8H_source.html
@@ -0,0 +1,164 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2averagingModel_2dilute_2dilute_8H_source.html b/doc/doxygen/html/subModels_2averagingModel_2dilute_2dilute_8H_source.html
new file mode 100644
index 0000000..3423fbf
--- /dev/null
+++ b/doc/doxygen/html/subModels_2averagingModel_2dilute_2dilute_8H_source.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2dataExchangeModel_2dataExchangeModel_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2dataExchangeModel_2dataExchangeModel_8H_source.html
new file mode 100644
index 0000000..80df4dd
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2dataExchangeModel_2dataExchangeModel_8H_source.html
@@ -0,0 +1,279 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2noDataExchange_2noDataExchange_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2noDataExchange_2noDataExchange_8H_source.html
new file mode 100644
index 0000000..5d189c1
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2noDataExchange_2noDataExchange_8H_source.html
@@ -0,0 +1,170 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2oneWayVTK_2oneWayVTK_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2oneWayVTK_2oneWayVTK_8H_source.html
new file mode 100644
index 0000000..a53ffe0
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2oneWayVTK_2oneWayVTK_8H_source.html
@@ -0,0 +1,180 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayFiles_2twoWayFiles_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayFiles_2twoWayFiles_8H_source.html
new file mode 100644
index 0000000..da7d32d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayFiles_2twoWayFiles_8H_source.html
@@ -0,0 +1,185 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI_2twoWayMPI_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI_2twoWayMPI_8H_source.html
new file mode 100644
index 0000000..830e466
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI_2twoWayMPI_8H_source.html
@@ -0,0 +1,223 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI__alt_2twoWayMPI_8H_source.html b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI__alt_2twoWayMPI_8H_source.html
new file mode 100644
index 0000000..253d62d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2dataExchangeModel_2twoWayMPI__alt_2twoWayMPI_8H_source.html
@@ -0,0 +1,209 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModelMS_2DiFeliceDragMS_2DiFeliceDragMS_8H_source.html b/doc/doxygen/html/subModels_2forceModelMS_2DiFeliceDragMS_2DiFeliceDragMS_8H_source.html
new file mode 100644
index 0000000..cc08152
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModelMS_2DiFeliceDragMS_2DiFeliceDragMS_8H_source.html
@@ -0,0 +1,177 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModelMS_2forceModelMS_2forceModelMS_8H_source.html b/doc/doxygen/html/subModels_2forceModelMS_2forceModelMS_2forceModelMS_8H_source.html
new file mode 100644
index 0000000..4b7e9d4
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModelMS_2forceModelMS_2forceModelMS_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2ArchimedesIB_2ArchimedesIB_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2ArchimedesIB_2ArchimedesIB_8H_source.html
new file mode 100644
index 0000000..b8c8f7a
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2ArchimedesIB_2ArchimedesIB_8H_source.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2Archimedes_2Archimedes_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2Archimedes_2Archimedes_8H_source.html
new file mode 100644
index 0000000..1856c63
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2Archimedes_2Archimedes_8H_source.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2DiFeliceDrag_2DiFeliceDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2DiFeliceDrag_2DiFeliceDrag_8H_source.html
new file mode 100644
index 0000000..d297c6b
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2DiFeliceDrag_2DiFeliceDrag_8H_source.html
@@ -0,0 +1,172 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2GidaspowDrag_2GidaspowDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2GidaspowDrag_2GidaspowDrag_8H_source.html
new file mode 100644
index 0000000..d7ed0a2
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2GidaspowDrag_2GidaspowDrag_8H_source.html
@@ -0,0 +1,165 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2KochHillDrag2_2KochHillDrag2_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag2_2KochHillDrag2_8H_source.html
new file mode 100644
index 0000000..18076db
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag2_2KochHillDrag2_8H_source.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2KochHillDrag_2KochHillDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag_2KochHillDrag_8H_source.html
new file mode 100644
index 0000000..1e184d1
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag_2KochHillDrag_8H_source.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2KochHillDrag__dev_2KochHillDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag__dev_2KochHillDrag_8H_source.html
new file mode 100644
index 0000000..ddee436
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2KochHillDrag__dev_2KochHillDrag_8H_source.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2LaEuScalarDust_2LaEuScalarDust_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2LaEuScalarDust_2LaEuScalarDust_8H_source.html
new file mode 100644
index 0000000..29d8641
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2LaEuScalarDust_2LaEuScalarDust_8H_source.html
@@ -0,0 +1,185 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2LaEuScalarTemp_2LaEuScalarTemp_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2LaEuScalarTemp_2LaEuScalarTemp_8H_source.html
new file mode 100644
index 0000000..35114c8
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2LaEuScalarTemp_2LaEuScalarTemp_8H_source.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2MeiLift_2MeiLift_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2MeiLift_2MeiLift_8H_source.html
new file mode 100644
index 0000000..0ef4c6d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2MeiLift_2MeiLift_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2SchillerNaumannDrag_2SchillerNaumannDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2SchillerNaumannDrag_2SchillerNaumannDrag_8H_source.html
new file mode 100644
index 0000000..00272da
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2SchillerNaumannDrag_2SchillerNaumannDrag_8H_source.html
@@ -0,0 +1,166 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2ShirgaonkarIB_2ShirgaonkarIB_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2ShirgaonkarIB_2ShirgaonkarIB_8H_source.html
new file mode 100644
index 0000000..816bfb8
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2ShirgaonkarIB_2ShirgaonkarIB_8H_source.html
@@ -0,0 +1,176 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2TempExchange_2TempExchange_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2TempExchange_2TempExchange_8H_source.html
new file mode 100644
index 0000000..6aabf6b
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2TempExchange_2TempExchange_8H_source.html
@@ -0,0 +1,163 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2fieldTimeAverage_2fieldTimeAverage_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2fieldTimeAverage_2fieldTimeAverage_8H_source.html
new file mode 100644
index 0000000..cca624d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2fieldTimeAverage_2fieldTimeAverage_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2forceModel_2forceModel_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2forceModel_2forceModel_8H_source.html
new file mode 100644
index 0000000..4effbda
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2forceModel_2forceModel_8H_source.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2gradPForce_2gradPForce_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2gradPForce_2gradPForce_8H_source.html
new file mode 100644
index 0000000..95180a8
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2gradPForce_2gradPForce_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2interface_2interface_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2interface_2interface_8H_source.html
new file mode 100644
index 0000000..cc83285
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2interface_2interface_8H_source.html
@@ -0,0 +1,182 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2noDrag_2noDrag_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2noDrag_2noDrag_8H_source.html
new file mode 100644
index 0000000..d41e5c7
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2noDrag_2noDrag_8H_source.html
@@ -0,0 +1,153 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2totalMomentumExchange_2totalMomentumExchange_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2totalMomentumExchange_2totalMomentumExchange_8H_source.html
new file mode 100644
index 0000000..d4475f6
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2totalMomentumExchange_2totalMomentumExchange_8H_source.html
@@ -0,0 +1,179 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2virtualMassForce_2virtualMassForce_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2virtualMassForce_2virtualMassForce_8H_source.html
new file mode 100644
index 0000000..2cd0157
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2virtualMassForce_2virtualMassForce_8H_source.html
@@ -0,0 +1,170 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2viscForce_2viscForce_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2viscForce_2viscForce_8H_source.html
new file mode 100644
index 0000000..28376a0
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2viscForce_2viscForce_8H_source.html
@@ -0,0 +1,168 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2forceModel_2volWeightedAverage_2volWeightedAverage_8H_source.html b/doc/doxygen/html/subModels_2forceModel_2volWeightedAverage_2volWeightedAverage_8H_source.html
new file mode 100644
index 0000000..1645133
--- /dev/null
+++ b/doc/doxygen/html/subModels_2forceModel_2volWeightedAverage_2volWeightedAverage_8H_source.html
@@ -0,0 +1,175 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2liggghtsCommandModel_2execute_2execute_8H_source.html b/doc/doxygen/html/subModels_2liggghtsCommandModel_2execute_2execute_8H_source.html
new file mode 100644
index 0000000..09cf139
--- /dev/null
+++ b/doc/doxygen/html/subModels_2liggghtsCommandModel_2execute_2execute_8H_source.html
@@ -0,0 +1,173 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2liggghtsCommandModel_2liggghtsCommandModel_2liggghtsCommandModel_8H_source.html b/doc/doxygen/html/subModels_2liggghtsCommandModel_2liggghtsCommandModel_2liggghtsCommandModel_8H_source.html
new file mode 100644
index 0000000..3135ce7
--- /dev/null
+++ b/doc/doxygen/html/subModels_2liggghtsCommandModel_2liggghtsCommandModel_2liggghtsCommandModel_8H_source.html
@@ -0,0 +1,225 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2liggghtsCommandModel_2readLiggghtsData_2readLiggghtsData_8H_source.html b/doc/doxygen/html/subModels_2liggghtsCommandModel_2readLiggghtsData_2readLiggghtsData_8H_source.html
new file mode 100644
index 0000000..3398658
--- /dev/null
+++ b/doc/doxygen/html/subModels_2liggghtsCommandModel_2readLiggghtsData_2readLiggghtsData_8H_source.html
@@ -0,0 +1,167 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2engineSearchIB_2engineSearchIB_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2engineSearchIB_2engineSearchIB_8H_source.html
new file mode 100644
index 0000000..dd33ecf
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2engineSearchIB_2engineSearchIB_8H_source.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2engineSearchLambda_2engineSearchLambda_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2engineSearchLambda_2engineSearchLambda_8H_source.html
new file mode 100644
index 0000000..7a83779
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2engineSearchLambda_2engineSearchLambda_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2engineSearch_2engineSearch_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2engineSearch_2engineSearch_8H_source.html
new file mode 100644
index 0000000..401688d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2engineSearch_2engineSearch_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2locateModel_2locateModel_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2locateModel_2locateModel_8H_source.html
new file mode 100644
index 0000000..41865d8
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2locateModel_2locateModel_8H_source.html
@@ -0,0 +1,187 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2standardSearch_2standardSearch_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2standardSearch_2standardSearch_8H_source.html
new file mode 100644
index 0000000..92cc38d
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2standardSearch_2standardSearch_8H_source.html
@@ -0,0 +1,159 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2locateModel_2turboEngineSearch_2turboEngineSearch_8H_source.html b/doc/doxygen/html/subModels_2locateModel_2turboEngineSearch_2turboEngineSearch_8H_source.html
new file mode 100644
index 0000000..6ec050b
--- /dev/null
+++ b/doc/doxygen/html/subModels_2locateModel_2turboEngineSearch_2turboEngineSearch_8H_source.html
@@ -0,0 +1,173 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2meshMotionModel_2DEMdrivenMeshMotion_2DEMdrivenMeshMotion_8H_source.html b/doc/doxygen/html/subModels_2meshMotionModel_2DEMdrivenMeshMotion_2DEMdrivenMeshMotion_8H_source.html
new file mode 100644
index 0000000..9c2c93a
--- /dev/null
+++ b/doc/doxygen/html/subModels_2meshMotionModel_2DEMdrivenMeshMotion_2DEMdrivenMeshMotion_8H_source.html
@@ -0,0 +1,161 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2meshMotionModel_2meshMotionModel_2meshMotionModel_8H_source.html b/doc/doxygen/html/subModels_2meshMotionModel_2meshMotionModel_2meshMotionModel_8H_source.html
new file mode 100644
index 0000000..18b356c
--- /dev/null
+++ b/doc/doxygen/html/subModels_2meshMotionModel_2meshMotionModel_2meshMotionModel_8H_source.html
@@ -0,0 +1,180 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2meshMotionModel_2noMeshMotion_2noMeshMotion_8H_source.html b/doc/doxygen/html/subModels_2meshMotionModel_2noMeshMotion_2noMeshMotion_8H_source.html
new file mode 100644
index 0000000..7d4df84
--- /dev/null
+++ b/doc/doxygen/html/subModels_2meshMotionModel_2noMeshMotion_2noMeshMotion_8H_source.html
@@ -0,0 +1,148 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2momCoupleModel_2explicitCouple_2explicitCouple_8H_source.html b/doc/doxygen/html/subModels_2momCoupleModel_2explicitCouple_2explicitCouple_8H_source.html
new file mode 100644
index 0000000..bb696ff
--- /dev/null
+++ b/doc/doxygen/html/subModels_2momCoupleModel_2explicitCouple_2explicitCouple_8H_source.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2momCoupleModel_2implicitCouple_2implicitCouple_8H_source.html b/doc/doxygen/html/subModels_2momCoupleModel_2implicitCouple_2implicitCouple_8H_source.html
new file mode 100644
index 0000000..6c35c45
--- /dev/null
+++ b/doc/doxygen/html/subModels_2momCoupleModel_2implicitCouple_2implicitCouple_8H_source.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2momCoupleModel_2momCoupleModel_2momCoupleModel_8H_source.html b/doc/doxygen/html/subModels_2momCoupleModel_2momCoupleModel_2momCoupleModel_8H_source.html
new file mode 100644
index 0000000..ef166e9
--- /dev/null
+++ b/doc/doxygen/html/subModels_2momCoupleModel_2momCoupleModel_2momCoupleModel_8H_source.html
@@ -0,0 +1,184 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2momCoupleModel_2noCouple_2noCouple_8H_source.html b/doc/doxygen/html/subModels_2momCoupleModel_2noCouple_2noCouple_8H_source.html
new file mode 100644
index 0000000..dadbfe8
--- /dev/null
+++ b/doc/doxygen/html/subModels_2momCoupleModel_2noCouple_2noCouple_8H_source.html
@@ -0,0 +1,149 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2regionModel_2allRegion_2allRegion_8H_source.html b/doc/doxygen/html/subModels_2regionModel_2allRegion_2allRegion_8H_source.html
new file mode 100644
index 0000000..daa86f4
--- /dev/null
+++ b/doc/doxygen/html/subModels_2regionModel_2allRegion_2allRegion_8H_source.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2regionModel_2differentialRegion_2differentialRegion_8H_source.html b/doc/doxygen/html/subModels_2regionModel_2differentialRegion_2differentialRegion_8H_source.html
new file mode 100644
index 0000000..b785b35
--- /dev/null
+++ b/doc/doxygen/html/subModels_2regionModel_2differentialRegion_2differentialRegion_8H_source.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2regionModel_2regionModel_2regionModel_8H_source.html b/doc/doxygen/html/subModels_2regionModel_2regionModel_2regionModel_8H_source.html
new file mode 100644
index 0000000..0b1f89b
--- /dev/null
+++ b/doc/doxygen/html/subModels_2regionModel_2regionModel_2regionModel_8H_source.html
@@ -0,0 +1,191 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModelMS__zukunft_2voidFractionModelMS_2voidFractionModelMS_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModelMS__zukunft_2voidFractionModelMS_2voidFractionModelMS_8H_source.html
new file mode 100644
index 0000000..26711f3
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModelMS__zukunft_2voidFractionModelMS_2voidFractionModelMS_8H_source.html
@@ -0,0 +1,182 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2GaussVoidFraction_2GaussVoidFraction_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2GaussVoidFraction_2GaussVoidFraction_8H_source.html
new file mode 100644
index 0000000..4999921
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2GaussVoidFraction_2GaussVoidFraction_8H_source.html
@@ -0,0 +1,168 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2bigParticleVoidFraction_2bigParticleVoidFraction_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2bigParticleVoidFraction_2bigParticleVoidFraction_8H_source.html
new file mode 100644
index 0000000..a20f1bf
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2bigParticleVoidFraction_2bigParticleVoidFraction_8H_source.html
@@ -0,0 +1,167 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2centreVoidFraction_2centreVoidFraction_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2centreVoidFraction_2centreVoidFraction_8H_source.html
new file mode 100644
index 0000000..37581e0
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2centreVoidFraction_2centreVoidFraction_8H_source.html
@@ -0,0 +1,154 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2dividedVoidFractionMS_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2dividedVoidFractionMS_8H_source.html
new file mode 100644
index 0000000..457f53b
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2dividedVoidFractionMS_8H_source.html
@@ -0,0 +1,162 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2setWeightedSource_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2setWeightedSource_8H_source.html
new file mode 100644
index 0000000..71a81e1
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFractionMS_2setWeightedSource_8H_source.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2dividedVoidFraction_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2dividedVoidFraction_8H_source.html
new file mode 100644
index 0000000..f50efd7
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2dividedVoidFraction_8H_source.html
@@ -0,0 +1,158 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2setWeightedSource_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2setWeightedSource_8H_source.html
new file mode 100644
index 0000000..5748895
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2dividedVoidFraction_2setWeightedSource_8H_source.html
@@ -0,0 +1,152 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/subModels_2voidFractionModel_2voidFractionModel_2voidFractionModel_8H_source.html b/doc/doxygen/html/subModels_2voidFractionModel_2voidFractionModel_2voidFractionModel_8H_source.html
new file mode 100644
index 0000000..bb0cbfb
--- /dev/null
+++ b/doc/doxygen/html/subModels_2voidFractionModel_2voidFractionModel_2voidFractionModel_8H_source.html
@@ -0,0 +1,197 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/doxygen/html/tab_b.gif b/doc/doxygen/html/tab_b.gif
new file mode 100644
index 0000000..0d62348
Binary files /dev/null and b/doc/doxygen/html/tab_b.gif differ
diff --git a/doc/doxygen/html/tab_l.gif b/doc/doxygen/html/tab_l.gif
new file mode 100644
index 0000000..9b1e633
Binary files /dev/null and b/doc/doxygen/html/tab_l.gif differ
diff --git a/doc/doxygen/html/tab_r.gif b/doc/doxygen/html/tab_r.gif
new file mode 100644
index 0000000..ce9dd9f
Binary files /dev/null and b/doc/doxygen/html/tab_r.gif differ
diff --git a/doc/doxygen/html/tabs.css b/doc/doxygen/html/tabs.css
new file mode 100644
index 0000000..a444163
--- /dev/null
+++ b/doc/doxygen/html/tabs.css
@@ -0,0 +1,105 @@
+/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
+
+DIV.tabs
+{
+ float : left;
+ width : 100%;
+ background : url("tab_b.gif") repeat-x bottom;
+ margin-bottom : 4px;
+}
+
+DIV.tabs UL
+{
+ margin : 0px;
+ padding-left : 10px;
+ list-style : none;
+}
+
+DIV.tabs LI, DIV.tabs FORM
+{
+ display : inline;
+ margin : 0px;
+ padding : 0px;
+}
+
+DIV.tabs FORM
+{
+ float : right;
+}
+
+DIV.tabs A
+{
+ float : left;
+ background : url("tab_r.gif") no-repeat right top;
+ border-bottom : 1px solid #84B0C7;
+ font-size : 80%;
+ font-weight : bold;
+ text-decoration : none;
+}
+
+DIV.tabs A:hover
+{
+ background-position: 100% -150px;
+}
+
+DIV.tabs A:link, DIV.tabs A:visited,
+DIV.tabs A:active, DIV.tabs A:hover
+{
+ color: #1A419D;
+}
+
+DIV.tabs SPAN
+{
+ float : left;
+ display : block;
+ background : url("tab_l.gif") no-repeat left top;
+ padding : 5px 9px;
+ white-space : nowrap;
+}
+
+DIV.tabs #MSearchBox
+{
+ float : right;
+ display : inline;
+ font-size : 1em;
+}
+
+DIV.tabs TD
+{
+ font-size : 80%;
+ font-weight : bold;
+ text-decoration : none;
+}
+
+
+
+/* Commented Backslash Hack hides rule from IE5-Mac \*/
+DIV.tabs SPAN {float : none;}
+/* End IE5-Mac hack */
+
+DIV.tabs A:hover SPAN
+{
+ background-position: 0% -150px;
+}
+
+DIV.tabs LI.current A
+{
+ background-position: 100% -150px;
+ border-width : 0px;
+}
+
+DIV.tabs LI.current SPAN
+{
+ background-position: 0% -150px;
+ padding-bottom : 6px;
+}
+
+DIV.navpath
+{
+ background : none;
+ border : none;
+ border-bottom : 1px solid #84B0C7;
+ text-align : center;
+ margin : 2px;
+ padding : 2px;
+}
diff --git a/doc/doxygen/html/versionInfo_8H_source.html b/doc/doxygen/html/versionInfo_8H_source.html
new file mode 100644
index 0000000..9fafafd
--- /dev/null
+++ b/doc/doxygen/html/versionInfo_8H_source.html
@@ -0,0 +1,93 @@
+
+
+
+
+
+
1.6.3
+
+
diff --git a/doc/forceModel.html b/doc/forceModel.html
new file mode 100644
index 0000000..411ada2
--- /dev/null
+++ b/doc/forceModel.html
@@ -0,0 +1,50 @@
+
+Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels +( + model_x + model_y +); ++
Examples: +
+forceModels +( + Archimedes + DiFeliceDrag +); ++
Note: This examples list might not be complete - please look for other models (forceModel_XY) in this documentation. +
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. All force models selected are executed sequentially and the forces on the particles are superposed. +
+Restrictions: +
+None. +
+Related commands: +
+Archimedes, DiFeliceDrag, gradPForce, viscForce +
+Note: This examples list may be incomplete - please look for other models (forceModel_XY) in this documentation. +
+Default: none. +
+ diff --git a/doc/forceModel.txt b/doc/forceModel.txt new file mode 100644 index 0000000..790b110 --- /dev/null +++ b/doc/forceModel.txt @@ -0,0 +1,46 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + model_x + model_y +); :pre + +model = name of force model to be applied :ul + +[Examples:] + +forceModels +( + Archimedes + DiFeliceDrag +); :pre + +Note: This examples list might not be complete - please look for other models (forceModel_XY) in this documentation. + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. All force models selected are executed sequentially and the forces on the particles are superposed. + +[Restrictions:] + +None. + +[Related commands:] + +"Archimedes"_forceModel_Archimedes.html, "DiFeliceDrag"_forceModel_DiFeliceDrag.html, "gradPForce"_forceModel_gradPForce.html, "viscForce"_forceModel_viscForce.html + +Note: This examples list may be incomplete - please look for other models (forceModel_XY) in this documentation. + +[Default:] none. diff --git a/doc/forceModel_Archimedes.html b/doc/forceModel_Archimedes.html new file mode 100644 index 0000000..95e5156 --- /dev/null +++ b/doc/forceModel_Archimedes.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ Archimedes
+);
+ArchimedesProps
+{
+ densityFieldName "density";
+ gravityFieldName "gravity";
+};
+
+Examples: +
+forceModels
+(
+ Archimedes
+);
+ArchimedesProps
+{
+ densityFieldName "rho";
+ gravityFieldName "g";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The Archimedes model is a model that calculates the Archimedes' volumetric lift force stemming from density difference of fluid and particle. +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_Archimedes.txt b/doc/forceModel_Archimedes.txt new file mode 100644 index 0000000..cd3f765 --- /dev/null +++ b/doc/forceModel_Archimedes.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_Archimedes command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + Archimedes +); +ArchimedesProps +\{ + densityFieldName "density"; + gravityFieldName "gravity"; +\}; :pre + +{density} = name of the finite volume density field :ulb,l +{gravity} = name of the finite volume gravity field :l +:ule + +[Examples:] + +forceModels +( + Archimedes +); +ArchimedesProps +\{ + densityFieldName "rho"; + gravityFieldName "g"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The Archimedes model is a model that calculates the Archimedes' volumetric lift force stemming from density difference of fluid and particle. + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_ArchimedesIB.html b/doc/forceModel_ArchimedesIB.html new file mode 100644 index 0000000..df087d3 --- /dev/null +++ b/doc/forceModel_ArchimedesIB.html @@ -0,0 +1,60 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ ArchimedesIB
+);
+ArchimedesIBProps
+{
+ densityFieldName "density";
+ gravityFieldName "gravity";
+ voidfractionFieldName "voidfraction";
+};
+
+Examples: +
+forceModels
+(
+ ArchimedesIB
+);
+ArchimedesIBProps
+{
+ densityFieldName "rho";
+ gravityFieldName "g";
+ voidfractionFieldName "voidfractionNext";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The ArchimedesIB model is a model that calculates the ArchimedesIB' volumetric lift force stemming from density difference of fluid and particle. This model is especially suited for resolved CFD-DEM simulations where the particle is represented by immersed boundrary method. +
+Restrictions: +
+Only for immersed boundary solvers. +
+Related commands: +
+ + diff --git a/doc/forceModel_ArchimedesIB.txt b/doc/forceModel_ArchimedesIB.txt new file mode 100644 index 0000000..4b26bb3 --- /dev/null +++ b/doc/forceModel_ArchimedesIB.txt @@ -0,0 +1,54 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_ArchimedesIB command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + ArchimedesIB +); +ArchimedesIBProps +\{ + densityFieldName "density"; + gravityFieldName "gravity"; + voidfractionFieldName "voidfraction"; +\}; :pre + +{density} = name of the finite volume density field :ulb,l +{gravity} = name of the finite volume gravity field :l +{voidfraction} = name of the finite volume voidfraction field :l +:ule + +[Examples:] + +forceModels +( + ArchimedesIB +); +ArchimedesIBProps +\{ + densityFieldName "rho"; + gravityFieldName "g"; + voidfractionFieldName "voidfractionNext"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The ArchimedesIB model is a model that calculates the ArchimedesIB' volumetric lift force stemming from density difference of fluid and particle. This model is especially suited for resolved CFD-DEM simulations where the particle is represented by immersed boundrary method. + +[Restrictions:] + +Only for immersed boundary solvers. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_DiFeliceDrag.html b/doc/forceModel_DiFeliceDrag.html new file mode 100644 index 0000000..1fe8dac --- /dev/null +++ b/doc/forceModel_DiFeliceDrag.html @@ -0,0 +1,60 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ DiFeliceDrag
+);
+DiFeliceDragProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+ interpolation;
+};
+
+Examples: +
+forceModels
+(
+ DiFeliceDrag
+);
+DiFeliceDragProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+ interpolation;
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The DiFeliceDrag model is a model that calculates the particle based drag force following the correlation of Di Felice (see Zhou et al. (2010), JFM). +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_DiFeliceDrag.txt b/doc/forceModel_DiFeliceDrag.txt new file mode 100644 index 0000000..b2e0c85 --- /dev/null +++ b/doc/forceModel_DiFeliceDrag.txt @@ -0,0 +1,54 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_DiFeliceDrag command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + DiFeliceDrag +); +DiFeliceDragProps +\{ + velFieldName "U"; + densityFieldName "density"; + interpolation; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume gravity field :l +{interpolation} = flag to use interolate interpolated voidfraction and velocity values (normally off) :l +:ule + +[Examples:] + +forceModels +( + DiFeliceDrag +); +DiFeliceDragProps +\{ + velFieldName "U"; + densityFieldName "rho"; + interpolation; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The DiFeliceDrag model is a model that calculates the particle based drag force following the correlation of Di Felice (see Zhou et al. (2010), JFM). + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_GidaspowDrag.html b/doc/forceModel_GidaspowDrag.html new file mode 100644 index 0000000..bb400d2 --- /dev/null +++ b/doc/forceModel_GidaspowDrag.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ GidaspowDrag
+);
+GidaspowDragProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+};
+
+Examples: +
+forceModels
+(
+ GidaspowDrag
+);
+GidaspowDragProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The GidaspowDrag model is a model that calculates the particle based drag force following the correlation of Gidaspow which is a combination of Egrun (1952) and Wen & Yu (1966) (see Zhu et al. (2007): "Discrete particle simulation of particulate systems: Theoretical developments" ,ChemEngScience). +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_GidaspowDrag.txt b/doc/forceModel_GidaspowDrag.txt new file mode 100644 index 0000000..0f6938c --- /dev/null +++ b/doc/forceModel_GidaspowDrag.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_GidaspowDrag command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + GidaspowDrag +); +GidaspowDragProps +\{ + velFieldName "U"; + densityFieldName "density"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume gravity field :l +:ule + +[Examples:] + +forceModels +( + GidaspowDrag +); +GidaspowDragProps +\{ + velFieldName "U"; + densityFieldName "rho"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The GidaspowDrag model is a model that calculates the particle based drag force following the correlation of Gidaspow which is a combination of Egrun (1952) and Wen & Yu (1966) (see Zhu et al. (2007): "Discrete particle simulation of particulate systems: Theoretical developments" ,ChemEngScience). + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_KochHillDrag.html b/doc/forceModel_KochHillDrag.html new file mode 100644 index 0000000..1f86008 --- /dev/null +++ b/doc/forceModel_KochHillDrag.html @@ -0,0 +1,63 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ KochHillDrag
+);
+KochHillDragProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+ voidfractionFieldName "voidfraction";
+ interpolation;
+};
+
+Examples: +
+forceModels
+(
+ KochHillDrag
+);
+KochHillDragProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+ voidfractionFieldName "voidfraction";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The KochHillDrag model is a model that calculates the particle based drag force following the correlation of Koch & Hill (2001) (see van Buijtenen et al. (2011): "Numerical and experimental study on multiple-spout fluidized beds" ,ChemEngScience). +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_KochHillDrag.txt b/doc/forceModel_KochHillDrag.txt new file mode 100644 index 0000000..39e8852 --- /dev/null +++ b/doc/forceModel_KochHillDrag.txt @@ -0,0 +1,56 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_KochHillDrag command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + KochHillDrag +); +KochHillDragProps +\{ + velFieldName "U"; + densityFieldName "density"; + voidfractionFieldName "voidfraction"; + interpolation; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume gravity field :l +{voidfraction} = name of the finite volume voidfraction field :l +{interpolation} = flag to use interolate interpolated voidfraction and fluid velocity values (normally off) :l +:ule + +[Examples:] + +forceModels +( + KochHillDrag +); +KochHillDragProps +\{ + velFieldName "U"; + densityFieldName "rho"; + voidfractionFieldName "voidfraction"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The KochHillDrag model is a model that calculates the particle based drag force following the correlation of Koch & Hill (2001) (see van Buijtenen et al. (2011): "Numerical and experimental study on multiple-spout fluidized beds" ,ChemEngScience). + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_LaEuScalarTemp.html b/doc/forceModel_LaEuScalarTemp.html new file mode 100644 index 0000000..03f3cd3 --- /dev/null +++ b/doc/forceModel_LaEuScalarTemp.html @@ -0,0 +1,84 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ LaEuScalarTemp
+);
+LaEuScalarTempProps
+{
+ velFieldName "U";
+ tempFieldName "T";
+ tempSourceFieldName "Tsource";
+ voidfractionFieldName "voidfraction";
+ partTempName "Temp";
+ partHeatFluxName "convectiveHeatFlux";
+ lambda value;
+ Cp value1;
+ densityFieldName "density";
+};
+
+Examples: +
+forceModels
+(
+ LaEuScalarTemp
+);
+LaEuScalarTempProps
+{
+ velFieldName "U";
+ tempFieldName "T";
+ tempSourceFieldName "Tsource";
+ voidfractionFieldName "voidfraction";
+ partTempName "Temp";
+ partHeatFluxName "convectiveHeatFlux";
+ lambda 0.0256;
+ Cp 1007;
+ densityFieldName "rho";
+}
+
+Description: +
+This "forceModel" does not influence the particles or the fluid flow! Using the particles' temperature a scalar field representing "particle-fluid heatflux" is calculated. The solver then uses this source field in the scalar transport equation for the temperature. The model for convective heat transfer is based on Li and Mason (2000), A computational investigation of transient heat transfer in pneumatic transport of granular particles, Pow.Tech 112 +
+Restrictions: +
+Goes only with cfdemSolverScalar. +
+Related commands: +
+ + diff --git a/doc/forceModel_LaEuScalarTemp.txt b/doc/forceModel_LaEuScalarTemp.txt new file mode 100644 index 0000000..6c0daac --- /dev/null +++ b/doc/forceModel_LaEuScalarTemp.txt @@ -0,0 +1,72 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_LaEuScalarTemp command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + LaEuScalarTemp +); +LaEuScalarTempProps +\{ + velFieldName "U"; + tempFieldName "T"; + tempSourceFieldName "Tsource"; + voidfractionFieldName "voidfraction"; + partTempName "Temp"; + partHeatFluxName "convectiveHeatFlux"; + lambda value; + Cp value1; + densityFieldName "density"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{T} = name of the finite volume scalar temperature field :l +{Tsource} = name of the finite volume scalar temperature source field :l +{voidfraction} = name of the finite volume voidfraction field :l +{Temp} = name of the DEM data representing the particles temperature :l +{convectiveHeatFlux} = name of the DEM data representing the particle-fluid convective heat flux :l +{value} = fluid thermal conductivity \[W/(m*K)\] :l +{value1} = fluid specific heat capacity \[W*s/(kg*K)\] :l +{density} = name of the finite volume fluid density field :l +:ule + +[Examples:] + +forceModels +( + LaEuScalarTemp +); +LaEuScalarTempProps +\{ + velFieldName "U"; + tempFieldName "T"; + tempSourceFieldName "Tsource"; + voidfractionFieldName "voidfraction"; + partTempName "Temp"; + partHeatFluxName "convectiveHeatFlux"; + lambda 0.0256; + Cp 1007; + densityFieldName "rho"; +\} :pre + +[Description:] + +This "forceModel" does not influence the particles or the fluid flow! Using the particles' temperature a scalar field representing "particle-fluid heatflux" is calculated. The solver then uses this source field in the scalar transport equation for the temperature. The model for convective heat transfer is based on Li and Mason (2000), A computational investigation of transient heat transfer in pneumatic transport of granular particles, Pow.Tech 112 + +[Restrictions:] + +Goes only with cfdemSolverScalar. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_MeiLift.html b/doc/forceModel_MeiLift.html new file mode 100644 index 0000000..c5bef7a --- /dev/null +++ b/doc/forceModel_MeiLift.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ MeiLift
+);
+MeiLiftProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+};
+
+Examples: +
+forceModels
+(
+ MeiLift
+);
+MeiLiftProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The MeiLift model calculates the lift force for each particle based on Loth and Dorgan (2009) +
+Restrictions: +
+None. +
+Related commands: +
+ + diff --git a/doc/forceModel_MeiLift.txt b/doc/forceModel_MeiLift.txt new file mode 100644 index 0000000..9ebb590 --- /dev/null +++ b/doc/forceModel_MeiLift.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_MeiLift command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + MeiLift +); +MeiLiftProps +\{ + velFieldName "U"; + densityFieldName "density"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume fluid density field :l +:ule + +[Examples:] + +forceModels +( + MeiLift +); +MeiLiftProps +\{ + velFieldName "U"; + densityFieldName "rho"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The MeiLift model calculates the lift force for each particle based on Loth and Dorgan (2009) + +[Restrictions:] + +None. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_SchillerNaumannDrag.html b/doc/forceModel_SchillerNaumannDrag.html new file mode 100644 index 0000000..acd2fa3 --- /dev/null +++ b/doc/forceModel_SchillerNaumannDrag.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ SchillerNaumannDrag
+);
+SchillerNaumannDragProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+};
+
+Examples: +
+forceModels
+(
+ SchillerNaumannDrag
+);
+SchillerNaumannDragProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The SchillerNaumannDrag model is a model that calculates the particle based drag force following the correlation of Schiller and Naumann. +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_SchillerNaumannDrag.txt b/doc/forceModel_SchillerNaumannDrag.txt new file mode 100644 index 0000000..4357264 --- /dev/null +++ b/doc/forceModel_SchillerNaumannDrag.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_SchillerNaumannDrag command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + SchillerNaumannDrag +); +SchillerNaumannDragProps +\{ + velFieldName "U"; + densityFieldName "density"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume gravity field :l +:ule + +[Examples:] + +forceModels +( + SchillerNaumannDrag +); +SchillerNaumannDragProps +\{ + velFieldName "U"; + densityFieldName "rho"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The SchillerNaumannDrag model is a model that calculates the particle based drag force following the correlation of Schiller and Naumann. + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_ShirgaonkarIB.html b/doc/forceModel_ShirgaonkarIB.html new file mode 100644 index 0000000..5956cc2 --- /dev/null +++ b/doc/forceModel_ShirgaonkarIB.html @@ -0,0 +1,64 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ ShirgaonkarIB
+);
+ShirgaonkarIBProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+ pressureFieldName "pressure";
+};
+
+Examples: +
+forceModels
+(
+ ShirgaonkarIB
+);
+ShirgaonkarIBProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+ pressureFieldName "p";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The ShirgaonkarIB model calculates the drag force (viscous and pressure force) acting on each particle in a resolved manner (see Shirgaonkar et al. (2009): "A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsion", Journal of Comp. Physics). This model is only suited for resolved CFD-DEM simulations where the particle is represented by immersed boundrary method. +
+References: +
+SHIRGAONKAR, A.A., MACIVER, M.A. and PATANKAR, N.A., (2009), “A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsionâ€, J. Comput. Phys., 228, 2366-2390. +
+Restrictions: +
+Only for immersed boundary solvers. +
+Related commands: +
+ + diff --git a/doc/forceModel_ShirgaonkarIB.txt b/doc/forceModel_ShirgaonkarIB.txt new file mode 100644 index 0000000..f9a6223 --- /dev/null +++ b/doc/forceModel_ShirgaonkarIB.txt @@ -0,0 +1,58 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_ShirgaonkarIB command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + ShirgaonkarIB +); +ShirgaonkarIBProps +\{ + velFieldName "U"; + densityFieldName "density"; + pressureFieldName "pressure"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume density field :l +{pressure} = name of the finite volume pressure field :l +:ule + +[Examples:] + +forceModels +( + ShirgaonkarIB +); +ShirgaonkarIBProps +\{ + velFieldName "U"; + densityFieldName "rho"; + pressureFieldName "p"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The ShirgaonkarIB model calculates the drag force (viscous and pressure force) acting on each particle in a resolved manner (see Shirgaonkar et al. (2009): "A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsion", Journal of Comp. Physics). This model is only suited for resolved CFD-DEM simulations where the particle is represented by immersed boundrary method. + +[References:] + +SHIRGAONKAR, A.A., MACIVER, M.A. and PATANKAR, N.A., (2009), “A new mathematical formulation and fast algorithm for fully resolved simulation of self-propulsionâ€, J. Comput. Phys., 228, 2366-2390. + +[Restrictions:] + +Only for immersed boundary solvers. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_gradPForce.html b/doc/forceModel_gradPForce.html new file mode 100644 index 0000000..410cd20 --- /dev/null +++ b/doc/forceModel_gradPForce.html @@ -0,0 +1,64 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ gradPForce;
+);
+gradPForceProps
+{
+ pFieldName "pressure";
+ densityFieldName "density";
+ velocityFieldName "U";
+ interpolation;
+};
+
+Examples: +
+forceModels
+(
+ gradPForce;
+);
+gradPForceProps
+{
+ pFieldName "p";
+ densityFieldName "rho";
+ velocityFieldName "U";
+ interpolation;
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The gradPForce model is a model that calculates the particle based pressure gradient force -(grad(p)) * Vparticle (see Zhou et al. (2010): "Discrete particle simulation of particle-fluid flow: model formulations and their applicability" ,JFM). +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_gradPForce.txt b/doc/forceModel_gradPForce.txt new file mode 100644 index 0000000..c1d2bdf --- /dev/null +++ b/doc/forceModel_gradPForce.txt @@ -0,0 +1,57 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_gradPForce command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + gradPForce; +); +gradPForceProps +\{ + pFieldName "pressure"; + densityFieldName "density"; + velocityFieldName "U"; + interpolation; +\}; :pre + +{pressure} = name of the finite volume fluid pressure field :ulb,l +{density} = name of the finite volume gravity field :l +{U} = name of the finite volume fluid velocity field :l +{interpolation} = flag to use interolate interpolated pressure values (normally off) :l +:ule + +[Examples:] + +forceModels +( + gradPForce; +); +gradPForceProps +\{ + pFieldName "p"; + densityFieldName "rho"; + velocityFieldName "U"; + interpolation; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The gradPForce model is a model that calculates the particle based pressure gradient force -(grad(p)) * Vparticle (see Zhou et al. (2010): "Discrete particle simulation of particle-fluid flow: model formulations and their applicability" ,JFM). + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_noDrag.html b/doc/forceModel_noDrag.html new file mode 100644 index 0000000..4bba14a --- /dev/null +++ b/doc/forceModel_noDrag.html @@ -0,0 +1,40 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels +( + off +); ++
Examples: +
+forceModels +( + off +); ++
Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The noDrag model sets the forces acting on the particle to zero. If several force models are selected and noDrag is the last model being executed, the fluid particle force will be set to zero. +
+Restrictions: +
+None. +
+Related commands: +
+ + diff --git a/doc/forceModel_noDrag.txt b/doc/forceModel_noDrag.txt new file mode 100644 index 0000000..a8838e2 --- /dev/null +++ b/doc/forceModel_noDrag.txt @@ -0,0 +1,37 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_noDrag command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + off +); :pre + +[Examples:] + +forceModels +( + off +); :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The noDrag model sets the forces acting on the particle to zero. If several force models are selected and noDrag is the last model being executed, the fluid particle force will be set to zero. + +[Restrictions:] + +None. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_virtualMassForce.html b/doc/forceModel_virtualMassForce.html new file mode 100644 index 0000000..98202c4 --- /dev/null +++ b/doc/forceModel_virtualMassForce.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ virtualMassForce
+);
+virtualMassForceProps
+{
+ velFieldName "U";
+ densityFieldName "density";
+};
+
+Examples: +
+forceModels
+(
+ virtualMassForce
+);
+virtualMassForceProps
+{
+ velFieldName "U";
+ densityFieldName "rho";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The virtualMassForce model calculates the virtual mass force for each particle. +
+Restrictions: +
+Model not validated! +
+Related commands: +
+ + diff --git a/doc/forceModel_virtualMassForce.txt b/doc/forceModel_virtualMassForce.txt new file mode 100644 index 0000000..af55780 --- /dev/null +++ b/doc/forceModel_virtualMassForce.txt @@ -0,0 +1,51 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_virtualMassForce command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + virtualMassForce +); +virtualMassForceProps +\{ + velFieldName "U"; + densityFieldName "density"; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume fluid density field :l +:ule + +[Examples:] + +forceModels +( + virtualMassForce +); +virtualMassForceProps +\{ + velFieldName "U"; + densityFieldName "rho"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The virtualMassForce model calculates the virtual mass force for each particle. + +[Restrictions:] + +Model not validated! + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/forceModel_viscForce.html b/doc/forceModel_viscForce.html new file mode 100644 index 0000000..73b6ad9 --- /dev/null +++ b/doc/forceModel_viscForce.html @@ -0,0 +1,59 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+forceModels
+(
+ viscForce;
+);
+viscForceProps
+{
+ velocityFieldName "U";
+ densityFieldName "density";
+ interpolation;
+};
+
+Examples: +
+forceModels
+(
+ viscForce;
+);
+viscForceProps
+{
+ velocityFieldName "U";
+ densityFieldName "density";
+}
+
+Description: +
+The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The viscForce model calculates the particle based viscous force, -(grad(tau)) * Vparticle (see Zhou et al. (2010): "Discrete particle simulation of particle-fluid flow: model formulations and their applicability" ,JFM). +
+Restrictions: +
+none. +
+Related commands: +
+ + diff --git a/doc/forceModel_viscForce.txt b/doc/forceModel_viscForce.txt new file mode 100644 index 0000000..a7986d1 --- /dev/null +++ b/doc/forceModel_viscForce.txt @@ -0,0 +1,53 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +forceModel_viscForce command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +forceModels +( + viscForce; +); +viscForceProps +\{ + velocityFieldName "U"; + densityFieldName "density"; + interpolation; +\}; :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{density} = name of the finite volume gravity field :l +{interpolation} = flag to use interolate interpolated stress values (normally off) :l +:ule + +[Examples:] + +forceModels +( + viscForce; +); +viscForceProps +\{ + velocityFieldName "U"; + densityFieldName "density"; +\} :pre + +[Description:] + +The force model performs the calculation of forces (e.g. fluid-particle interaction forces) acting on each DEM particle. The viscForce model calculates the particle based viscous force, -(grad(tau)) * Vparticle (see Zhou et al. (2010): "Discrete particle simulation of particle-fluid flow: model formulations and their applicability" ,JFM). + +[Restrictions:] + +none. + +[Related commands:] + +"forceModel"_forceModel.html + diff --git a/doc/githubAccess_public.html b/doc/githubAccess_public.html new file mode 100644 index 0000000..1b6dd27 --- /dev/null +++ b/doc/githubAccess_public.html @@ -0,0 +1,140 @@ + +Description: +
+This routine describes how to setup a github account and pull repositories of the CFDEMproject. +After setting some environment variables LIGGGHTS and CFDEMcoupling can be compiled +
+Procedure: +
+Basically the following steps have to be performed: +
+git clone the desired repository: +
+If not already done, open a terminal and create a directory for LIGGGHTS in $HOME: +
+cd ++
mkdir LIGGGHTS ++
cd LIGGGHTS ++
To clone the public LIGGGHTS repository, open a terminal and execute: +
++git clone git://cfdem.git.sourceforge.net/gitroot/cfdem/liggghtsdev LIGGGHTS-PUBLIC +
If not already done, open a terminal and create a directory for CFDEMcoupling in $HOME: +
+cd ++
mkdir CFDEM ++
cd CFDEM ++
Make sure that OpenFOAM(R)-2.1.x is already set up correctly! +
+To clone the public CFDEMcoupling repository, open a terminal and execute: +
++git clone git://github.com/CFDEMproject/CFDEMcoupling-PUBLIC.git CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION +
Note: the git protocol will not work if your computer is behind a firewall which blocks the relevant TCP port, you can use alternatively: +
+git clone https://github.com/CFDEMproject/CFDEMcoupling-PUBLIC.git ++
Update your repositories by git pull: +
+To get the latest version, open a terminal, go to the location of your local installation and type: +Warning: git stash will remove your changes in $HOME/CFDEM/CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION ! +
+cd $HOME/CFDEM/CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION +git stash +git pull ++
set environment variables: +
+Now you need to set some environment variables in ~/.bashrc (if you use c-shell, manipulate ~/.cshrc accordingly). Open ~/.bashrc +
+gedit ~/.bashrc & ++
add the lines: +
+#================================================# +#- source cfdem env vars +export CFDEM_VERSION=PUBLIC +export CFDEM_PROJECT_DIR=$HOME/CFDEM/CFDEMcoupling-$CFDEM_VERSION-$WM_PROJECT_VERSION +export CFDEM_SRC_DIR=$CFDEM_PROJECT_DIR/src/lagrangian/cfdemParticle +export CFDEM_SOLVER_DIR=$CFDEM_PROJECT_DIR/applications/solvers +export CFDEM_DOC_DIR=$CFDEM_PROJECT_DIR/doc +export CFDEM_UT_DIR=$CFDEM_PROJECT_DIR/applications/utilities +export CFDEM_TUT_DIR=$CFDEM_PROJECT_DIR/tutorials +export CFDEM_PROJECT_USER_DIR=$HOME/CFDEM/$LOGNAME-$CFDEM_VERSION-$WM_PROJECT_VERSION +export CFDEM_bashrc=$CFDEM_SRC_DIR/etc/bashrc +export CFDEM_LIGGGHTS_SRC_DIR=$HOME/LIGGGHTS/LIGGGHTS-PUBLIC/src +export CFDEM_LIGGGHTS_MAKEFILE_NAME=fedora_fpic +. $CFDEM_bashrc +#================================================# ++
Save the ~/.bashrc, open a new terminal and test the settings. The commands: +
+$CFDEM_PROJECT_DIR +$CFDEM_SRC_DIR +$CFDEM_LIGGGHTS_SRC_DIR ++
should give "...: is a directory" otherwise something went wrong and the environment variables in ~/bashrc are not set correctly. +
+To specify the paths of pizza, please check the settings in $CFDEM_SRC_DIR/etc/bashrc. +
+If $CFDEM_SRC_DIR is set correctly, you can type +
+cfdemSysTest ++
to get some information if the paths are set correctly. +
+compile LIGGGHTS and CFDEMcoupling: +
+If above settings were done correctly, you can compile LIGGGHTS by typing: +
+cfdemCompLIG ++
and you can then compile CFDEMcoupling by typing: +
+cfdemCompCFDEM ++
You can run the tutorial cases by executing .../etc/testTutorial.sh through the alias cfdemTestTUT. +Alternatively you can run each tutorial using the Allrun.sh scripts in the tutorial directories. +
+In case questions concerning the installation arise, please feel free to contact our forum at www.cfdem.com. +
+run your own cases: +
+If you want to run your own cases, please do so in $CFDEM_PROJECT_USER_DIR/run which is automatically being generated. E.g. copy one of the tutorial cases there, adapt it to your needs. +Changes in $CFDEM_TUT_DIR will be lost after every git stash! +
+ diff --git a/doc/githubAccess_public.pdf b/doc/githubAccess_public.pdf new file mode 100644 index 0000000..96b8097 Binary files /dev/null and b/doc/githubAccess_public.pdf differ diff --git a/doc/githubAccess_public.txt b/doc/githubAccess_public.txt new file mode 100644 index 0000000..20cf878 --- /dev/null +++ b/doc/githubAccess_public.txt @@ -0,0 +1,124 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) +:link(github,http://github.com) +:link(gitHelp,http://help.github.com/linux-set-up-git) + +:line +githubAccess_public :h3 +:line + +[Description:] + +This routine describes how to setup a github account and pull repositories of the CFDEMproject. +After setting some environment variables LIGGGHTS and CFDEMcoupling can be compiled + +[Procedure:] + +Basically the following steps have to be performed: + +{git clone} the desired repository :ulb,l +update your repositories by {git pull} :l +set environment variables :l +compile LIGGGHTS and CFDEMcoupling :l +run your own cases :l +:ule + +[{git clone} the desired repository:] + +If not already done, open a terminal and create a directory for LIGGGHTS in $HOME: + +cd :pre +mkdir LIGGGHTS :pre +cd LIGGGHTS :pre + +To clone the public LIGGGHTS repository, open a terminal and execute: + +git clone git://cfdem.git.sourceforge.net/gitroot/cfdem/liggghtsdev LIGGGHTS-PUBLIC :pre,h6 + +If not already done, open a terminal and create a directory for CFDEMcoupling in $HOME: + +cd :pre +mkdir CFDEM :pre +cd CFDEM :pre + +Make sure that OpenFOAM(R)-2.1.x is already set up correctly! + +To clone the public CFDEMcoupling repository, open a terminal and execute: + +git clone git://github.com/CFDEMproject/CFDEMcoupling-PUBLIC.git CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION :pre,h6 + +Note: the git protocol will not work if your computer is behind a firewall which blocks the relevant TCP port, you can use alternatively: + +git clone https://github.com/CFDEMproject/CFDEMcoupling-PUBLIC.git :pre + +[Update your repositories by {git pull}:] + +To get the latest version, open a terminal, go to the location of your local installation and type: +{Warning: git stash will remove your changes in $HOME/CFDEM/CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION !} + +cd $HOME/CFDEM/CFDEMcoupling-PUBLIC-$WM_PROJECT_VERSION +git stash +git pull :pre + +[set environment variables:] + +Now you need to set some environment variables in ~/.bashrc (if you use c-shell, manipulate ~/.cshrc accordingly). Open ~/.bashrc + +gedit ~/.bashrc & :pre + +add the lines: + +#================================================# +#- source cfdem env vars +export CFDEM_VERSION=PUBLIC +export CFDEM_PROJECT_DIR=$HOME/CFDEM/CFDEMcoupling-$CFDEM_VERSION-$WM_PROJECT_VERSION +export CFDEM_SRC_DIR=$CFDEM_PROJECT_DIR/src/lagrangian/cfdemParticle +export CFDEM_SOLVER_DIR=$CFDEM_PROJECT_DIR/applications/solvers +export CFDEM_DOC_DIR=$CFDEM_PROJECT_DIR/doc +export CFDEM_UT_DIR=$CFDEM_PROJECT_DIR/applications/utilities +export CFDEM_TUT_DIR=$CFDEM_PROJECT_DIR/tutorials +export CFDEM_PROJECT_USER_DIR=$HOME/CFDEM/$LOGNAME-$CFDEM_VERSION-$WM_PROJECT_VERSION +export CFDEM_bashrc=$CFDEM_SRC_DIR/etc/bashrc +export CFDEM_LIGGGHTS_SRC_DIR=$HOME/LIGGGHTS/LIGGGHTS-PUBLIC/src +export CFDEM_LIGGGHTS_MAKEFILE_NAME=fedora_fpic +. $CFDEM_bashrc +#================================================# :pre + +Save the ~/.bashrc, open a new terminal and test the settings. The commands: + +$CFDEM_PROJECT_DIR +$CFDEM_SRC_DIR +$CFDEM_LIGGGHTS_SRC_DIR :pre + +should give "...: is a directory" otherwise something went wrong and the environment variables in ~/bashrc are not set correctly. + +To specify the paths of pizza, please check the settings in $CFDEM_SRC_DIR/etc/bashrc. + +If $CFDEM_SRC_DIR is set correctly, you can type + +cfdemSysTest :pre + +to get some information if the paths are set correctly. + +[compile LIGGGHTS and CFDEMcoupling:] + +If above settings were done correctly, you can compile LIGGGHTS by typing: + +cfdemCompLIG :pre + +and you can then compile CFDEMcoupling by typing: + +cfdemCompCFDEM :pre + +You can run the tutorial cases by executing .../etc/testTutorial.sh through the alias {cfdemTestTUT}. +Alternatively you can run each tutorial using the {Allrun.sh} scripts in the tutorial directories. + +In case questions concerning the installation arise, please feel free to contact our forum at www.cfdem.com. + +[run your own cases:] + +If you want to run your own cases, please do so in $CFDEM_PROJECT_USER_DIR/run which is automatically being generated. E.g. copy one of the tutorial cases there, adapt it to your needs. +Changes in $CFDEM_TUT_DIR will be lost after every {git stash}! + diff --git a/doc/liggghtsCommandModel.html b/doc/liggghtsCommandModel.html new file mode 100644 index 0000000..2c0ca7e --- /dev/null +++ b/doc/liggghtsCommandModel.html @@ -0,0 +1,44 @@ + +Syntax: +
+Defined in liggghtsCommmands dictionary. +
+liggghtsCommandModels +( + model_x + model_y +); ++
Examples: +
+liggghtsCommandModels +( + runLiggghts + writeLiggghts +); ++
Note: This examples list might not be complete - please look for other models (liggghtsCommandModel_XY) in this documentation. +
+Description: +
+The liggghtsCommandModel is the base class to execute DEM commands within a CFD run. +
+Restrictions: +
+Works only with MPI coupling. +
+Default: none. +
+ diff --git a/doc/liggghtsCommandModel.txt b/doc/liggghtsCommandModel.txt new file mode 100644 index 0000000..37fbe26 --- /dev/null +++ b/doc/liggghtsCommandModel.txt @@ -0,0 +1,40 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +liggghtsCommandModel command :h3 + +[Syntax:] + +Defined in liggghtsCommmands dictionary. + +liggghtsCommandModels +( + model_x + model_y +); :pre + +model = name of the liggghtsCommandModel to be applied :ul + +[Examples:] + +liggghtsCommandModels +( + runLiggghts + writeLiggghts +); :pre + +Note: This examples list might not be complete - please look for other models (liggghtsCommandModel_XY) in this documentation. + +[Description:] + +The liggghtsCommandModel is the base class to execute DEM commands within a CFD run. + +[Restrictions:] + +Works only with MPI coupling. + +[Default:] none. diff --git a/doc/liggghtsCommandModel_execute.html b/doc/liggghtsCommandModel_execute.html new file mode 100644 index 0000000..efb9e5c --- /dev/null +++ b/doc/liggghtsCommandModel_execute.html @@ -0,0 +1,94 @@ + +Syntax: +
+Defined in liggghtsCommmands dictionary. +
+liggghtsCommandModels
+(
+ execute
+);
+executeProps0
+{
+ command
+ (
+ run
+ $couplingInterval
+ );
+ runFirst switch1;
+ runLast switch2;
+ runEveryCouplingStep switch3;
+ runEveryWriteStep switch4;
+}
+
+Examples: +
+liggghtsCommandModels
+(
+ execute
+ execute
+);
+executeProps0
+{
+ command
+ (
+ run
+ $couplingInterval
+ );
+ runFirst off;
+ runLast off;
+ runEveryCouplingStep on;
+}
+executeProps1
+{
+ command
+ (
+ write_restart
+ noBlanks
+ dotdot
+ slash
+ DEM
+ slash
+ liggghts.restart_
+ timeStamp
+ );
+ runFirst off;
+ runLast off;
+ runEveryCouplingStep off;
+ runEveryWriteStep on;
+}
+
+Description: +
+The execute liggghtsCommand Model can be used to execute a LIGGGHTS command during a CFD run. In above example execute_0 for instance executes "run $couplingInterval" every coupling step. $couplingInterval is automatically replaced by the correct number of DEM steps. Additionally execute_1 executes "write_restart ../DEM/liggghts.restart_$timeStamp" every writing step, where $timeStamp is automatically set. +
+Restrictions: None. +
+Related commands: +
+ + diff --git a/doc/liggghtsCommandModel_execute.txt b/doc/liggghtsCommandModel_execute.txt new file mode 100644 index 0000000..f0fec11 --- /dev/null +++ b/doc/liggghtsCommandModel_execute.txt @@ -0,0 +1,86 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +liggghtsCommandModel_execute command :h3 + +[Syntax:] + +Defined in liggghtsCommmands dictionary. + +liggghtsCommandModels +( + execute +); +executeProps0 +\{ + command + ( + run + $couplingInterval + ); + runFirst switch1; + runLast switch2; + runEveryCouplingStep switch3; + runEveryWriteStep switch4; +\} :pre + +{command} = LIGGGHTS command to be executed. Each word in a new line, numbers and symbols need special treatment (e.g. $couplingInterval will be replaced by correct coupling interval in the simulation) :ulb,l +{switch1} = switch (choose on/off) if the command is executed only at first time step :l +{switch2} = switch (choose on/off) if the command is executed only at last time step :l +{switch3} = switch (choose on/off) if the command is executed at every coupling step :l +{switch4} = switch (choose on/off) if the command is executed at every writing step :l +:ule + +[Examples:] + +liggghtsCommandModels +( + execute + execute +); +executeProps0 +\{ + command + ( + run + $couplingInterval + ); + runFirst off; + runLast off; + runEveryCouplingStep on; +\} +executeProps1 +\{ + command + ( + write_restart + noBlanks + dotdot + slash + DEM + slash + liggghts.restart_ + timeStamp + ); + runFirst off; + runLast off; + runEveryCouplingStep off; + runEveryWriteStep on; +\} :pre + +[Description:] + +The execute liggghtsCommand Model can be used to execute a LIGGGHTS command during a CFD run. In above example execute_0 for instance executes "run $couplingInterval" every coupling step. $couplingInterval is automatically replaced by the correct number of DEM steps. Additionally execute_1 executes "write_restart ../DEM/liggghts.restart_$timeStamp" every writing step, where $timeStamp is automatically set. + +These rather complex execute commands can be replaced by the "readLiggghts" and "writeLiggghts" commands! :h4 + +[Restrictions:] None. + +[Related commands:] + +"liggghtsCommandModel"_liggghtsCommandModel.html + diff --git a/doc/liggghtsCommandModel_readLiggghtsData.html b/doc/liggghtsCommandModel_readLiggghtsData.html new file mode 100644 index 0000000..7710a67 --- /dev/null +++ b/doc/liggghtsCommandModel_readLiggghtsData.html @@ -0,0 +1,49 @@ + +Syntax: +
+Defined in liggghtsCommmands dictionary. +
+liggghtsCommandModels
+(
+ readLiggghtsData
+);
+readLiggghtsDataProps0
+{
+ ???
+}
+
+Examples: +
+liggghtsCommandModels
+(
+ readLiggghtsData
+ readLiggghtsData
+);
+readLiggghtsDataProps0
+{
+ ???
+}
+
+Description: +
+The readLiggghtsData liggghtsCommand Model can be used to ??? +
+Restrictions: +
+Note: Model is not up to date. +
+Related commands: +
+ + diff --git a/doc/liggghtsCommandModel_readLiggghtsData.txt b/doc/liggghtsCommandModel_readLiggghtsData.txt new file mode 100644 index 0000000..99c655e --- /dev/null +++ b/doc/liggghtsCommandModel_readLiggghtsData.txt @@ -0,0 +1,48 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +liggghtsCommandModel_readLiggghtsData command :h3 + +[Syntax:] + +Defined in liggghtsCommmands dictionary. + +liggghtsCommandModels +( + readLiggghtsData +); +readLiggghtsDataProps0 +\{ + ??? +\} :pre + + +[Examples:] + +liggghtsCommandModels +( + readLiggghtsData + readLiggghtsData +); +readLiggghtsDataProps0 +\{ + ??? +\} :pre + +[Description:] + +The readLiggghtsData liggghtsCommand Model can be used to ??? + + +[Restrictions:] + +Note: Model is not up to date. + +[Related commands:] + +"liggghtsCommandModel"_liggghtsCommandModel.html + diff --git a/doc/liggghtsCommandModel_runLiggghts.html b/doc/liggghtsCommandModel_runLiggghts.html new file mode 100644 index 0000000..97bd639 --- /dev/null +++ b/doc/liggghtsCommandModel_runLiggghts.html @@ -0,0 +1,38 @@ + +Syntax: +
+Defined in liggghtsCommmands dictionary. +
+liggghtsCommandModels +( + runLiggghts +); ++
Examples: +
+liggghtsCommandModels +( + runLiggghts +); ++
Description: +
+The liggghtsCommand models can be used to execute a LIGGGHTS command during a CFD run. The "runLiggghts" command executes the command "run $nrDEMsteps", where $nrDEMsteps is automaically set according to the coupling intervals, every coupling step. +
+Restrictions: None. +
+Related commands: +
+ + diff --git a/doc/liggghtsCommandModel_runLiggghts.txt b/doc/liggghtsCommandModel_runLiggghts.txt new file mode 100644 index 0000000..cd84c3c --- /dev/null +++ b/doc/liggghtsCommandModel_runLiggghts.txt @@ -0,0 +1,35 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +liggghtsCommandModel_runLiggghts command :h3 + +[Syntax:] + +Defined in liggghtsCommmands dictionary. + +liggghtsCommandModels +( + runLiggghts +); :pre + +[Examples:] + +liggghtsCommandModels +( + runLiggghts +); :pre + +[Description:] + +The liggghtsCommand models can be used to execute a LIGGGHTS command during a CFD run. The "runLiggghts" command executes the command "run $nrDEMsteps", where $nrDEMsteps is automaically set according to the coupling intervals, every coupling step. + +[Restrictions:] None. + +[Related commands:] + +"liggghtsCommandModel"_liggghtsCommandModel.html + diff --git a/doc/liggghtsCommandModel_writeLiggghts.html b/doc/liggghtsCommandModel_writeLiggghts.html new file mode 100644 index 0000000..9dcd2d6 --- /dev/null +++ b/doc/liggghtsCommandModel_writeLiggghts.html @@ -0,0 +1,55 @@ + +Syntax: +
+Defined in liggghtsCommmands dictionary. +
+liggghtsCommandModels
+(
+ writeLiggghts
+);
+writeLiggghtsProps
+{
+ writeName "name";
+ overwrite switch;
+}
+
+Examples: +
+liggghtsCommandModels
+(
+ runLiggghts
+ writeLiggghts
+);
+writeLiggghtsProps
+{
+ writeName "liggghts_restart";
+ overwrite off;
+}
+
+Description: +
+The liggghtsCommand models can be used to execute a LIGGGHTS command during a CFD write. The "writeLiggghts" command executes the command "write_restart $name", where $name is the name of the restart file, every write step. +
+Restrictions: None. +
+Related commands: +
+ + diff --git a/doc/liggghtsCommandModel_writeLiggghts.txt b/doc/liggghtsCommandModel_writeLiggghts.txt new file mode 100644 index 0000000..eb887ef --- /dev/null +++ b/doc/liggghtsCommandModel_writeLiggghts.txt @@ -0,0 +1,50 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +liggghtsCommandModel_writeLiggghts command :h3 + +[Syntax:] + +Defined in liggghtsCommmands dictionary. + +liggghtsCommandModels +( + writeLiggghts +); +writeLiggghtsProps +\{ + writeName "name"; + overwrite switch; +\} :pre + +{name} = name of the restart file to be written in /$caseDir/DEM/ :ulb,l +{switch} = switch (choose on/off) to select if only one restart file $name or many files $name_$timeStamp are written :l +:ule + +[Examples:] + +liggghtsCommandModels +( + runLiggghts + writeLiggghts +); +writeLiggghtsProps +\{ + writeName "liggghts_restart"; + overwrite off; +\} :pre + +[Description:] + +The liggghtsCommand models can be used to execute a LIGGGHTS command during a CFD write. The "writeLiggghts" command executes the command "write_restart $name", where $name is the name of the restart file, every write step. + +[Restrictions:] None. + +[Related commands:] + +"liggghtsCommandModel"_liggghtsCommandModel.html + diff --git a/doc/locateModel.html b/doc/locateModel.html new file mode 100644 index 0000000..58c59a0 --- /dev/null +++ b/doc/locateModel.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+locateModel model; ++
Examples: +
+locateModel engine; ++
Note: This examples list might not be complete - please look for other models (locateModel_XY) in this documentation. +
+Description: +
+The locateModel is the base class for models which search for the CFD cell and cellID corresponding to a position. In general it is used to find the cell a particle is located in. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/locateModel.txt b/doc/locateModel.txt new file mode 100644 index 0000000..b18b9e4 --- /dev/null +++ b/doc/locateModel.txt @@ -0,0 +1,30 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +locateModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +locateModel model; :pre + +model = name of the locateModel to be applied :ul + +[Examples:] + +locateModel engine; :pre + +Note: This examples list might not be complete - please look for other models (locateModel_XY) in this documentation. + +[Description:] + +The locateModel is the base class for models which search for the CFD cell and cellID corresponding to a position. In general it is used to find the cell a particle is located in. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/locateModel_engineSearch.html b/doc/locateModel_engineSearch.html new file mode 100644 index 0000000..3c44c7d --- /dev/null +++ b/doc/locateModel_engineSearch.html @@ -0,0 +1,51 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+locateModel engine;
+engineProps
+{
+ treeSearch switch1;
+}
+
+Examples: +
+locateModel engine;
+engineProps
+{
+ treeSearch false;
+}
+
+Description: +
+The locateModel "engine" locates the CFD cell and cellID corresponding to a given position. +The engineSearch locate Model can be used with different settings to use different algorithms: +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/locateModel_engineSearch.txt b/doc/locateModel_engineSearch.txt new file mode 100644 index 0000000..a341b03 --- /dev/null +++ b/doc/locateModel_engineSearch.txt @@ -0,0 +1,45 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +locateModel_engineSearch command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +locateModel engine; +engineProps +\{ + treeSearch switch1; +\} :pre + +{switch1} = names of the finite volume scalar fields to be temporally averaged :ulb,l +:ule + +[Examples:] + +locateModel engine; +engineProps +\{ + treeSearch false; +\} :pre + +[Description:] + +The locateModel "engine" locates the CFD cell and cellID corresponding to a given position. +The engineSearch locate Model can be used with different settings to use different algorithms: + +treeSearch false; will execute some geometric (linear) search using the last known cellID (recommended) :ulb,l +treeSearch true; will use a recursive tree structure to find the cell. :l +:ule + +[Restrictions:] none. + +[Related commands:] + +"locateModel"_locateModel.html + diff --git a/doc/locateModel_engineSearchIB.html b/doc/locateModel_engineSearchIB.html new file mode 100644 index 0000000..15e3680 --- /dev/null +++ b/doc/locateModel_engineSearchIB.html @@ -0,0 +1,70 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+locateModel engineIB;
+engineIBProps
+{
+ engineProps
+ {
+ treeSearch switch1;
+ }
+ zSplit value1;
+ xySplit value2;
+}
+
+Examples: +
+locateModel engineIB;
+engineIBProps
+{
+ engineProps
+ {
+ treeSearch false;
+ }
+ zSplit 8;
+ xySplit 16;
+}
+
+Description: +
+The locateModel "engine" locates the CFD cell and cellID corresponding to a given position. This locate model is especially designed for parallel immersed boundary method. Each particle is represented by "satellite points" if it is distributed over several processors. +
+The engineSearchIB locate Model can be used with different settings to use different algorithms: +
+This model is a modification of the engine search model. Instead of using the centre-cell as starting point for the engine search, further satellite points located on the surface of the sphere are checked. This makes sure that (parts of) spheres can be located even when their centre is on another processor. This is especially important for parallel computations, when a sphere is about to move from one processor to another. +
+Restrictions: +
+Only for immersed boundary solvers! +
+Related commands: +
+ + diff --git a/doc/locateModel_engineSearchIB.txt b/doc/locateModel_engineSearchIB.txt new file mode 100644 index 0000000..9adbdcc --- /dev/null +++ b/doc/locateModel_engineSearchIB.txt @@ -0,0 +1,62 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +locateModel_engineSearchIB command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +locateModel engineIB; +engineIBProps +\{ + engineProps + \{ + treeSearch switch1; + \} + zSplit value1; + xySplit value2; +\} :pre + +{switch1} = names of the finite volume scalar fields to be temporally averaged :ulb,l +{value1} = number of z-normal layers for satellite points :l +{value2} = number of satellite points in each layer :l +:ule + +[Examples:] + +locateModel engineIB; +engineIBProps +\{ + engineProps + \{ + treeSearch false; + \} + zSplit 8; + xySplit 16; +\} :pre + +[Description:] + +The locateModel "engine" locates the CFD cell and cellID corresponding to a given position. This locate model is especially designed for parallel immersed boundary method. Each particle is represented by "satellite points" if it is distributed over several processors. + +The engineSearchIB locate Model can be used with different settings to use different algorithms: + +treeSearch false; will execute some geometric (linear) search using the last known cellID (recommended) :ulb,l +treeSearch true; will use a recursive tree structure to find the cell. :l +:ule + +This model is a modification of the engine search model. Instead of using the centre-cell as starting point for the engine search, further satellite points located on the surface of the sphere are checked. This makes sure that (parts of) spheres can be located even when their centre is on another processor. This is especially important for parallel computations, when a sphere is about to move from one processor to another. + +[Restrictions:] + +Only for immersed boundary solvers! + +[Related commands:] + +"locateModel"_locateModel.html + diff --git a/doc/locateModel_standardSearch.html b/doc/locateModel_standardSearch.html new file mode 100644 index 0000000..d5e37a0 --- /dev/null +++ b/doc/locateModel_standardSearch.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+locateModel standard; ++
Examples: +
+locateModel standard; ++
Description: +
+The locateModel "standard" locates the CFD cell and cellID corresponding to a given position. A very straight-forward (robust!) locate algorithm is used. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/locateModel_standardSearch.txt b/doc/locateModel_standardSearch.txt new file mode 100644 index 0000000..84fb1db --- /dev/null +++ b/doc/locateModel_standardSearch.txt @@ -0,0 +1,30 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +locateModel_standardSearch command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +locateModel standard; :pre + +[Examples:] + +locateModel standard; :pre + +[Description:] + +The locateModel "standard" locates the CFD cell and cellID corresponding to a given position. A very straight-forward (robust!) locate algorithm is used. + + +[Restrictions:] none. + +[Related commands:] + +"locateModel"_locateModel.html + diff --git a/doc/meshMotionModel.html b/doc/meshMotionModel.html new file mode 100644 index 0000000..c056b6b --- /dev/null +++ b/doc/meshMotionModel.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+meshMotionModel model; ++
Examples: +
+meshMotionModel noMeshMotion; ++
Note: This examples list might not be complete - please look for other models (meshMotionModel_XY) in this documentation. +
+Description: +
+The meshMotionModel is the base class for models which manipulate the CFD mesh according to the DEM mesh motion. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/meshMotionModel.txt b/doc/meshMotionModel.txt new file mode 100644 index 0000000..60410ed --- /dev/null +++ b/doc/meshMotionModel.txt @@ -0,0 +1,30 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +meshMotionModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +meshMotionModel model; :pre + +model = name of the meshMotionModel to be applied :ul + +[Examples:] + +meshMotionModel noMeshMotion; :pre + +Note: This examples list might not be complete - please look for other models (meshMotionModel_XY) in this documentation. + +[Description:] + +The meshMotionModel is the base class for models which manipulate the CFD mesh according to the DEM mesh motion. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/meshMotionModel_noMeshMotion.html b/doc/meshMotionModel_noMeshMotion.html new file mode 100644 index 0000000..5f166bd --- /dev/null +++ b/doc/meshMotionModel_noMeshMotion.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+meshMotionModel noMeshMotion; ++
Examples: +
+meshMotionModel noMeshMotion; ++
Description: +
+The noMeshMotion-model is a dummy meshMotion model. +
+Restrictions: None. +
+Related commands: +
+ + diff --git a/doc/meshMotionModel_noMeshMotion.txt b/doc/meshMotionModel_noMeshMotion.txt new file mode 100644 index 0000000..ca47a35 --- /dev/null +++ b/doc/meshMotionModel_noMeshMotion.txt @@ -0,0 +1,29 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +meshMotionModel_noMeshMotion command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +meshMotionModel noMeshMotion; :pre + +[Examples:] + +meshMotionModel noMeshMotion; :pre + +[Description:] + +The noMeshMotion-model is a dummy meshMotion model. + +[Restrictions:] None. + +[Related commands:] + +"meshMotionModel"_meshMotionModel.html + diff --git a/doc/momCoupleModel.html b/doc/momCoupleModel.html new file mode 100644 index 0000000..d40ba87 --- /dev/null +++ b/doc/momCoupleModel.html @@ -0,0 +1,40 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+momCoupleModels +( + model +); ++
Examples: +
+momCoupleModels +( + implicitCouple +); ++
Note: This examples list might not be complete - please look for other models (momCoupleModel_XY) in this documentation. +
+Description: +
+The momCoupleModel is the base class for momentum exchange between DEM and CFD simulation. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/momCoupleModel.txt b/doc/momCoupleModel.txt new file mode 100644 index 0000000..cfbddc1 --- /dev/null +++ b/doc/momCoupleModel.txt @@ -0,0 +1,36 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +momCoupleModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +momCoupleModels +( + model +); :pre + +model = name of the momCoupleModel to be applied :ul + +[Examples:] + +momCoupleModels +( + implicitCouple +); :pre + +Note: This examples list might not be complete - please look for other models (momCoupleModel_XY) in this documentation. + +[Description:] + +The momCoupleModel is the base class for momentum exchange between DEM and CFD simulation. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/momCoupleModel_explicitCouple.html b/doc/momCoupleModel_explicitCouple.html new file mode 100644 index 0000000..521d7c9 --- /dev/null +++ b/doc/momCoupleModel_explicitCouple.html @@ -0,0 +1,52 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+momCoupleModels
+(
+ explicitCouple
+);
+explicitCoupleProps
+{
+ fLimit vector;
+}
+
+Examples: +
+momCoupleModels
+(
+ explicitCouple
+);
+explicitCoupleProps
+{
+ fLimit (1e3 1e2 1e4);
+}
+
+Description: +
+The explicitCouple-model is a momCoupleModel model providing an explicit momentum source term for the CFD solver. +
+Restrictions: +
+Only for solvers that include explicit momentum exchange. +
+Related commands: +
+ + diff --git a/doc/momCoupleModel_explicitCouple.txt b/doc/momCoupleModel_explicitCouple.txt new file mode 100644 index 0000000..58cd282 --- /dev/null +++ b/doc/momCoupleModel_explicitCouple.txt @@ -0,0 +1,48 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +momCoupleModel_explicitCouple command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +momCoupleModels +( + explicitCouple +); +explicitCoupleProps +\{ + fLimit vector; +\} :pre + +{vector} = limiter vector for explicit force term (default (1e10,1e10,1e10) ) :ulb,l +:ule + +[Examples:] + +momCoupleModels +( + explicitCouple +); +explicitCoupleProps +\{ + fLimit (1e3 1e2 1e4); +\} :pre + +[Description:] + +The explicitCouple-model is a momCoupleModel model providing an explicit momentum source term for the CFD solver. + +[Restrictions:] + +Only for solvers that include explicit momentum exchange. + +[Related commands:] + +"momCoupleModel"_momCoupleModel.html + diff --git a/doc/momCoupleModel_implicitCouple.html b/doc/momCoupleModel_implicitCouple.html new file mode 100644 index 0000000..b51420b --- /dev/null +++ b/doc/momCoupleModel_implicitCouple.html @@ -0,0 +1,60 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+momCoupleModels
+(
+ implicitCouple
+);
+implicitCoupleProps
+{
+ velFieldName "U";
+ granVelFieldName "Us";
+ voidfractionFieldName "voidfraction";
+}
+
+Examples: +
+momCoupleModels
+(
+ implicitCouple
+);
+implicitCoupleProps
+{
+ velFieldName "U";
+ granVelFieldName "Us";
+ voidfractionFieldName "voidfraction";
+}
+
+Description: +
+The implicitCouple-model is a momCoupleModel model providing an implicit momentum source term for the CFD solver. +
+Restrictions: +
+Only for solvers that include implicit momentum exchange. +
+Related commands: +
+ + diff --git a/doc/momCoupleModel_implicitCouple.txt b/doc/momCoupleModel_implicitCouple.txt new file mode 100644 index 0000000..e7954f3 --- /dev/null +++ b/doc/momCoupleModel_implicitCouple.txt @@ -0,0 +1,54 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +momCoupleModel_implicitCouple command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +momCoupleModels +( + implicitCouple +); +implicitCoupleProps +\{ + velFieldName "U"; + granVelFieldName "Us"; + voidfractionFieldName "voidfraction"; +\} :pre + +{U} = name of the finite volume fluid velocity field :ulb,l +{Us} = name of the finite volume granular velocity field :l +{voidfraction} = name of the finite volume voidfraction field :l +:ule + +[Examples:] + +momCoupleModels +( + implicitCouple +); +implicitCoupleProps +\{ + velFieldName "U"; + granVelFieldName "Us"; + voidfractionFieldName "voidfraction"; +\} :pre + +[Description:] + +The implicitCouple-model is a momCoupleModel model providing an implicit momentum source term for the CFD solver. + +[Restrictions:] + +Only for solvers that include implicit momentum exchange. + +[Related commands:] + +"momCoupleModel"_momCoupleModel.html + diff --git a/doc/momCoupleModel_noCouple.html b/doc/momCoupleModel_noCouple.html new file mode 100644 index 0000000..38dd7c3 --- /dev/null +++ b/doc/momCoupleModel_noCouple.html @@ -0,0 +1,40 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+momCoupleModels +( + off +); ++
Examples: +
+momCoupleModels +( + off +); ++
Description: +
+The noCouple-model is a dummy momCoupleModel model providing an no momentum source term for the CFD solver. +
+Restrictions: +
+Only for solvers that include no momentum exchange, e.g. immersed boundary. +
+Related commands: +
+ + diff --git a/doc/momCoupleModel_noCouple.txt b/doc/momCoupleModel_noCouple.txt new file mode 100644 index 0000000..c608019 --- /dev/null +++ b/doc/momCoupleModel_noCouple.txt @@ -0,0 +1,38 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +momCoupleModel_noCouple command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +momCoupleModels +( + off +); :pre + + +[Examples:] + +momCoupleModels +( + off +); :pre + +[Description:] + +The noCouple-model is a dummy momCoupleModel model providing an no momentum source term for the CFD solver. + +[Restrictions:] + +Only for solvers that include no momentum exchange, e.g. immersed boundary. + +[Related commands:] + +"momCoupleModel"_momCoupleModel.html + diff --git a/doc/regionModel.html b/doc/regionModel.html new file mode 100644 index 0000000..a85e4e8 --- /dev/null +++ b/doc/regionModel.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+regionModel model; ++
Examples: +
+regionModel allRegion; ++
Note: This examples list might not be complete - please look for other models (regionModel_XY) in this documentation. +
+Description: +
+The regionModel is the base class for region models to select a certain region for coupled simulation. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/regionModel.txt b/doc/regionModel.txt new file mode 100644 index 0000000..a829eca --- /dev/null +++ b/doc/regionModel.txt @@ -0,0 +1,30 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +regionModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +regionModel model; :pre + +model = name of the regionModel to be applied :ul + +[Examples:] + +regionModel allRegion; :pre + +Note: This examples list might not be complete - please look for other models (regionModel_XY) in this documentation. + +[Description:] + +The regionModel is the base class for region models to select a certain region for coupled simulation. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/regionModel_allRegion.html b/doc/regionModel_allRegion.html new file mode 100644 index 0000000..85f35b0 --- /dev/null +++ b/doc/regionModel_allRegion.html @@ -0,0 +1,32 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+regionModel allRegion; ++
Examples: +
+regionModel allRegion; ++
Description: +
+The allRegion-model is a region model including the whole CFD region for the coupling. +
+Restrictions: None. +
+Related commands: +
+ + diff --git a/doc/regionModel_allRegion.txt b/doc/regionModel_allRegion.txt new file mode 100644 index 0000000..7798339 --- /dev/null +++ b/doc/regionModel_allRegion.txt @@ -0,0 +1,29 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +regionModel_allRegion command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +regionModel allRegion; :pre + +[Examples:] + +regionModel allRegion; :pre + +[Description:] + +The allRegion-model is a region model including the whole CFD region for the coupling. + +[Restrictions:] None. + +[Related commands:] + +"regionModel"_regionModel.html + diff --git a/doc/voidFractionModel.html b/doc/voidFractionModel.html new file mode 100644 index 0000000..0dd3793 --- /dev/null +++ b/doc/voidFractionModel.html @@ -0,0 +1,34 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel model; ++
Examples: +
+voidfractionModel centre; ++
Note: This examples list might not be complete - please look for other models (voidfractionModel_XY) in this documentation. +
+Description: +
+The voidfractionModel is the base class for models to represent the DEM particle's volume in the CFD domain via a voidfraction field. +
+Restrictions: none. +
+Default: none. +
+ diff --git a/doc/voidFractionModel.txt b/doc/voidFractionModel.txt new file mode 100644 index 0000000..c431069 --- /dev/null +++ b/doc/voidFractionModel.txt @@ -0,0 +1,30 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel model; :pre + +model = name of the voidfractionModel to be applied :ul + +[Examples:] + +voidfractionModel centre; :pre + +Note: This examples list might not be complete - please look for other models (voidfractionModel_XY) in this documentation. + +[Description:] + +The voidfractionModel is the base class for models to represent the DEM particle's volume in the CFD domain via a voidfraction field. + +[Restrictions:] none. + +[Default:] none. diff --git a/doc/voidFractionModel_GaussVoidFraction.html b/doc/voidFractionModel_GaussVoidFraction.html new file mode 100644 index 0000000..976c6be --- /dev/null +++ b/doc/voidFractionModel_GaussVoidFraction.html @@ -0,0 +1,54 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel Gauss;
+GaussProps
+{
+ maxCellsPerParticle number1;
+ alphaMin number2;
+ scaleUpVol number3;
+}
+
+Examples: +
+voidfractionModel Gauss;
+GaussProps
+{
+ maxCellsPerParticle 1000;
+ alphaMin 0.10;
+ scaleUpVol 5.0;
+}
+
+Description: +
+The Gauss voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle. The volume is here distributed according to a Gaussian dirstibution. +
+The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. +
+Restrictions: none. +
+Related commands: +
+voidfractionModel , bigParticle +
+ diff --git a/doc/voidFractionModel_GaussVoidFraction.txt b/doc/voidFractionModel_GaussVoidFraction.txt new file mode 100644 index 0000000..969c09f --- /dev/null +++ b/doc/voidFractionModel_GaussVoidFraction.txt @@ -0,0 +1,48 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel_GaussVoidFraction command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel Gauss; +GaussProps +\{ + maxCellsPerParticle number1; + alphaMin number2; + scaleUpVol number3; +\} :pre + +{number1} = max number of cells covered by a partilce (search will fail when more than {number1} cells are covered by the particle) :ulb,l +{number2} = mininmum limit for voidfraction :l +{number3} = diameter of the particle's representation is artificially increased according to {number3} * Vparticle, volume remains unaltered! :l +:ule + +[Examples:] + +voidfractionModel Gauss; +GaussProps +\{ + maxCellsPerParticle 1000; + alphaMin 0.10; + scaleUpVol 5.0; +\} :pre + +[Description:] + +The Gauss voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle. The volume is here distributed according to a Gaussian dirstibution. + +The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. + +[Restrictions:] none. + +[Related commands:] + +"voidfractionModel"_voidfractionModel.html , "bigParticle"_voidFractionModel_bigParticleVoidFraction.html + diff --git a/doc/voidFractionModel_IBVoidFraction.html b/doc/voidFractionModel_IBVoidFraction.html new file mode 100644 index 0000000..3ae0111 --- /dev/null +++ b/doc/voidFractionModel_IBVoidFraction.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel IB;
+IBProps
+{
+ maxCellsPerParticle number1;
+ alphaMin number2;
+ scaleUpVol number3;
+}
+
+Examples: +
+voidfractionModel IB;
+IBProps
+{
+ maxCellsPerParticle 1000;
+ alphaMin 0.10;
+ scaleUpVol 5.0;
+}
+
+Description: +
+The IB voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle. The model is specially designed for cfdemSolverIB and creates a smooth transition of the voidfraction at the particle surface. Cells which are only partially covered by solid are marked by void fracion values between 0 and 1 respectively. +
+The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. +
+Code of this sub-model contributed by Alice Hager, JKU. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/voidFractionModel_IBVoidFraction.txt b/doc/voidFractionModel_IBVoidFraction.txt new file mode 100644 index 0000000..f39d1bb --- /dev/null +++ b/doc/voidFractionModel_IBVoidFraction.txt @@ -0,0 +1,50 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel_IBVoidFraction command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel IB; +IBProps +\{ + maxCellsPerParticle number1; + alphaMin number2; + scaleUpVol number3; +\} :pre + +{number1} = max number of cells covered by a partilce (search will fail when more than {number1} cells are covered by the particle) :ulb,l +{number2} = mininmum limit for voidfraction :l +{number3} = diameter of the particle's representation is artificially increased according to {number3} * Vparticle, volume remains unaltered! :l +:ule + +[Examples:] + +voidfractionModel IB; +IBProps +\{ + maxCellsPerParticle 1000; + alphaMin 0.10; + scaleUpVol 5.0; +\} :pre + +[Description:] + +The IB voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle. The model is specially designed for cfdemSolverIB and creates a smooth transition of the voidfraction at the particle surface. Cells which are only partially covered by solid are marked by void fracion values between 0 and 1 respectively. + +The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. + +Code of this sub-model contributed by Alice Hager, JKU. + +[Restrictions:] none. + +[Related commands:] + +"voidfractionModel"_voidfractionModel.html + diff --git a/doc/voidFractionModel_bigParticleVoidFraction.html b/doc/voidFractionModel_bigParticleVoidFraction.html new file mode 100644 index 0000000..8a13e4f --- /dev/null +++ b/doc/voidFractionModel_bigParticleVoidFraction.html @@ -0,0 +1,56 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel bigParticle;
+bigParticleProps
+{
+ maxCellsPerParticle number1;
+ alphaMin number2;
+ scaleUpVol number3;
+}
+
+Examples: +
+voidfractionModel bigParticle;
+bigParticleProps
+{
+ maxCellsPerParticle 1000;
+ alphaMin 0.10;
+ scaleUpVol 5.0;
+}
+
+Description: +
+The bigParticle voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle which results in a stairstep representation of the bodies within the mesh (i.e. voidfraction is either 1 (fluid) of zero (solid)). For archiving accurate results, approx. 8 cells per particle diameter are necessary. +
+The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. +
+Code of this sub-model contributed by Alice Hager, JKU. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/voidFractionModel_bigParticleVoidFraction.txt b/doc/voidFractionModel_bigParticleVoidFraction.txt new file mode 100644 index 0000000..baa109c --- /dev/null +++ b/doc/voidFractionModel_bigParticleVoidFraction.txt @@ -0,0 +1,50 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel_bigParticleVoidFraction command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel bigParticle; +bigParticleProps +\{ + maxCellsPerParticle number1; + alphaMin number2; + scaleUpVol number3; +\} :pre + +{number1} = max number of cells covered by a partilce (search will fail when more than {number1} cells are covered by the particle) :ulb,l +{number2} = mininmum limit for voidfraction :l +{number3} = diameter of the particle's representation is artificially increased according to {number3} * Vparticle, volume remains unaltered! :l +:ule + +[Examples:] + +voidfractionModel bigParticle; +bigParticleProps +\{ + maxCellsPerParticle 1000; + alphaMin 0.10; + scaleUpVol 5.0; +\} :pre + +[Description:] + +The bigParticle voidFraction model is supposed to be used when a particle (or it's representation) is bigger than a CFD cell. The voidfraction field is set in those cell whose centres are inside the particle which results in a stairstep representation of the bodies within the mesh (i.e. voidfraction is either 1 (fluid) of zero (solid)). For archiving accurate results, approx. 8 cells per particle diameter are necessary. + +The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. + +Code of this sub-model contributed by Alice Hager, JKU. + +[Restrictions:] none. + +[Related commands:] + +"voidfractionModel"_voidfractionModel.html + diff --git a/doc/voidFractionModel_centreVoidFraction.html b/doc/voidFractionModel_centreVoidFraction.html new file mode 100644 index 0000000..cfe8a54 --- /dev/null +++ b/doc/voidFractionModel_centreVoidFraction.html @@ -0,0 +1,44 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel centre;
+centreProps
+{
+ alphaMin value;
+}
+
+Examples: +
+voidfractionModel centre;
+centreProps
+{
+ alphaMin 0.1;
+}
+
+Description: +
+The centre voidFraction model calculates the voidfraction in a CFD cell accounting for the volume of the particles whose centres are inside the cell. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/voidFractionModel_centreVoidFraction.txt b/doc/voidFractionModel_centreVoidFraction.txt new file mode 100644 index 0000000..3106664 --- /dev/null +++ b/doc/voidFractionModel_centreVoidFraction.txt @@ -0,0 +1,40 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel_centreVoidFraction command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel centre; +centreProps +\{ + alphaMin value; +\} :pre + +{value} = mininmum limit for voidfraction :ulb,l +:ule + +[Examples:] + +voidfractionModel centre; +centreProps +\{ + alphaMin 0.1; +\} :pre + +[Description:] + +The centre voidFraction model calculates the voidfraction in a CFD cell accounting for the volume of the particles whose centres are inside the cell. + +[Restrictions:] none. + +[Related commands:] + +"voidfractionModel"_voidfractionModel.html + diff --git a/doc/voidFractionModel_dividedVoidFraction.html b/doc/voidFractionModel_dividedVoidFraction.html new file mode 100644 index 0000000..9b019a9 --- /dev/null +++ b/doc/voidFractionModel_dividedVoidFraction.html @@ -0,0 +1,50 @@ + +Syntax: +
+Defined in couplingProperties dictionary. +
+voidfractionModel divided;
+dividedProps
+{
+ alphaMin number1;
+ scaleUpVol number2;
+}
+
+Examples: +
+voidfractionModel divided;
+dividedProps
+{
+ alphaMin 0.2;
+ scaleUpVol 1.0;
+}
+
+Description: +
+The divided voidFraction model is supposed to be used when a particle (or it's representation) is in the size range of a CFD cell. Satellite points are used to divide the particle's volume to the touched cells. +
+The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. +
+Restrictions: none. +
+Related commands: +
+ + diff --git a/doc/voidFractionModel_dividedVoidFraction.txt b/doc/voidFractionModel_dividedVoidFraction.txt new file mode 100644 index 0000000..f3b5605 --- /dev/null +++ b/doc/voidFractionModel_dividedVoidFraction.txt @@ -0,0 +1,45 @@ +"CFDEMproject WWW Site"_lws - "CFDEM Commands"_lc :c + +:link(lws,http://www.cfdem.com) +:link(lc,CFDEMcoupling_Manual.html#comm) + +:line + +voidfractionModel_dividedVoidFraction command :h3 + +[Syntax:] + +Defined in couplingProperties dictionary. + +voidfractionModel divided; +dividedProps +\{ + alphaMin number1; + scaleUpVol number2; +\} :pre + +{number1} = mininmum limit for voidfraction :ulb,l +{number2} = diameter of the particle's representation is artificially increased according to {number2} * Vparticle, volume remains unaltered! :l +:ule + +[Examples:] + +voidfractionModel divided; +dividedProps +\{ + alphaMin 0.2; + scaleUpVol 1.0; +\} :pre + +[Description:] + +The divided voidFraction model is supposed to be used when a particle (or it's representation) is in the size range of a CFD cell. Satellite points are used to divide the particle's volume to the touched cells. + +The region of influence of a particle can be increased artificially by "scaleUpVol", which blows up the particles, but keeps their volume (for voidfraction calculation) constant. + +[Restrictions:] none. + +[Related commands:] + +"voidfractionModel"_voidfractionModel.html + diff --git a/src/lagrangian/cfdemParticle/Make/files b/src/lagrangian/cfdemParticle/Make/files new file mode 100644 index 0000000..276ddec --- /dev/null +++ b/src/lagrangian/cfdemParticle/Make/files @@ -0,0 +1,111 @@ +cfdemCloud = cfdemCloud +forceModels = subModels/forceModel +forceModelsMS = subModels/forceModelMS +IOModels = subModels/IOModel +voidFractionModels = subModels/voidFractionModel +locateModels = subModels/locateModel +meshMotionModels = subModels/meshMotionModel +momCoupleModels = subModels/momCoupleModel +regionModels = subModels/regionModel +dataExchangeModels = subModels/dataExchangeModel +averagingModels = subModels/averagingModel +clockModels = subModels/clockModel +liggghtsCommandModels = subModels/liggghtsCommandModel + +$(cfdemCloud)/cfdemCloud.C +derived/cfdemCloudIB/cfdemCloudIB.C +derived/cfdemCloudMS/cfdemCloudMS.C + +$(forceModels)/forceModel/forceModel.C +$(forceModels)/forceModel/newForceModel.C +$(forceModels)/noDrag/noDrag.C +$(forceModels)/DiFeliceDrag/DiFeliceDrag.C +$(forceModels)/DiFeliceDragNLift/DiFeliceDragNLift.C +$(forceModels)/GidaspowDrag/GidaspowDrag.C +$(forceModels)/SchillerNaumannDrag/SchillerNaumannDrag.C +$(forceModels)/Archimedes/Archimedes.C +$(forceModels)/ArchimedesIB/ArchimedesIB.C +$(forceModels)/interface/interface.C +$(forceModels)/ShirgaonkarIB/ShirgaonkarIB.C +$(forceModels)/fieldTimeAverage/fieldTimeAverage.C +$(forceModels)/fieldBound/fieldBound.C +$(forceModels)/volWeightedAverage/volWeightedAverage.C +$(forceModels)/totalMomentumExchange/totalMomentumExchange.C +$(forceModels)/KochHillDrag/KochHillDrag.C +$(forceModels)/LaEuScalarLiquid/LaEuScalarLiquid.C +$(forceModels)/LaEuScalarTemp/LaEuScalarTemp.C +$(forceModels)/LaEuScalarDust/LaEuScalarDust.C +$(forceModels)/virtualMassForce/virtualMassForce.C +$(forceModels)/gradPForce/gradPForce.C +$(forceModels)/gradULiftForce/gradULiftForce.C +$(forceModels)/viscForce/viscForce.C +$(forceModels)/MeiLift/MeiLift.C +$(forceModels)/KochHillDragNLift/KochHillDragNLift.C + +$(forceModelsMS)/forceModelMS/forceModelMS.C +$(forceModelsMS)/forceModelMS/newForceModelMS.C +$(forceModelsMS)/DiFeliceDragMS/DiFeliceDragMS.C + +$(IOModels)/IOModel/IOModel.C +$(IOModels)/IOModel/newIOModel.C +$(IOModels)/noIO/noIO.C +$(IOModels)/basicIO/basicIO.C + +$(voidFractionModels)/voidFractionModel/voidFractionModel.C +$(voidFractionModels)/voidFractionModel/newVoidFractionModel.C +$(voidFractionModels)/centreVoidFraction/centreVoidFraction.C +$(voidFractionModels)/dividedVoidFraction/dividedVoidFraction.C +$(voidFractionModels)/dividedVoidFractionMS/dividedVoidFractionMS.C +$(voidFractionModels)/bigParticleVoidFraction/bigParticleVoidFraction.C +$(voidFractionModels)/GaussVoidFraction/GaussVoidFraction.C +$(voidFractionModels)/IBVoidFraction/IBVoidFraction.C + +$(locateModels)/locateModel/locateModel.C +$(locateModels)/locateModel/newLocateModel.C +$(locateModels)/standardSearch/standardSearch.C +$(locateModels)/engineSearch/engineSearch.C +$(locateModels)/turboEngineSearch/turboEngineSearch.C +$(locateModels)/engineSearchIB/engineSearchIB.C + + +$(meshMotionModels)/meshMotionModel/meshMotionModel.C +$(meshMotionModels)/meshMotionModel/newMeshMotionModel.C +$(meshMotionModels)/noMeshMotion/noMeshMotion.C +$(meshMotionModels)/DEMdrivenMeshMotion/DEMdrivenMeshMotion.C + +$(momCoupleModels)/momCoupleModel/momCoupleModel.C +$(momCoupleModels)/momCoupleModel/newMomCoupleModel.C +$(momCoupleModels)/explicitCouple/explicitCouple.C +$(momCoupleModels)/implicitCouple/implicitCouple.C +$(momCoupleModels)/noCouple/noCouple.C + +$(regionModels)/regionModel/regionModel.C +$(regionModels)/regionModel/newRegionModel.C +$(regionModels)/allRegion/allRegion.C +$(regionModels)/differentialRegion/differentialRegion.C + +$(dataExchangeModels)/dataExchangeModel/dataExchangeModel.C +$(dataExchangeModels)/dataExchangeModel/newDataExchangeModel.C +$(dataExchangeModels)/oneWayVTK/oneWayVTK.C +$(dataExchangeModels)/twoWayFiles/twoWayFiles.C +$(dataExchangeModels)/noDataExchange/noDataExchange.C +$(dataExchangeModels)/twoWayMPI/twoWayMPI.C + +$(averagingModels)/averagingModel/averagingModel.C +$(averagingModels)/averagingModel/newAveragingModel.C +$(averagingModels)/dilute/dilute.C +$(averagingModels)/dense/dense.C + +$(clockModels)/clockModel/clockModel.C +$(clockModels)/clockModel/newClockModel.C +$(clockModels)/standardClock/standardClock.C +$(clockModels)/noClock/noClock.C + +$(liggghtsCommandModels)/liggghtsCommandModel/liggghtsCommandModel.C +$(liggghtsCommandModels)/liggghtsCommandModel/newLiggghtsCommandModel.C +$(liggghtsCommandModels)/execute/execute.C +$(liggghtsCommandModels)/runLiggghts/runLiggghts.C +$(liggghtsCommandModels)/writeLiggghts/writeLiggghts.C +$(liggghtsCommandModels)/readLiggghtsData/readLiggghtsData.C + +LIB = $(FOAM_USER_LIBBIN)/lib$(CFDEM_LIB_NAME) diff --git a/src/lagrangian/cfdemParticle/Make/options b/src/lagrangian/cfdemParticle/Make/options new file mode 100644 index 0000000..61f61a9 --- /dev/null +++ b/src/lagrangian/cfdemParticle/Make/options @@ -0,0 +1,27 @@ +sinclude $(GENERAL_RULES)/mplib$(WM_MPLIB) +sinclude $(RULES)/mplib$(WM_MPLIB) + + +EXE_INC = \ + $(PFLAGS) \ + $(PINC) \ + -I ./cfdemParticle \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/transportModels \ + -I$(LIB_SRC)/turbulenceModels/incompressible/turbulenceModel \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/lagrangian/basic/lnInclude \ + -I$(LIB_SRC)/OpenFOAM/containers/HashTables/labelHashSet \ + -I$(CFDEM_LIGGGHTS_SRC_DIR) \ + +LIB_LIBS = \ + $(PLIBS) \ + -L$(FOAM_USER_LIBBIN) \ + -lfiniteVolume \ + -lincompressibleRASModels \ + -lincompressibleLESModels \ + -lmeshTools \ + -llagrangian \ + -lmpi_cxx \ + -L$(CFDEM_LIGGGHTS_SRC_DIR) \ + -l$(CFDEM_LIGGGHTS_LIB_NAME) \ diff --git a/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H b/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H new file mode 100644 index 0000000..9a6ddf5 --- /dev/null +++ b/src/lagrangian/cfdemParticle/cfdTools/checkModelType.H @@ -0,0 +1,67 @@ + + // check model type + // referring to: Zhou et al. 2010,JFM + word modelType = particleCloud.modelType(); + + //Warning << "model type not being checked" << endl; + + if (modelType=="B"){ + Info << "solving volume averaged Navier Stokes equations of type B\n"<< endl; + + // check if Archimedes is used + bool found=false; + forAll(particleCloud.forceModels(),i) + { + if(particleCloud.forceModels()[i]=="Archimedes") + found=true; + } + if(!found) + FatalError <<"Archimedes model not found!\n" << abort(FatalError); + + // check if gradP and viscForce are used + found=false; + forAll(particleCloud.forceModels(),i) + { + if(particleCloud.forceModels()[i]=="gradPForce" || particleCloud.forceModels()[i]=="viscForce") + found=true; + } + if(found) + FatalError <<"do not use gradPForce and viscForce with model type B!\n" << abort(FatalError); + + }else if (modelType=="A"){ + Info << "solving volume averaged Navier Stokes equations of type A\n" + << "check if Archimedes lift is necessary (depends on pressure formulation)\n"<< endl; + + // check if Archimedes is used + bool found=false; + forAll(particleCloud.forceModels(),i) + { + if(particleCloud.forceModels()[i]=="Archimedes") + found=true; + } + if(found) + Info << "WARNING!!! Are you sure to use Archimedes lift, not necessary if gradPForce includes this effect." << endl; + + // check if gradP is used + found=false; + forAll(particleCloud.forceModels(),i) + { + if(particleCloud.forceModels()[i]=="gradPForce") + found=true; + } + if(!found) + FatalError <<"gradPForce model not found!\n" << abort(FatalError); + + // check if viscForce is used + found=false; + forAll(particleCloud.forceModels(),i) + { + if(particleCloud.forceModels()[i]=="viscForce") + found=true; + } + if(!found) + FatalError <<"viscForce model not found!\n" << abort(FatalError); + }else if (modelType=="none") + Warning << "You chose model type -none- you might get erroneous results!" << endl; + else + FatalError <<"no suitable model type specified:" << modelType << "\n" << abort(FatalError); diff --git a/src/lagrangian/cfdemParticle/cfdTools/debugInfo.H b/src/lagrangian/cfdemParticle/cfdTools/debugInfo.H new file mode 100755 index 0000000..637e738 --- /dev/null +++ b/src/lagrangian/cfdemParticle/cfdTools/debugInfo.H @@ -0,0 +1,95 @@ + + //========================================================================// + scalar countCell=0; // number of cells touched by particles + int points=0; // number of particles and sub-points + scalar totalParticleWeights=0; // total weight of all particles and sub-points + vector totalForce_array(0,0,0); // total force on particles based on particle array + vector totalForce_field(0,0,0); // forceField of forceM(), used to calc Ksl + scalar particleVolume_radius=0; // total particle voulme based on radius array + scalar particleVolume_field=0; // total particle voulme based on voidfractionfield + scalar particleVolume_array=0; // total particle voulme based on particle array + scalar meanR_array=0; // mean particle radius based on particle array + vector meanUs_array(0,0,0); // mean solid velocity based on particle array + vector meanUs_field(0,0,0); // mean solid velocity based on field Us + scalar meanAlpha_field=0; // mean voidfraction + vector meanU_field(0,0,0); // mean fluid velocity based on field U + //========================================================================// + + // get particle based data + for(int index = 0;index < numberOfParticles(); ++index) + { + for(int i=0;i<3;i++){ + totalForce_array[i] += impForces_[index][i]; // in giveDEMdata() exp imp and DEM are summed + meanUs_array[i] += velocities_[index][i]; + } + meanR_array += radii_[index][0]; + particleVolume_radius += radii_[index][0]*radii_[index][0]*radii_[index][0]*4./3.*3.1415; + + // loop subCells + for(int subCell=0;subCell