├── .gitignore ├── DISCLAIMER ├── LICENSE ├── README.md ├── applications ├── .gitignore ├── solvers │ ├── cfdemSolverIB │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdemSolverIB.C │ │ └── createFields.H │ ├── cfdemSolverMix │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdTools │ │ │ └── mixAdjustPhi.H │ │ ├── cfdemCloudMix.C │ │ ├── cfdemCloudMix.H │ │ ├── cfdemSolverMix.C │ │ ├── cfdemSolverMix_backup.C │ │ ├── createFields.H │ │ ├── mixArchimedes.C │ │ ├── mixArchimedes.H │ │ ├── mixArchimedesIB.C │ │ ├── mixArchimedesIB.H │ │ ├── mixCheckGlobal.H │ │ ├── mixCheckModelNone.H │ │ ├── mixCheckModelType.H │ │ ├── mixConstDiffSmoothing.C │ │ ├── mixConstDiffSmoothing.H │ │ ├── mixDense.C │ │ ├── mixDense.H │ │ ├── mixDiFeliceDrag.C │ │ ├── mixDiFeliceDrag.H │ │ ├── mixDilute.C │ │ ├── mixDilute.H │ │ ├── mixExplicitCouple.C │ │ ├── mixExplicitCouple.H │ │ ├── mixImplicitCouple.C │ │ ├── mixImplicitCouple.H │ │ ├── mixShirgaonkarIB.C │ │ ├── mixShirgaonkarIB.H │ │ ├── mixTwoWayMPI.C │ │ ├── mixTwoWayMPI.H │ │ ├── mixVoidFraction.C │ │ └── mixVoidFraction.H │ ├── cfdemSolverMixIB │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdemSolverMixIB.C │ │ ├── cfdemSolverMixIB_backup.C │ │ └── createFields.H │ ├── cfdemSolverPiso │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdemSolverPiso.C │ │ └── createFields.H │ ├── cfdemSolverPisoSTM │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdemSolverPisoSTM.C │ │ └── createFields.H │ └── cfdemSolverPisoScalar │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── cfdemSolverPisoScalar.C │ │ └── createFields.H └── utilities │ ├── cfdemPostproc │ ├── Make │ │ ├── files │ │ └── options │ ├── cfdemPostproc.C │ └── createFields.H │ ├── vizClock │ ├── matPlot.py │ └── timeEvalFull.txt │ └── writeUfluid │ ├── Make │ ├── files │ └── options │ ├── createFields.H │ ├── particleTrackProperties │ └── writeUfluid.C ├── doc ├── .gitignore ├── CFDEMcoupling_Manual.html ├── COPYING ├── SCcontent │ └── individual_commands.txt ├── _build │ ├── doctrees │ │ ├── CFDEMcoupling_Manual.doctree │ │ ├── IOModel.doctree │ │ ├── IOModel_basicIO.doctree │ │ ├── IOModel_noIO.doctree │ │ ├── IOModel_sophIO.doctree │ │ ├── IOModel_trackIO.doctree │ │ ├── _tmp │ │ │ └── sphinx_rtd_theme │ │ │ │ ├── README.doctree │ │ │ │ └── demo_docs │ │ │ │ └── source │ │ │ │ ├── api.doctree │ │ │ │ ├── demo.doctree │ │ │ │ ├── index.doctree │ │ │ │ ├── list.doctree │ │ │ │ ├── long.doctree │ │ │ │ └── toc.doctree │ │ ├── averagingModel.doctree │ │ ├── averagingModel_dense.doctree │ │ ├── averagingModel_dilute.doctree │ │ ├── cfdemSolverIB.doctree │ │ ├── cfdemSolverPiso.doctree │ │ ├── cfdemSolverPisoSTM.doctree │ │ ├── cfdemSolverPisoScalar.doctree │ │ ├── clockModel.doctree │ │ ├── clockModel_noClock.doctree │ │ ├── clockModel_standardClock.doctree │ │ ├── dataExchangeModel.doctree │ │ ├── dataExchangeModel_noDataExchange.doctree │ │ ├── dataExchangeModel_oneWayVTK.doctree │ │ ├── dataExchangeModel_twoWayFiles.doctree │ │ ├── dataExchangeModel_twoWayMPI.doctree │ │ ├── environment.pickle │ │ ├── fix_couple_cfd.doctree │ │ ├── fix_couple_cfd_force.doctree │ │ ├── fix_couple_cfd_force_implicit.doctree │ │ ├── forceModel.doctree │ │ ├── forceModel_Archimedes.doctree │ │ ├── forceModel_ArchimedesIB.doctree │ │ ├── forceModel_DiFeliceDrag.doctree │ │ ├── forceModel_GidaspowDrag.doctree │ │ ├── forceModel_KochHillDrag.doctree │ │ ├── forceModel_LaEuScalarTemp.doctree │ │ ├── forceModel_MeiLift.doctree │ │ ├── forceModel_SchillerNaumannDrag.doctree │ │ ├── forceModel_ShirgaonkarIB.doctree │ │ ├── forceModel_checkCouplingInterval.doctree │ │ ├── forceModel_fieldStore.doctree │ │ ├── forceModel_fieldTimeAverage.doctree │ │ ├── forceModel_gradPForce.doctree │ │ ├── forceModel_noDrag.doctree │ │ ├── forceModel_particleCellVolume.doctree │ │ ├── forceModel_particleVolume.doctree │ │ ├── forceModel_scalarGeneralExchange.doctree │ │ ├── forceModel_virtualMassForce.doctree │ │ ├── forceModel_viscForce.doctree │ │ ├── forceModel_volWeightedAverage.doctree │ │ ├── forceSubModel.doctree │ │ ├── forceSubModel_ImEx.doctree │ │ ├── fvOptions.doctree │ │ ├── fvOptions_meanSupVelocityForce.doctree │ │ ├── liggghtsCommandModel.doctree │ │ ├── liggghtsCommandModel_execute.doctree │ │ ├── liggghtsCommandModel_readLiggghtsData.doctree │ │ ├── liggghtsCommandModel_runLiggghts.doctree │ │ ├── liggghtsCommandModel_setDEMGravity.doctree │ │ ├── liggghtsCommandModel_writeLiggghts.doctree │ │ ├── locateModel.doctree │ │ ├── locateModel_engineSearch.doctree │ │ ├── locateModel_engineSearchIB.doctree │ │ ├── locateModel_standardSearch.doctree │ │ ├── meshMotionModel.doctree │ │ ├── meshMotionModel_noMeshMotion.doctree │ │ ├── momCoupleModel.doctree │ │ ├── momCoupleModel_explicitCouple.doctree │ │ ├── momCoupleModel_implicitCouple.doctree │ │ ├── momCoupleModel_noCouple.doctree │ │ ├── probeModel.doctree │ │ ├── probeModel_noProbe.doctree │ │ ├── probeModel_particleProbe.doctree │ │ ├── scalarTransportModel.doctree │ │ ├── scalarTransportModel_generalManual.doctree │ │ ├── smoothingModel.doctree │ │ ├── smoothingModel_constDiffSmoothing.doctree │ │ ├── smoothingModel_noSmoothing.doctree │ │ ├── voidFractionModel.doctree │ │ ├── voidFractionModel_GaussVoidFraction.doctree │ │ ├── voidFractionModel_IBVoidFraction.doctree │ │ ├── voidFractionModel_bigParticleVoidFraction.doctree │ │ ├── voidFractionModel_centreVoidFraction.doctree │ │ ├── voidFractionModel_dividedVoidFraction.doctree │ │ ├── voidFractionModel_noVoidFraction.doctree │ │ └── voidFractionModel_trilinearVoidFraction.doctree │ └── html │ │ ├── .buildinfo │ │ ├── CFDEMcoupling_Manual.html │ │ ├── IOModel.html │ │ ├── IOModel_basicIO.html │ │ ├── IOModel_noIO.html │ │ ├── IOModel_sophIO.html │ │ ├── IOModel_trackIO.html │ │ ├── _downloads │ │ └── yi_jing_01_chien.jpg │ │ ├── _images │ │ └── yi_jing_01_chien.jpg │ │ ├── _sources │ │ ├── CFDEMcoupling_Manual.txt │ │ ├── IOModel.txt │ │ ├── IOModel_basicIO.txt │ │ ├── IOModel_noIO.txt │ │ ├── IOModel_sophIO.txt │ │ ├── IOModel_trackIO.txt │ │ ├── _tmp │ │ │ └── sphinx_rtd_theme │ │ │ │ ├── README.txt │ │ │ │ └── demo_docs │ │ │ │ └── source │ │ │ │ ├── api.txt │ │ │ │ ├── demo.txt │ │ │ │ ├── index.txt │ │ │ │ ├── list.txt │ │ │ │ ├── long.txt │ │ │ │ └── toc.txt │ │ ├── averagingModel.txt │ │ ├── averagingModel_dense.txt │ │ ├── averagingModel_dilute.txt │ │ ├── cfdemSolverIB.txt │ │ ├── cfdemSolverPiso.txt │ │ ├── cfdemSolverPisoSTM.txt │ │ ├── cfdemSolverPisoScalar.txt │ │ ├── clockModel.txt │ │ ├── clockModel_noClock.txt │ │ ├── clockModel_standardClock.txt │ │ ├── dataExchangeModel.txt │ │ ├── dataExchangeModel_noDataExchange.txt │ │ ├── dataExchangeModel_oneWayVTK.txt │ │ ├── dataExchangeModel_twoWayFiles.txt │ │ ├── dataExchangeModel_twoWayMPI.txt │ │ ├── fix_couple_cfd.txt │ │ ├── fix_couple_cfd_force.txt │ │ ├── fix_couple_cfd_force_implicit.txt │ │ ├── forceModel.txt │ │ ├── forceModel_Archimedes.txt │ │ ├── forceModel_ArchimedesIB.txt │ │ ├── forceModel_DiFeliceDrag.txt │ │ ├── forceModel_GidaspowDrag.txt │ │ ├── forceModel_KochHillDrag.txt │ │ ├── forceModel_LaEuScalarTemp.txt │ │ ├── forceModel_MeiLift.txt │ │ ├── forceModel_SchillerNaumannDrag.txt │ │ ├── forceModel_ShirgaonkarIB.txt │ │ ├── forceModel_checkCouplingInterval.txt │ │ ├── forceModel_fieldStore.txt │ │ ├── forceModel_fieldTimeAverage.txt │ │ ├── forceModel_gradPForce.txt │ │ ├── forceModel_noDrag.txt │ │ ├── forceModel_particleCellVolume.txt │ │ ├── forceModel_particleVolume.txt │ │ ├── forceModel_scalarGeneralExchange.txt │ │ ├── forceModel_virtualMassForce.txt │ │ ├── forceModel_viscForce.txt │ │ ├── forceModel_volWeightedAverage.txt │ │ ├── forceSubModel.txt │ │ ├── forceSubModel_ImEx.txt │ │ ├── fvOptions.txt │ │ ├── fvOptions_meanSupVelocityForce.txt │ │ ├── liggghtsCommandModel.txt │ │ ├── liggghtsCommandModel_execute.txt │ │ ├── liggghtsCommandModel_readLiggghtsData.txt │ │ ├── liggghtsCommandModel_runLiggghts.txt │ │ ├── liggghtsCommandModel_setDEMGravity.txt │ │ ├── liggghtsCommandModel_writeLiggghts.txt │ │ ├── locateModel.txt │ │ ├── locateModel_engineSearch.txt │ │ ├── locateModel_engineSearchIB.txt │ │ ├── locateModel_standardSearch.txt │ │ ├── meshMotionModel.txt │ │ ├── meshMotionModel_noMeshMotion.txt │ │ ├── momCoupleModel.txt │ │ ├── momCoupleModel_explicitCouple.txt │ │ ├── momCoupleModel_implicitCouple.txt │ │ ├── momCoupleModel_noCouple.txt │ │ ├── probeModel.txt │ │ ├── probeModel_noProbe.txt │ │ ├── probeModel_particleProbe.txt │ │ ├── scalarTransportModel.txt │ │ ├── scalarTransportModel_generalManual.txt │ │ ├── smoothingModel.txt │ │ ├── smoothingModel_constDiffSmoothing.txt │ │ ├── smoothingModel_noSmoothing.txt │ │ ├── voidFractionModel.txt │ │ ├── voidFractionModel_GaussVoidFraction.txt │ │ ├── voidFractionModel_IBVoidFraction.txt │ │ ├── voidFractionModel_bigParticleVoidFraction.txt │ │ ├── voidFractionModel_centreVoidFraction.txt │ │ ├── voidFractionModel_dividedVoidFraction.txt │ │ ├── voidFractionModel_noVoidFraction.txt │ │ └── voidFractionModel_trilinearVoidFraction.txt │ │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── badge_only.css.map │ │ │ ├── theme.css │ │ │ └── theme.css.map │ │ ├── doctools.js │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore.js │ │ └── websupport.js │ │ ├── _tmp │ │ └── sphinx_rtd_theme │ │ │ ├── README.html │ │ │ └── demo_docs │ │ │ └── source │ │ │ ├── api.html │ │ │ ├── demo.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── long.html │ │ │ └── toc.html │ │ ├── averagingModel.html │ │ ├── averagingModel_dense.html │ │ ├── averagingModel_dilute.html │ │ ├── cfdemSolverIB.html │ │ ├── cfdemSolverPiso.html │ │ ├── cfdemSolverPisoSTM.html │ │ ├── cfdemSolverPisoScalar.html │ │ ├── clockModel.html │ │ ├── clockModel_noClock.html │ │ ├── clockModel_standardClock.html │ │ ├── dataExchangeModel.html │ │ ├── dataExchangeModel_noDataExchange.html │ │ ├── dataExchangeModel_oneWayVTK.html │ │ ├── dataExchangeModel_twoWayFiles.html │ │ ├── dataExchangeModel_twoWayMPI.html │ │ ├── fix_couple_cfd.html │ │ ├── fix_couple_cfd_force.html │ │ ├── fix_couple_cfd_force_implicit.html │ │ ├── forceModel.html │ │ ├── forceModel_Archimedes.html │ │ ├── forceModel_ArchimedesIB.html │ │ ├── forceModel_DiFeliceDrag.html │ │ ├── forceModel_GidaspowDrag.html │ │ ├── forceModel_KochHillDrag.html │ │ ├── forceModel_LaEuScalarTemp.html │ │ ├── forceModel_MeiLift.html │ │ ├── forceModel_SchillerNaumannDrag.html │ │ ├── forceModel_ShirgaonkarIB.html │ │ ├── forceModel_checkCouplingInterval.html │ │ ├── forceModel_fieldStore.html │ │ ├── forceModel_fieldTimeAverage.html │ │ ├── forceModel_gradPForce.html │ │ ├── forceModel_noDrag.html │ │ ├── forceModel_particleCellVolume.html │ │ ├── forceModel_particleVolume.html │ │ ├── forceModel_scalarGeneralExchange.html │ │ ├── forceModel_virtualMassForce.html │ │ ├── forceModel_viscForce.html │ │ ├── forceModel_volWeightedAverage.html │ │ ├── forceSubModel.html │ │ ├── forceSubModel_ImEx.html │ │ ├── fvOptions.html │ │ ├── fvOptions_meanSupVelocityForce.html │ │ ├── genindex.html │ │ ├── liggghtsCommandModel.html │ │ ├── liggghtsCommandModel_execute.html │ │ ├── liggghtsCommandModel_readLiggghtsData.html │ │ ├── liggghtsCommandModel_runLiggghts.html │ │ ├── liggghtsCommandModel_setDEMGravity.html │ │ ├── liggghtsCommandModel_writeLiggghts.html │ │ ├── locateModel.html │ │ ├── locateModel_engineSearch.html │ │ ├── locateModel_engineSearchIB.html │ │ ├── locateModel_standardSearch.html │ │ ├── meshMotionModel.html │ │ ├── meshMotionModel_noMeshMotion.html │ │ ├── momCoupleModel.html │ │ ├── momCoupleModel_explicitCouple.html │ │ ├── momCoupleModel_implicitCouple.html │ │ ├── momCoupleModel_noCouple.html │ │ ├── objects.inv │ │ ├── probeModel.html │ │ ├── probeModel_noProbe.html │ │ ├── probeModel_particleProbe.html │ │ ├── scalarTransportModel.html │ │ ├── scalarTransportModel_generalManual.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── smoothingModel.html │ │ ├── smoothingModel_constDiffSmoothing.html │ │ ├── smoothingModel_noSmoothing.html │ │ ├── voidFractionModel.html │ │ ├── voidFractionModel_GaussVoidFraction.html │ │ ├── voidFractionModel_IBVoidFraction.html │ │ ├── voidFractionModel_bigParticleVoidFraction.html │ │ ├── voidFractionModel_centreVoidFraction.html │ │ ├── voidFractionModel_dividedVoidFraction.html │ │ ├── voidFractionModel_noVoidFraction.html │ │ └── voidFractionModel_trilinearVoidFraction.html ├── doxygen │ ├── confFile │ └── html │ │ ├── ArchimedesIB_8H_source.html │ │ ├── Archimedes_8H_source.html │ │ ├── DiFeliceDrag_8H_source.html │ │ ├── GaussVoidFraction_8H_source.html │ │ ├── GidaspowDrag_8H_source.html │ │ ├── IBVoidFraction_8H_source.html │ │ ├── IOModel_8H_source.html │ │ ├── ImEx_8H_source.html │ │ ├── KochHillDrag_8H_source.html │ │ ├── LaEuScalarTemp_8H_source.html │ │ ├── MeiLift_8H_source.html │ │ ├── OFversion_8H_source.html │ │ ├── SchillerNaumannDrag_8H_source.html │ │ ├── ShirgaonkarIB_8H_source.html │ │ ├── allRegion_8H_source.html │ │ ├── annotated.html │ │ ├── averagingModel_8H_source.html │ │ ├── basicIO_8H_source.html │ │ ├── bigParticleVoidFraction_8H_source.html │ │ ├── centreVoidFraction_8H_source.html │ │ ├── cfdemCloudIB_8H_source.html │ │ ├── cfdemCloudI_8H_source.html │ │ ├── cfdemCloud_2cfdemCloudI_8H_source.html │ │ ├── cfdemCloud_2cfdemCloud_8H_source.html │ │ ├── cfdemCloud_8H_source.html │ │ ├── checkCouplingInterval_8H_source.html │ │ ├── checkModelType_8H_source.html │ │ ├── classFoam_1_1Archimedes-members.html │ │ ├── classFoam_1_1Archimedes.html │ │ ├── classFoam_1_1ArchimedesIB-members.html │ │ ├── classFoam_1_1ArchimedesIB.html │ │ ├── classFoam_1_1ArchimedesIB__coll__graph.dot │ │ ├── classFoam_1_1ArchimedesIB__coll__graph.map │ │ ├── classFoam_1_1ArchimedesIB__coll__graph.md5 │ │ ├── classFoam_1_1ArchimedesIB__inherit__graph.dot │ │ ├── classFoam_1_1ArchimedesIB__inherit__graph.map │ │ ├── classFoam_1_1ArchimedesIB__inherit__graph.md5 │ │ ├── classFoam_1_1Archimedes__coll__graph.dot │ │ ├── classFoam_1_1Archimedes__coll__graph.map │ │ ├── classFoam_1_1Archimedes__coll__graph.md5 │ │ ├── classFoam_1_1Archimedes__inherit__graph.dot │ │ ├── classFoam_1_1Archimedes__inherit__graph.map │ │ ├── classFoam_1_1Archimedes__inherit__graph.md5 │ │ ├── classFoam_1_1DEMdrivenMeshMotion-members.html │ │ ├── classFoam_1_1DEMdrivenMeshMotion.html │ │ ├── classFoam_1_1DEMdrivenMeshMotion__coll__graph.map │ │ ├── classFoam_1_1DEMdrivenMeshMotion__coll__graph.md5 │ │ ├── classFoam_1_1DEMdrivenMeshMotion__inherit__graph.map │ │ ├── classFoam_1_1DEMdrivenMeshMotion__inherit__graph.md5 │ │ ├── classFoam_1_1DiFeliceDrag-members.html │ │ ├── classFoam_1_1DiFeliceDrag.html │ │ ├── classFoam_1_1DiFeliceDragMS-members.html │ │ ├── classFoam_1_1DiFeliceDragMS.html │ │ ├── classFoam_1_1DiFeliceDragMS__coll__graph.map │ │ ├── classFoam_1_1DiFeliceDragMS__coll__graph.md5 │ │ ├── classFoam_1_1DiFeliceDragMS__inherit__graph.map │ │ ├── classFoam_1_1DiFeliceDragMS__inherit__graph.md5 │ │ ├── classFoam_1_1DiFeliceDrag__coll__graph.dot │ │ ├── classFoam_1_1DiFeliceDrag__coll__graph.map │ │ ├── classFoam_1_1DiFeliceDrag__coll__graph.md5 │ │ ├── classFoam_1_1DiFeliceDrag__inherit__graph.dot │ │ ├── classFoam_1_1DiFeliceDrag__inherit__graph.map │ │ ├── classFoam_1_1DiFeliceDrag__inherit__graph.md5 │ │ ├── classFoam_1_1GaussVoidFraction-members.html │ │ ├── classFoam_1_1GaussVoidFraction.html │ │ ├── classFoam_1_1GaussVoidFraction__coll__graph.dot │ │ ├── classFoam_1_1GaussVoidFraction__coll__graph.map │ │ ├── classFoam_1_1GaussVoidFraction__coll__graph.md5 │ │ ├── classFoam_1_1GaussVoidFraction__inherit__graph.dot │ │ ├── classFoam_1_1GaussVoidFraction__inherit__graph.map │ │ ├── classFoam_1_1GaussVoidFraction__inherit__graph.md5 │ │ ├── classFoam_1_1GidaspowDrag-members.html │ │ ├── classFoam_1_1GidaspowDrag.html │ │ ├── classFoam_1_1GidaspowDrag__coll__graph.dot │ │ ├── classFoam_1_1GidaspowDrag__coll__graph.map │ │ ├── classFoam_1_1GidaspowDrag__coll__graph.md5 │ │ ├── classFoam_1_1GidaspowDrag__inherit__graph.dot │ │ ├── classFoam_1_1GidaspowDrag__inherit__graph.map │ │ ├── classFoam_1_1GidaspowDrag__inherit__graph.md5 │ │ ├── classFoam_1_1IBVoidFraction-members.html │ │ ├── classFoam_1_1IBVoidFraction.html │ │ ├── classFoam_1_1IBVoidFraction__coll__graph.dot │ │ ├── classFoam_1_1IBVoidFraction__coll__graph.md5 │ │ ├── classFoam_1_1IBVoidFraction__inherit__graph.dot │ │ ├── classFoam_1_1IBVoidFraction__inherit__graph.md5 │ │ ├── classFoam_1_1IOModel-members.html │ │ ├── classFoam_1_1IOModel.html │ │ ├── classFoam_1_1IOModel__coll__graph.dot │ │ ├── classFoam_1_1IOModel__coll__graph.map │ │ ├── classFoam_1_1IOModel__coll__graph.md5 │ │ ├── classFoam_1_1IOModel__inherit__graph.dot │ │ ├── classFoam_1_1IOModel__inherit__graph.map │ │ ├── classFoam_1_1IOModel__inherit__graph.md5 │ │ ├── classFoam_1_1ImEx-members.html │ │ ├── classFoam_1_1ImEx.html │ │ ├── classFoam_1_1ImEx__coll__graph.dot │ │ ├── classFoam_1_1ImEx__coll__graph.md5 │ │ ├── classFoam_1_1ImEx__inherit__graph.dot │ │ ├── classFoam_1_1ImEx__inherit__graph.md5 │ │ ├── classFoam_1_1KochHillDrag-members.html │ │ ├── classFoam_1_1KochHillDrag.html │ │ ├── classFoam_1_1KochHillDrag2-members.html │ │ ├── classFoam_1_1KochHillDrag2.html │ │ ├── classFoam_1_1KochHillDrag2__coll__graph.map │ │ ├── classFoam_1_1KochHillDrag2__coll__graph.md5 │ │ ├── classFoam_1_1KochHillDrag2__inherit__graph.map │ │ ├── classFoam_1_1KochHillDrag2__inherit__graph.md5 │ │ ├── classFoam_1_1KochHillDrag__coll__graph.dot │ │ ├── classFoam_1_1KochHillDrag__coll__graph.map │ │ ├── classFoam_1_1KochHillDrag__coll__graph.md5 │ │ ├── classFoam_1_1KochHillDrag__inherit__graph.dot │ │ ├── classFoam_1_1KochHillDrag__inherit__graph.map │ │ ├── classFoam_1_1KochHillDrag__inherit__graph.md5 │ │ ├── classFoam_1_1LaEuScalarDust-members.html │ │ ├── classFoam_1_1LaEuScalarDust.html │ │ ├── classFoam_1_1LaEuScalarDust__coll__graph.map │ │ ├── classFoam_1_1LaEuScalarDust__coll__graph.md5 │ │ ├── classFoam_1_1LaEuScalarDust__inherit__graph.map │ │ ├── classFoam_1_1LaEuScalarDust__inherit__graph.md5 │ │ ├── classFoam_1_1LaEuScalarTemp-members.html │ │ ├── classFoam_1_1LaEuScalarTemp.html │ │ ├── classFoam_1_1LaEuScalarTemp__coll__graph.dot │ │ ├── classFoam_1_1LaEuScalarTemp__coll__graph.map │ │ ├── classFoam_1_1LaEuScalarTemp__coll__graph.md5 │ │ ├── classFoam_1_1LaEuScalarTemp__inherit__graph.dot │ │ ├── classFoam_1_1LaEuScalarTemp__inherit__graph.map │ │ ├── classFoam_1_1LaEuScalarTemp__inherit__graph.md5 │ │ ├── classFoam_1_1MeiLift-members.html │ │ ├── classFoam_1_1MeiLift.html │ │ ├── classFoam_1_1MeiLift__coll__graph.dot │ │ ├── classFoam_1_1MeiLift__coll__graph.map │ │ ├── classFoam_1_1MeiLift__coll__graph.md5 │ │ ├── classFoam_1_1MeiLift__inherit__graph.dot │ │ ├── classFoam_1_1MeiLift__inherit__graph.map │ │ ├── classFoam_1_1MeiLift__inherit__graph.md5 │ │ ├── classFoam_1_1SchillerNaumannDrag-members.html │ │ ├── classFoam_1_1SchillerNaumannDrag.html │ │ ├── classFoam_1_1SchillerNaumannDrag__coll__graph.dot │ │ ├── classFoam_1_1SchillerNaumannDrag__coll__graph.map │ │ ├── classFoam_1_1SchillerNaumannDrag__coll__graph.md5 │ │ ├── classFoam_1_1SchillerNaumannDrag__inherit__graph.dot │ │ ├── classFoam_1_1SchillerNaumannDrag__inherit__graph.map │ │ ├── classFoam_1_1SchillerNaumannDrag__inherit__graph.md5 │ │ ├── classFoam_1_1ShirgaonkarIB-members.html │ │ ├── classFoam_1_1ShirgaonkarIB.html │ │ ├── classFoam_1_1ShirgaonkarIB__coll__graph.dot │ │ ├── classFoam_1_1ShirgaonkarIB__coll__graph.map │ │ ├── classFoam_1_1ShirgaonkarIB__coll__graph.md5 │ │ ├── classFoam_1_1ShirgaonkarIB__inherit__graph.dot │ │ ├── classFoam_1_1ShirgaonkarIB__inherit__graph.map │ │ ├── classFoam_1_1ShirgaonkarIB__inherit__graph.md5 │ │ ├── classFoam_1_1TempExchange-members.html │ │ ├── classFoam_1_1TempExchange.html │ │ ├── classFoam_1_1TempExchange__coll__graph.map │ │ ├── classFoam_1_1TempExchange__coll__graph.md5 │ │ ├── classFoam_1_1TempExchange__inherit__graph.map │ │ ├── classFoam_1_1TempExchange__inherit__graph.md5 │ │ ├── classFoam_1_1allRegion-members.html │ │ ├── classFoam_1_1allRegion.html │ │ ├── classFoam_1_1allRegion__coll__graph.dot │ │ ├── classFoam_1_1allRegion__coll__graph.map │ │ ├── classFoam_1_1allRegion__coll__graph.md5 │ │ ├── classFoam_1_1allRegion__inherit__graph.dot │ │ ├── classFoam_1_1allRegion__inherit__graph.map │ │ ├── classFoam_1_1allRegion__inherit__graph.md5 │ │ ├── classFoam_1_1averagingModel-members.html │ │ ├── classFoam_1_1averagingModel.html │ │ ├── classFoam_1_1averagingModel__coll__graph.dot │ │ ├── classFoam_1_1averagingModel__coll__graph.map │ │ ├── classFoam_1_1averagingModel__coll__graph.md5 │ │ ├── classFoam_1_1averagingModel__inherit__graph.dot │ │ ├── classFoam_1_1averagingModel__inherit__graph.map │ │ ├── classFoam_1_1averagingModel__inherit__graph.md5 │ │ ├── classFoam_1_1basicIO-members.html │ │ ├── classFoam_1_1basicIO.html │ │ ├── classFoam_1_1basicIO__coll__graph.dot │ │ ├── classFoam_1_1basicIO__coll__graph.map │ │ ├── classFoam_1_1basicIO__coll__graph.md5 │ │ ├── classFoam_1_1basicIO__inherit__graph.dot │ │ ├── classFoam_1_1basicIO__inherit__graph.map │ │ ├── classFoam_1_1basicIO__inherit__graph.md5 │ │ ├── classFoam_1_1bigParticleVoidFraction-members.html │ │ ├── classFoam_1_1bigParticleVoidFraction.html │ │ ├── classFoam_1_1bigParticleVoidFraction__coll__graph.dot │ │ ├── classFoam_1_1bigParticleVoidFraction__coll__graph.map │ │ ├── classFoam_1_1bigParticleVoidFraction__coll__graph.md5 │ │ ├── classFoam_1_1bigParticleVoidFraction__inherit__graph.dot │ │ ├── classFoam_1_1bigParticleVoidFraction__inherit__graph.map │ │ ├── classFoam_1_1bigParticleVoidFraction__inherit__graph.md5 │ │ ├── classFoam_1_1centreVoidFraction-members.html │ │ ├── classFoam_1_1centreVoidFraction.html │ │ ├── classFoam_1_1centreVoidFraction__coll__graph.dot │ │ ├── classFoam_1_1centreVoidFraction__coll__graph.map │ │ ├── classFoam_1_1centreVoidFraction__coll__graph.md5 │ │ ├── classFoam_1_1centreVoidFraction__inherit__graph.dot │ │ ├── classFoam_1_1centreVoidFraction__inherit__graph.map │ │ ├── classFoam_1_1centreVoidFraction__inherit__graph.md5 │ │ ├── classFoam_1_1cfdemCloud-members.html │ │ ├── classFoam_1_1cfdemCloud.html │ │ ├── classFoam_1_1cfdemCloudIB-members.html │ │ ├── classFoam_1_1cfdemCloudIB.html │ │ ├── classFoam_1_1cfdemCloudIB__coll__graph.dot │ │ ├── classFoam_1_1cfdemCloudIB__coll__graph.map │ │ ├── classFoam_1_1cfdemCloudIB__coll__graph.md5 │ │ ├── classFoam_1_1cfdemCloudIB__inherit__graph.dot │ │ ├── classFoam_1_1cfdemCloudIB__inherit__graph.map │ │ ├── classFoam_1_1cfdemCloudIB__inherit__graph.md5 │ │ ├── classFoam_1_1cfdemCloudMS-members.html │ │ ├── classFoam_1_1cfdemCloudMS.html │ │ ├── classFoam_1_1cfdemCloudMS__coll__graph.map │ │ ├── classFoam_1_1cfdemCloudMS__coll__graph.md5 │ │ ├── classFoam_1_1cfdemCloudMS__inherit__graph.map │ │ ├── classFoam_1_1cfdemCloudMS__inherit__graph.md5 │ │ ├── classFoam_1_1cfdemCloud__inherit__graph.dot │ │ ├── classFoam_1_1cfdemCloud__inherit__graph.map │ │ ├── classFoam_1_1cfdemCloud__inherit__graph.md5 │ │ ├── classFoam_1_1checkCouplingInterval-members.html │ │ ├── classFoam_1_1checkCouplingInterval.html │ │ ├── classFoam_1_1checkCouplingInterval__coll__graph.dot │ │ ├── classFoam_1_1checkCouplingInterval__coll__graph.md5 │ │ ├── classFoam_1_1checkCouplingInterval__inherit__graph.dot │ │ ├── classFoam_1_1checkCouplingInterval__inherit__graph.md5 │ │ ├── classFoam_1_1clockModel-members.html │ │ ├── classFoam_1_1clockModel.html │ │ ├── classFoam_1_1clockModel__coll__graph.dot │ │ ├── classFoam_1_1clockModel__coll__graph.md5 │ │ ├── classFoam_1_1clockModel__inherit__graph.dot │ │ ├── classFoam_1_1clockModel__inherit__graph.md5 │ │ ├── classFoam_1_1constDiffSmoothing-members.html │ │ ├── classFoam_1_1constDiffSmoothing.html │ │ ├── classFoam_1_1constDiffSmoothing__coll__graph.dot │ │ ├── classFoam_1_1constDiffSmoothing__coll__graph.md5 │ │ ├── classFoam_1_1constDiffSmoothing__inherit__graph.dot │ │ ├── classFoam_1_1constDiffSmoothing__inherit__graph.md5 │ │ ├── classFoam_1_1dataExchangeModel-members.html │ │ ├── classFoam_1_1dataExchangeModel.html │ │ ├── classFoam_1_1dataExchangeModel__coll__graph.dot │ │ ├── classFoam_1_1dataExchangeModel__coll__graph.map │ │ ├── classFoam_1_1dataExchangeModel__coll__graph.md5 │ │ ├── classFoam_1_1dataExchangeModel__inherit__graph.dot │ │ ├── classFoam_1_1dataExchangeModel__inherit__graph.map │ │ ├── classFoam_1_1dataExchangeModel__inherit__graph.md5 │ │ ├── classFoam_1_1dense-members.html │ │ ├── classFoam_1_1dense.html │ │ ├── classFoam_1_1dense__coll__graph.dot │ │ ├── classFoam_1_1dense__coll__graph.map │ │ ├── classFoam_1_1dense__coll__graph.md5 │ │ ├── classFoam_1_1dense__inherit__graph.dot │ │ ├── classFoam_1_1dense__inherit__graph.map │ │ ├── classFoam_1_1dense__inherit__graph.md5 │ │ ├── classFoam_1_1differentialRegion-members.html │ │ ├── classFoam_1_1differentialRegion.html │ │ ├── classFoam_1_1differentialRegion__coll__graph.map │ │ ├── classFoam_1_1differentialRegion__coll__graph.md5 │ │ ├── classFoam_1_1differentialRegion__inherit__graph.map │ │ ├── classFoam_1_1differentialRegion__inherit__graph.md5 │ │ ├── classFoam_1_1dilute-members.html │ │ ├── classFoam_1_1dilute.html │ │ ├── classFoam_1_1dilute__coll__graph.dot │ │ ├── classFoam_1_1dilute__coll__graph.map │ │ ├── classFoam_1_1dilute__coll__graph.md5 │ │ ├── classFoam_1_1dilute__inherit__graph.dot │ │ ├── classFoam_1_1dilute__inherit__graph.map │ │ ├── classFoam_1_1dilute__inherit__graph.md5 │ │ ├── classFoam_1_1dividedVoidFraction-members.html │ │ ├── classFoam_1_1dividedVoidFraction.html │ │ ├── classFoam_1_1dividedVoidFractionMS-members.html │ │ ├── classFoam_1_1dividedVoidFractionMS.html │ │ ├── classFoam_1_1dividedVoidFractionMS__coll__graph.map │ │ ├── classFoam_1_1dividedVoidFractionMS__coll__graph.md5 │ │ ├── classFoam_1_1dividedVoidFractionMS__inherit__graph.map │ │ ├── classFoam_1_1dividedVoidFractionMS__inherit__graph.md5 │ │ ├── classFoam_1_1dividedVoidFraction__coll__graph.dot │ │ ├── classFoam_1_1dividedVoidFraction__coll__graph.map │ │ ├── classFoam_1_1dividedVoidFraction__coll__graph.md5 │ │ ├── classFoam_1_1dividedVoidFraction__inherit__graph.dot │ │ ├── classFoam_1_1dividedVoidFraction__inherit__graph.map │ │ ├── classFoam_1_1dividedVoidFraction__inherit__graph.md5 │ │ ├── classFoam_1_1engineSearch-members.html │ │ ├── classFoam_1_1engineSearch.html │ │ ├── classFoam_1_1engineSearchIB-members.html │ │ ├── classFoam_1_1engineSearchIB.html │ │ ├── classFoam_1_1engineSearchIB__coll__graph.dot │ │ ├── classFoam_1_1engineSearchIB__coll__graph.map │ │ ├── classFoam_1_1engineSearchIB__coll__graph.md5 │ │ ├── classFoam_1_1engineSearchIB__inherit__graph.dot │ │ ├── classFoam_1_1engineSearchIB__inherit__graph.map │ │ ├── classFoam_1_1engineSearchIB__inherit__graph.md5 │ │ ├── classFoam_1_1engineSearchLambda-members.html │ │ ├── classFoam_1_1engineSearchLambda.html │ │ ├── classFoam_1_1engineSearchLambda__coll__graph.map │ │ ├── classFoam_1_1engineSearchLambda__coll__graph.md5 │ │ ├── classFoam_1_1engineSearchLambda__inherit__graph.map │ │ ├── classFoam_1_1engineSearchLambda__inherit__graph.md5 │ │ ├── classFoam_1_1engineSearch__coll__graph.dot │ │ ├── classFoam_1_1engineSearch__coll__graph.map │ │ ├── classFoam_1_1engineSearch__coll__graph.md5 │ │ ├── classFoam_1_1engineSearch__inherit__graph.dot │ │ ├── classFoam_1_1engineSearch__inherit__graph.map │ │ ├── classFoam_1_1engineSearch__inherit__graph.md5 │ │ ├── classFoam_1_1execute-members.html │ │ ├── classFoam_1_1execute.html │ │ ├── classFoam_1_1execute__coll__graph.dot │ │ ├── classFoam_1_1execute__coll__graph.map │ │ ├── classFoam_1_1execute__coll__graph.md5 │ │ ├── classFoam_1_1execute__inherit__graph.dot │ │ ├── classFoam_1_1execute__inherit__graph.map │ │ ├── classFoam_1_1execute__inherit__graph.md5 │ │ ├── classFoam_1_1explicitCouple-members.html │ │ ├── classFoam_1_1explicitCouple.html │ │ ├── classFoam_1_1explicitCouple__coll__graph.dot │ │ ├── classFoam_1_1explicitCouple__coll__graph.map │ │ ├── classFoam_1_1explicitCouple__coll__graph.md5 │ │ ├── classFoam_1_1explicitCouple__inherit__graph.dot │ │ ├── classFoam_1_1explicitCouple__inherit__graph.map │ │ ├── classFoam_1_1explicitCouple__inherit__graph.md5 │ │ ├── classFoam_1_1fieldStore-members.html │ │ ├── classFoam_1_1fieldStore.html │ │ ├── classFoam_1_1fieldStore__coll__graph.dot │ │ ├── classFoam_1_1fieldStore__coll__graph.md5 │ │ ├── classFoam_1_1fieldStore__inherit__graph.dot │ │ ├── classFoam_1_1fieldStore__inherit__graph.md5 │ │ ├── classFoam_1_1fieldTimeAverage-members.html │ │ ├── classFoam_1_1fieldTimeAverage.html │ │ ├── classFoam_1_1fieldTimeAverage__coll__graph.map │ │ ├── classFoam_1_1fieldTimeAverage__coll__graph.md5 │ │ ├── classFoam_1_1fieldTimeAverage__inherit__graph.map │ │ ├── classFoam_1_1fieldTimeAverage__inherit__graph.md5 │ │ ├── classFoam_1_1forceModel-members.html │ │ ├── classFoam_1_1forceModel.html │ │ ├── classFoam_1_1forceModelMS-members.html │ │ ├── classFoam_1_1forceModelMS.html │ │ ├── classFoam_1_1forceModelMS__coll__graph.map │ │ ├── classFoam_1_1forceModelMS__coll__graph.md5 │ │ ├── classFoam_1_1forceModelMS__inherit__graph.map │ │ ├── classFoam_1_1forceModelMS__inherit__graph.md5 │ │ ├── classFoam_1_1forceModel__coll__graph.dot │ │ ├── classFoam_1_1forceModel__coll__graph.map │ │ ├── classFoam_1_1forceModel__coll__graph.md5 │ │ ├── classFoam_1_1forceModel__inherit__graph.dot │ │ ├── classFoam_1_1forceModel__inherit__graph.map │ │ ├── classFoam_1_1forceModel__inherit__graph.md5 │ │ ├── classFoam_1_1forceSubModel-members.html │ │ ├── classFoam_1_1forceSubModel.html │ │ ├── classFoam_1_1forceSubModel__coll__graph.dot │ │ ├── classFoam_1_1forceSubModel__coll__graph.md5 │ │ ├── classFoam_1_1forceSubModel__inherit__graph.dot │ │ ├── classFoam_1_1forceSubModel__inherit__graph.md5 │ │ ├── classFoam_1_1global-members.html │ │ ├── classFoam_1_1global.html │ │ ├── classFoam_1_1global__coll__graph.dot │ │ ├── classFoam_1_1global__coll__graph.md5 │ │ ├── classFoam_1_1gradPForce-members.html │ │ ├── classFoam_1_1gradPForce.html │ │ ├── classFoam_1_1gradPForce__coll__graph.dot │ │ ├── classFoam_1_1gradPForce__coll__graph.map │ │ ├── classFoam_1_1gradPForce__coll__graph.md5 │ │ ├── classFoam_1_1gradPForce__inherit__graph.dot │ │ ├── classFoam_1_1gradPForce__inherit__graph.map │ │ ├── classFoam_1_1gradPForce__inherit__graph.md5 │ │ ├── classFoam_1_1implicitCouple-members.html │ │ ├── classFoam_1_1implicitCouple.html │ │ ├── classFoam_1_1implicitCouple__coll__graph.dot │ │ ├── classFoam_1_1implicitCouple__coll__graph.map │ │ ├── classFoam_1_1implicitCouple__coll__graph.md5 │ │ ├── classFoam_1_1implicitCouple__inherit__graph.dot │ │ ├── classFoam_1_1implicitCouple__inherit__graph.map │ │ ├── classFoam_1_1implicitCouple__inherit__graph.md5 │ │ ├── classFoam_1_1interface-members.html │ │ ├── classFoam_1_1interface.html │ │ ├── classFoam_1_1interface__coll__graph.dot │ │ ├── classFoam_1_1interface__coll__graph.map │ │ ├── classFoam_1_1interface__coll__graph.md5 │ │ ├── classFoam_1_1interface__inherit__graph.dot │ │ ├── classFoam_1_1interface__inherit__graph.map │ │ ├── classFoam_1_1interface__inherit__graph.md5 │ │ ├── classFoam_1_1liggghtsCommandModel-members.html │ │ ├── classFoam_1_1liggghtsCommandModel.html │ │ ├── classFoam_1_1liggghtsCommandModel__coll__graph.dot │ │ ├── classFoam_1_1liggghtsCommandModel__coll__graph.map │ │ ├── classFoam_1_1liggghtsCommandModel__coll__graph.md5 │ │ ├── classFoam_1_1liggghtsCommandModel__inherit__graph.dot │ │ ├── classFoam_1_1liggghtsCommandModel__inherit__graph.map │ │ ├── classFoam_1_1liggghtsCommandModel__inherit__graph.md5 │ │ ├── classFoam_1_1locateModel-members.html │ │ ├── classFoam_1_1locateModel.html │ │ ├── classFoam_1_1locateModel__coll__graph.dot │ │ ├── classFoam_1_1locateModel__coll__graph.map │ │ ├── classFoam_1_1locateModel__coll__graph.md5 │ │ ├── classFoam_1_1locateModel__inherit__graph.dot │ │ ├── classFoam_1_1locateModel__inherit__graph.map │ │ ├── classFoam_1_1locateModel__inherit__graph.md5 │ │ ├── classFoam_1_1meshMotionModel-members.html │ │ ├── classFoam_1_1meshMotionModel.html │ │ ├── classFoam_1_1meshMotionModel__coll__graph.dot │ │ ├── classFoam_1_1meshMotionModel__coll__graph.map │ │ ├── classFoam_1_1meshMotionModel__coll__graph.md5 │ │ ├── classFoam_1_1meshMotionModel__inherit__graph.dot │ │ ├── classFoam_1_1meshMotionModel__inherit__graph.map │ │ ├── classFoam_1_1meshMotionModel__inherit__graph.md5 │ │ ├── classFoam_1_1momCoupleModel-members.html │ │ ├── classFoam_1_1momCoupleModel.html │ │ ├── classFoam_1_1momCoupleModel__coll__graph.dot │ │ ├── classFoam_1_1momCoupleModel__coll__graph.map │ │ ├── classFoam_1_1momCoupleModel__coll__graph.md5 │ │ ├── classFoam_1_1momCoupleModel__inherit__graph.dot │ │ ├── classFoam_1_1momCoupleModel__inherit__graph.map │ │ ├── classFoam_1_1momCoupleModel__inherit__graph.md5 │ │ ├── classFoam_1_1noClock-members.html │ │ ├── classFoam_1_1noClock.html │ │ ├── classFoam_1_1noClock__coll__graph.dot │ │ ├── classFoam_1_1noClock__coll__graph.md5 │ │ ├── classFoam_1_1noClock__inherit__graph.dot │ │ ├── classFoam_1_1noClock__inherit__graph.md5 │ │ ├── classFoam_1_1noCouple-members.html │ │ ├── classFoam_1_1noCouple.html │ │ ├── classFoam_1_1noCouple__coll__graph.dot │ │ ├── classFoam_1_1noCouple__coll__graph.map │ │ ├── classFoam_1_1noCouple__coll__graph.md5 │ │ ├── classFoam_1_1noCouple__inherit__graph.dot │ │ ├── classFoam_1_1noCouple__inherit__graph.map │ │ ├── classFoam_1_1noCouple__inherit__graph.md5 │ │ ├── classFoam_1_1noDataExchange-members.html │ │ ├── classFoam_1_1noDataExchange.html │ │ ├── classFoam_1_1noDataExchange__coll__graph.dot │ │ ├── classFoam_1_1noDataExchange__coll__graph.map │ │ ├── classFoam_1_1noDataExchange__coll__graph.md5 │ │ ├── classFoam_1_1noDataExchange__inherit__graph.dot │ │ ├── classFoam_1_1noDataExchange__inherit__graph.map │ │ ├── classFoam_1_1noDataExchange__inherit__graph.md5 │ │ ├── classFoam_1_1noDrag-members.html │ │ ├── classFoam_1_1noDrag.html │ │ ├── classFoam_1_1noDrag__coll__graph.dot │ │ ├── classFoam_1_1noDrag__coll__graph.map │ │ ├── classFoam_1_1noDrag__coll__graph.md5 │ │ ├── classFoam_1_1noDrag__inherit__graph.dot │ │ ├── classFoam_1_1noDrag__inherit__graph.map │ │ ├── classFoam_1_1noDrag__inherit__graph.md5 │ │ ├── classFoam_1_1noIO-members.html │ │ ├── classFoam_1_1noIO.html │ │ ├── classFoam_1_1noIO__coll__graph.dot │ │ ├── classFoam_1_1noIO__coll__graph.map │ │ ├── classFoam_1_1noIO__coll__graph.md5 │ │ ├── classFoam_1_1noIO__inherit__graph.dot │ │ ├── classFoam_1_1noIO__inherit__graph.map │ │ ├── classFoam_1_1noIO__inherit__graph.md5 │ │ ├── classFoam_1_1noMeshMotion-members.html │ │ ├── classFoam_1_1noMeshMotion.html │ │ ├── classFoam_1_1noMeshMotion__coll__graph.dot │ │ ├── classFoam_1_1noMeshMotion__coll__graph.map │ │ ├── classFoam_1_1noMeshMotion__coll__graph.md5 │ │ ├── classFoam_1_1noMeshMotion__inherit__graph.dot │ │ ├── classFoam_1_1noMeshMotion__inherit__graph.map │ │ ├── classFoam_1_1noMeshMotion__inherit__graph.md5 │ │ ├── classFoam_1_1noProbe-members.html │ │ ├── classFoam_1_1noProbe.html │ │ ├── classFoam_1_1noProbe__coll__graph.dot │ │ ├── classFoam_1_1noProbe__coll__graph.md5 │ │ ├── classFoam_1_1noProbe__inherit__graph.dot │ │ ├── classFoam_1_1noProbe__inherit__graph.md5 │ │ ├── classFoam_1_1noSmoothing-members.html │ │ ├── classFoam_1_1noSmoothing.html │ │ ├── classFoam_1_1noSmoothing__coll__graph.dot │ │ ├── classFoam_1_1noSmoothing__coll__graph.md5 │ │ ├── classFoam_1_1noSmoothing__inherit__graph.dot │ │ ├── classFoam_1_1noSmoothing__inherit__graph.md5 │ │ ├── classFoam_1_1oneWayVTK-members.html │ │ ├── classFoam_1_1oneWayVTK.html │ │ ├── classFoam_1_1oneWayVTK__coll__graph.dot │ │ ├── classFoam_1_1oneWayVTK__coll__graph.map │ │ ├── classFoam_1_1oneWayVTK__coll__graph.md5 │ │ ├── classFoam_1_1oneWayVTK__inherit__graph.dot │ │ ├── classFoam_1_1oneWayVTK__inherit__graph.map │ │ ├── classFoam_1_1oneWayVTK__inherit__graph.md5 │ │ ├── classFoam_1_1particleCellVolume-members.html │ │ ├── classFoam_1_1particleCellVolume.html │ │ ├── classFoam_1_1particleCellVolume__coll__graph.dot │ │ ├── classFoam_1_1particleCellVolume__coll__graph.md5 │ │ ├── classFoam_1_1particleCellVolume__inherit__graph.dot │ │ ├── classFoam_1_1particleCellVolume__inherit__graph.md5 │ │ ├── classFoam_1_1particleProbe-members.html │ │ ├── classFoam_1_1particleProbe.html │ │ ├── classFoam_1_1particleProbe__coll__graph.dot │ │ ├── classFoam_1_1particleProbe__coll__graph.md5 │ │ ├── classFoam_1_1particleProbe__inherit__graph.dot │ │ ├── classFoam_1_1particleProbe__inherit__graph.md5 │ │ ├── classFoam_1_1probeModel-members.html │ │ ├── classFoam_1_1probeModel.html │ │ ├── classFoam_1_1probeModel_1_1fieldGroup-members.html │ │ ├── classFoam_1_1probeModel_1_1fieldGroup.html │ │ ├── classFoam_1_1probeModel_1_1fieldGroup__coll__graph.dot │ │ ├── classFoam_1_1probeModel_1_1fieldGroup__coll__graph.md5 │ │ ├── classFoam_1_1probeModel_1_1fieldGroup__inherit__graph.dot │ │ ├── classFoam_1_1probeModel_1_1fieldGroup__inherit__graph.md5 │ │ ├── classFoam_1_1probeModel__coll__graph.dot │ │ ├── classFoam_1_1probeModel__coll__graph.md5 │ │ ├── classFoam_1_1probeModel__inherit__graph.dot │ │ ├── classFoam_1_1probeModel__inherit__graph.md5 │ │ ├── classFoam_1_1readLiggghtsData-members.html │ │ ├── classFoam_1_1readLiggghtsData.html │ │ ├── classFoam_1_1readLiggghtsData__coll__graph.dot │ │ ├── classFoam_1_1readLiggghtsData__coll__graph.map │ │ ├── classFoam_1_1readLiggghtsData__coll__graph.md5 │ │ ├── classFoam_1_1readLiggghtsData__inherit__graph.dot │ │ ├── classFoam_1_1readLiggghtsData__inherit__graph.map │ │ ├── classFoam_1_1readLiggghtsData__inherit__graph.md5 │ │ ├── classFoam_1_1regionModel-members.html │ │ ├── classFoam_1_1regionModel.html │ │ ├── classFoam_1_1regionModel__coll__graph.dot │ │ ├── classFoam_1_1regionModel__coll__graph.map │ │ ├── classFoam_1_1regionModel__coll__graph.md5 │ │ ├── classFoam_1_1regionModel__inherit__graph.dot │ │ ├── classFoam_1_1regionModel__inherit__graph.map │ │ ├── classFoam_1_1regionModel__inherit__graph.md5 │ │ ├── classFoam_1_1runLiggghts-members.html │ │ ├── classFoam_1_1runLiggghts.html │ │ ├── classFoam_1_1runLiggghts__coll__graph.dot │ │ ├── classFoam_1_1runLiggghts__coll__graph.md5 │ │ ├── classFoam_1_1runLiggghts__inherit__graph.dot │ │ ├── classFoam_1_1runLiggghts__inherit__graph.md5 │ │ ├── classFoam_1_1smoothingModel-members.html │ │ ├── classFoam_1_1smoothingModel.html │ │ ├── classFoam_1_1smoothingModel__coll__graph.dot │ │ ├── classFoam_1_1smoothingModel__coll__graph.md5 │ │ ├── classFoam_1_1smoothingModel__inherit__graph.dot │ │ ├── classFoam_1_1smoothingModel__inherit__graph.md5 │ │ ├── classFoam_1_1sophIO-members.html │ │ ├── classFoam_1_1sophIO.html │ │ ├── classFoam_1_1sophIO__coll__graph.dot │ │ ├── classFoam_1_1sophIO__coll__graph.md5 │ │ ├── classFoam_1_1sophIO__inherit__graph.dot │ │ ├── classFoam_1_1sophIO__inherit__graph.md5 │ │ ├── classFoam_1_1standardClock-members.html │ │ ├── classFoam_1_1standardClock.html │ │ ├── classFoam_1_1standardClock__coll__graph.dot │ │ ├── classFoam_1_1standardClock__coll__graph.md5 │ │ ├── classFoam_1_1standardClock__inherit__graph.dot │ │ ├── classFoam_1_1standardClock__inherit__graph.md5 │ │ ├── classFoam_1_1standardSearch-members.html │ │ ├── classFoam_1_1standardSearch.html │ │ ├── classFoam_1_1standardSearch__coll__graph.dot │ │ ├── classFoam_1_1standardSearch__coll__graph.map │ │ ├── classFoam_1_1standardSearch__coll__graph.md5 │ │ ├── classFoam_1_1standardSearch__inherit__graph.dot │ │ ├── classFoam_1_1standardSearch__inherit__graph.map │ │ ├── classFoam_1_1standardSearch__inherit__graph.md5 │ │ ├── classFoam_1_1totalMomentumExchange-members.html │ │ ├── classFoam_1_1totalMomentumExchange.html │ │ ├── classFoam_1_1totalMomentumExchange__coll__graph.map │ │ ├── classFoam_1_1totalMomentumExchange__coll__graph.md5 │ │ ├── classFoam_1_1totalMomentumExchange__inherit__graph.map │ │ ├── classFoam_1_1totalMomentumExchange__inherit__graph.md5 │ │ ├── classFoam_1_1trackIO-members.html │ │ ├── classFoam_1_1trackIO.html │ │ ├── classFoam_1_1trackIO__coll__graph.dot │ │ ├── classFoam_1_1trackIO__coll__graph.md5 │ │ ├── classFoam_1_1trackIO__inherit__graph.dot │ │ ├── classFoam_1_1trackIO__inherit__graph.md5 │ │ ├── classFoam_1_1turboEngineSearch-members.html │ │ ├── classFoam_1_1turboEngineSearch.html │ │ ├── classFoam_1_1turboEngineSearch__coll__graph.map │ │ ├── classFoam_1_1turboEngineSearch__coll__graph.md5 │ │ ├── classFoam_1_1turboEngineSearch__inherit__graph.map │ │ ├── classFoam_1_1turboEngineSearch__inherit__graph.md5 │ │ ├── classFoam_1_1twoWayFiles-members.html │ │ ├── classFoam_1_1twoWayFiles.html │ │ ├── classFoam_1_1twoWayFiles__coll__graph.dot │ │ ├── classFoam_1_1twoWayFiles__coll__graph.map │ │ ├── classFoam_1_1twoWayFiles__coll__graph.md5 │ │ ├── classFoam_1_1twoWayFiles__inherit__graph.dot │ │ ├── classFoam_1_1twoWayFiles__inherit__graph.map │ │ ├── classFoam_1_1twoWayFiles__inherit__graph.md5 │ │ ├── classFoam_1_1twoWayMPI-members.html │ │ ├── classFoam_1_1twoWayMPI.html │ │ ├── classFoam_1_1twoWayMPI__coll__graph.dot │ │ ├── classFoam_1_1twoWayMPI__coll__graph.map │ │ ├── classFoam_1_1twoWayMPI__coll__graph.md5 │ │ ├── classFoam_1_1twoWayMPI__inherit__graph.dot │ │ ├── classFoam_1_1twoWayMPI__inherit__graph.map │ │ ├── classFoam_1_1twoWayMPI__inherit__graph.md5 │ │ ├── classFoam_1_1virtualMassForce-members.html │ │ ├── classFoam_1_1virtualMassForce.html │ │ ├── classFoam_1_1virtualMassForce__coll__graph.dot │ │ ├── classFoam_1_1virtualMassForce__coll__graph.map │ │ ├── classFoam_1_1virtualMassForce__coll__graph.md5 │ │ ├── classFoam_1_1virtualMassForce__inherit__graph.dot │ │ ├── classFoam_1_1virtualMassForce__inherit__graph.map │ │ ├── classFoam_1_1virtualMassForce__inherit__graph.md5 │ │ ├── classFoam_1_1viscForce-members.html │ │ ├── classFoam_1_1viscForce.html │ │ ├── classFoam_1_1viscForce__coll__graph.dot │ │ ├── classFoam_1_1viscForce__coll__graph.map │ │ ├── classFoam_1_1viscForce__coll__graph.md5 │ │ ├── classFoam_1_1viscForce__inherit__graph.dot │ │ ├── classFoam_1_1viscForce__inherit__graph.map │ │ ├── classFoam_1_1viscForce__inherit__graph.md5 │ │ ├── classFoam_1_1voidFractionModel-members.html │ │ ├── classFoam_1_1voidFractionModel.html │ │ ├── classFoam_1_1voidFractionModelMS-members.html │ │ ├── classFoam_1_1voidFractionModelMS.html │ │ ├── classFoam_1_1voidFractionModelMS__coll__graph.map │ │ ├── classFoam_1_1voidFractionModelMS__coll__graph.md5 │ │ ├── classFoam_1_1voidFractionModelMS__inherit__graph.map │ │ ├── classFoam_1_1voidFractionModelMS__inherit__graph.md5 │ │ ├── classFoam_1_1voidFractionModel__coll__graph.dot │ │ ├── classFoam_1_1voidFractionModel__coll__graph.map │ │ ├── classFoam_1_1voidFractionModel__coll__graph.md5 │ │ ├── classFoam_1_1voidFractionModel__inherit__graph.dot │ │ ├── classFoam_1_1voidFractionModel__inherit__graph.map │ │ ├── classFoam_1_1voidFractionModel__inherit__graph.md5 │ │ ├── classFoam_1_1volWeightedAverage-members.html │ │ ├── classFoam_1_1volWeightedAverage.html │ │ ├── classFoam_1_1volWeightedAverage__coll__graph.map │ │ ├── classFoam_1_1volWeightedAverage__coll__graph.md5 │ │ ├── classFoam_1_1volWeightedAverage__inherit__graph.map │ │ ├── classFoam_1_1volWeightedAverage__inherit__graph.md5 │ │ ├── classFoam_1_1writeLiggghts-members.html │ │ ├── classFoam_1_1writeLiggghts.html │ │ ├── classFoam_1_1writeLiggghts__coll__graph.dot │ │ ├── classFoam_1_1writeLiggghts__coll__graph.md5 │ │ ├── classFoam_1_1writeLiggghts__inherit__graph.dot │ │ ├── classFoam_1_1writeLiggghts__inherit__graph.md5 │ │ ├── classes.html │ │ ├── clockModel_8H_source.html │ │ ├── compressibleContinuityErrsPU_8H_source.html │ │ ├── constDiffSmoothing_8H_source.html │ │ ├── continuityErrorPhiPU_8H_source.html │ │ ├── dataExchangeModel_8H_source.html │ │ ├── debugInfo_8H_source.html │ │ ├── dense_8H_source.html │ │ ├── derived_2cfdemCloudIB_2cfdemCloudIB_8H_source.html │ │ ├── derived_2cfdemCloudMS_2cfdemCloudMSI_8H_source.html │ │ ├── derived_2cfdemCloudMS_2cfdemCloudMS_8H_source.html │ │ ├── dilute_8H_source.html │ │ ├── dir_00b016222c3e9e36f0eb7d4ab2780e5b.html │ │ ├── dir_00b016222c3e9e36f0eb7d4ab2780e5b_dep.dot │ │ ├── dir_00b016222c3e9e36f0eb7d4ab2780e5b_dep.md5 │ │ ├── dir_03c543e80e8cc6bf541ab801a3b5b2a5.html │ │ ├── dir_03c543e80e8cc6bf541ab801a3b5b2a5_dep.dot │ │ ├── dir_03c543e80e8cc6bf541ab801a3b5b2a5_dep.md5 │ │ ├── dir_07dee88fa00734b9f98c889d3dc9ca62.html │ │ ├── dir_07dee88fa00734b9f98c889d3dc9ca62_dep.dot │ │ ├── dir_07dee88fa00734b9f98c889d3dc9ca62_dep.md5 │ │ ├── dir_0abfdb325e722c517996fb9c43aac5bd.html │ │ ├── dir_0abfdb325e722c517996fb9c43aac5bd_dep.dot │ │ ├── dir_0abfdb325e722c517996fb9c43aac5bd_dep.md5 │ │ ├── dir_0d572a40199fd375b32c34ae9527b915.html │ │ ├── dir_0d572a40199fd375b32c34ae9527b915_dep.dot │ │ ├── dir_0d572a40199fd375b32c34ae9527b915_dep.md5 │ │ ├── dir_0ed54c5c5497c7740cd95de39e5c510b.html │ │ ├── dir_0ed54c5c5497c7740cd95de39e5c510b_dep.dot │ │ ├── dir_0ed54c5c5497c7740cd95de39e5c510b_dep.md5 │ │ ├── dir_144eb068d30763f1cfc5ee8e053c5483.html │ │ ├── dir_144eb068d30763f1cfc5ee8e053c5483_dep.dot │ │ ├── dir_144eb068d30763f1cfc5ee8e053c5483_dep.md5 │ │ ├── dir_1583f51d63ea7ada92cd1c6be4a851d2.html │ │ ├── dir_1583f51d63ea7ada92cd1c6be4a851d2_dep.dot │ │ ├── dir_1583f51d63ea7ada92cd1c6be4a851d2_dep.md5 │ │ ├── dir_169a1a729970a0305a83dbbc177052f7.html │ │ ├── dir_169a1a729970a0305a83dbbc177052f7_dep.dot │ │ ├── dir_169a1a729970a0305a83dbbc177052f7_dep.md5 │ │ ├── dir_175a49326ecadeeed6a46ae0c46bde77.html │ │ ├── dir_175a49326ecadeeed6a46ae0c46bde77_dep.dot │ │ ├── dir_175a49326ecadeeed6a46ae0c46bde77_dep.md5 │ │ ├── dir_19829f27f762f8d6eeaba3b4af263f82.html │ │ ├── dir_19829f27f762f8d6eeaba3b4af263f82_dep.dot │ │ ├── dir_19829f27f762f8d6eeaba3b4af263f82_dep.md5 │ │ ├── dir_19d200cfbb7b2903e9546321dcedcdb6.html │ │ ├── dir_19d200cfbb7b2903e9546321dcedcdb6_dep.dot │ │ ├── dir_19d200cfbb7b2903e9546321dcedcdb6_dep.md5 │ │ ├── dir_1c372ee731879f448f41632d3c79ae0b.html │ │ ├── dir_1c372ee731879f448f41632d3c79ae0b_dep.dot │ │ ├── dir_1c372ee731879f448f41632d3c79ae0b_dep.md5 │ │ ├── dir_1d8644a9954f24276669c4e817538878.html │ │ ├── dir_1d8644a9954f24276669c4e817538878_dep.dot │ │ ├── dir_1d8644a9954f24276669c4e817538878_dep.md5 │ │ ├── dir_1dfa0bd845c9ce5429e1e788a752f15e.html │ │ ├── dir_1dfa0bd845c9ce5429e1e788a752f15e_dep.dot │ │ ├── dir_1dfa0bd845c9ce5429e1e788a752f15e_dep.md5 │ │ ├── dir_1ee262ef771f9341030ca830df80787c.html │ │ ├── dir_1ee262ef771f9341030ca830df80787c_dep.dot │ │ ├── dir_1ee262ef771f9341030ca830df80787c_dep.md5 │ │ ├── dir_2436c5e6fb7da85fbcc06dd5eb2ce0e4.html │ │ ├── dir_2436c5e6fb7da85fbcc06dd5eb2ce0e4_dep.dot │ │ ├── dir_2436c5e6fb7da85fbcc06dd5eb2ce0e4_dep.md5 │ │ ├── dir_25b786b440f97b4828271f732d5ccebf.html │ │ ├── dir_25b786b440f97b4828271f732d5ccebf_dep.dot │ │ ├── dir_25b786b440f97b4828271f732d5ccebf_dep.md5 │ │ ├── dir_265914e1b7619d4c30a4a9c35af3ebb5.html │ │ ├── dir_265914e1b7619d4c30a4a9c35af3ebb5_dep.dot │ │ ├── dir_265914e1b7619d4c30a4a9c35af3ebb5_dep.md5 │ │ ├── dir_2ae4b28d8d382ad026658c31872b6601.html │ │ ├── dir_2ae4b28d8d382ad026658c31872b6601_dep.dot │ │ ├── dir_2ae4b28d8d382ad026658c31872b6601_dep.md5 │ │ ├── dir_2c6adc59ff253b35a326d3c4202c95fe.html │ │ ├── dir_2c6adc59ff253b35a326d3c4202c95fe_dep.dot │ │ ├── dir_2c6adc59ff253b35a326d3c4202c95fe_dep.md5 │ │ ├── dir_2e5963989e371c5dc93941575dc2971c.html │ │ ├── dir_2e5963989e371c5dc93941575dc2971c_dep.dot │ │ ├── dir_2e5963989e371c5dc93941575dc2971c_dep.md5 │ │ ├── dir_2fa6c2ff8910515b1ac33b7a5b58d088.html │ │ ├── dir_2fa6c2ff8910515b1ac33b7a5b58d088_dep.dot │ │ ├── dir_2fa6c2ff8910515b1ac33b7a5b58d088_dep.md5 │ │ ├── dir_302df9359dc774834a1d2946e7a18406.html │ │ ├── dir_302df9359dc774834a1d2946e7a18406_dep.dot │ │ ├── dir_302df9359dc774834a1d2946e7a18406_dep.md5 │ │ ├── dir_3cc8247d1b204baca91f4bdabb506c67.html │ │ ├── dir_3cc8247d1b204baca91f4bdabb506c67_dep.dot │ │ ├── dir_3cc8247d1b204baca91f4bdabb506c67_dep.md5 │ │ ├── dir_3cd8941dcc84ec1d62ad8ac23c320b6e.html │ │ ├── dir_3cd8941dcc84ec1d62ad8ac23c320b6e_dep.dot │ │ ├── dir_3cd8941dcc84ec1d62ad8ac23c320b6e_dep.md5 │ │ ├── dir_3d47c5c95cb900187c6396fee975ce9b.html │ │ ├── dir_3d47c5c95cb900187c6396fee975ce9b_dep.dot │ │ ├── dir_3d47c5c95cb900187c6396fee975ce9b_dep.md5 │ │ ├── dir_402a710074da1ff85408b8c9d15df30f.html │ │ ├── dir_402a710074da1ff85408b8c9d15df30f_dep.dot │ │ ├── dir_402a710074da1ff85408b8c9d15df30f_dep.md5 │ │ ├── dir_4d5e837b641a6664da3dc63688078c03.html │ │ ├── dir_4d5e837b641a6664da3dc63688078c03_dep.dot │ │ ├── dir_4d5e837b641a6664da3dc63688078c03_dep.md5 │ │ ├── dir_4fbf97bbfdfd3d303fb68dbfdf9eca50.html │ │ ├── dir_4fbf97bbfdfd3d303fb68dbfdf9eca50_dep.dot │ │ ├── dir_4fbf97bbfdfd3d303fb68dbfdf9eca50_dep.md5 │ │ ├── dir_502bbe808320cb8ad52aea069060796a.html │ │ ├── dir_502bbe808320cb8ad52aea069060796a_dep.dot │ │ ├── dir_502bbe808320cb8ad52aea069060796a_dep.md5 │ │ ├── dir_505591b8f31c57833f7d48e58426eb51.html │ │ ├── dir_505591b8f31c57833f7d48e58426eb51_dep.dot │ │ ├── dir_505591b8f31c57833f7d48e58426eb51_dep.md5 │ │ ├── dir_55cff098177e68e543c03f448778fee9.html │ │ ├── dir_55cff098177e68e543c03f448778fee9_dep.dot │ │ ├── dir_55cff098177e68e543c03f448778fee9_dep.md5 │ │ ├── dir_579b890be5863a76c3b20ca2ee85f653.html │ │ ├── dir_579b890be5863a76c3b20ca2ee85f653_dep.dot │ │ ├── dir_579b890be5863a76c3b20ca2ee85f653_dep.md5 │ │ ├── dir_59b1b622e09f8153b87d9b72d2ecb92e.html │ │ ├── dir_59b1b622e09f8153b87d9b72d2ecb92e_dep.dot │ │ ├── dir_59b1b622e09f8153b87d9b72d2ecb92e_dep.md5 │ │ ├── dir_5b8b7a8a9e6b990b079bffe361fb6e31.html │ │ ├── dir_5b8b7a8a9e6b990b079bffe361fb6e31_dep.dot │ │ ├── dir_5b8b7a8a9e6b990b079bffe361fb6e31_dep.md5 │ │ ├── dir_5cb6cff45a64cd3340f575e3bc0f91b1.html │ │ ├── dir_5cb6cff45a64cd3340f575e3bc0f91b1_dep.dot │ │ ├── dir_5cb6cff45a64cd3340f575e3bc0f91b1_dep.md5 │ │ ├── dir_5d1710a5bf2fe33bba0f68e046098a7e.html │ │ ├── dir_5d1710a5bf2fe33bba0f68e046098a7e_dep.dot │ │ ├── dir_5d1710a5bf2fe33bba0f68e046098a7e_dep.md5 │ │ ├── dir_6088fb60336f5ae13c9242ffda1677a9.html │ │ ├── dir_6088fb60336f5ae13c9242ffda1677a9_dep.dot │ │ ├── dir_6088fb60336f5ae13c9242ffda1677a9_dep.md5 │ │ ├── dir_632ef886e0317a327e71200c4f5bfcf8.html │ │ ├── dir_632ef886e0317a327e71200c4f5bfcf8_dep.dot │ │ ├── dir_632ef886e0317a327e71200c4f5bfcf8_dep.md5 │ │ ├── dir_634cae5d534217a0b66ec080384aff37.html │ │ ├── dir_634cae5d534217a0b66ec080384aff37_dep.dot │ │ ├── dir_634cae5d534217a0b66ec080384aff37_dep.md5 │ │ ├── dir_65b34c68b7766a18c66b794c4cdee1fc.html │ │ ├── dir_65b34c68b7766a18c66b794c4cdee1fc_dep.dot │ │ ├── dir_65b34c68b7766a18c66b794c4cdee1fc_dep.md5 │ │ ├── dir_660f4b932c0dc7c0ceeebec985b0f19d.html │ │ ├── dir_660f4b932c0dc7c0ceeebec985b0f19d_dep.dot │ │ ├── dir_660f4b932c0dc7c0ceeebec985b0f19d_dep.md5 │ │ ├── dir_66c0784b599c9f3ea19257f7b24e67ba.html │ │ ├── dir_66c0784b599c9f3ea19257f7b24e67ba_dep.dot │ │ ├── dir_66c0784b599c9f3ea19257f7b24e67ba_dep.md5 │ │ ├── dir_67393766e00d4560a4f198b3365289e3.html │ │ ├── dir_67393766e00d4560a4f198b3365289e3_dep.dot │ │ ├── dir_67393766e00d4560a4f198b3365289e3_dep.md5 │ │ ├── dir_67632616ffa81ba07798b82d4004a5a7.html │ │ ├── dir_67632616ffa81ba07798b82d4004a5a7_dep.dot │ │ ├── dir_67632616ffa81ba07798b82d4004a5a7_dep.md5 │ │ ├── dir_7085880b7fb3d2fa9f5fa9b2af31309e.html │ │ ├── dir_7085880b7fb3d2fa9f5fa9b2af31309e_dep.dot │ │ ├── dir_7085880b7fb3d2fa9f5fa9b2af31309e_dep.md5 │ │ ├── dir_7717944b52cfb0b7eaca336a958b97a5.html │ │ ├── dir_7717944b52cfb0b7eaca336a958b97a5_dep.dot │ │ ├── dir_7717944b52cfb0b7eaca336a958b97a5_dep.md5 │ │ ├── dir_79e77983c480bc47046e917e9bb22b61.html │ │ ├── dir_79e77983c480bc47046e917e9bb22b61_dep.dot │ │ ├── dir_79e77983c480bc47046e917e9bb22b61_dep.md5 │ │ ├── dir_80e392e4ed447867c8937026af1eb37a.html │ │ ├── dir_80e392e4ed447867c8937026af1eb37a_dep.dot │ │ ├── dir_80e392e4ed447867c8937026af1eb37a_dep.md5 │ │ ├── dir_83a98833010eccec5fff883e92969e6a.html │ │ ├── dir_83a98833010eccec5fff883e92969e6a_dep.dot │ │ ├── dir_83a98833010eccec5fff883e92969e6a_dep.md5 │ │ ├── dir_851163e49e301dc0e87a1e650ec7f4be.html │ │ ├── dir_851163e49e301dc0e87a1e650ec7f4be_dep.dot │ │ ├── dir_851163e49e301dc0e87a1e650ec7f4be_dep.md5 │ │ ├── dir_8a5d2524df77ee33768751e07fa890d8.html │ │ ├── dir_8a5d2524df77ee33768751e07fa890d8_dep.dot │ │ ├── dir_8a5d2524df77ee33768751e07fa890d8_dep.md5 │ │ ├── dir_8cdd67186f4dabb75e87e9ce44e3e255.html │ │ ├── dir_8cdd67186f4dabb75e87e9ce44e3e255_dep.dot │ │ ├── dir_8cdd67186f4dabb75e87e9ce44e3e255_dep.md5 │ │ ├── dir_8f7652bf98b5ec280511431bd871bfe3.html │ │ ├── dir_8f7652bf98b5ec280511431bd871bfe3_dep.dot │ │ ├── dir_8f7652bf98b5ec280511431bd871bfe3_dep.md5 │ │ ├── dir_94a5a165caa740e3f30b6a48edb2cc99.html │ │ ├── dir_94a5a165caa740e3f30b6a48edb2cc99_dep.dot │ │ ├── dir_94a5a165caa740e3f30b6a48edb2cc99_dep.md5 │ │ ├── dir_96d695052d0c017223be9bb26575349b.html │ │ ├── dir_96d695052d0c017223be9bb26575349b_dep.dot │ │ ├── dir_96d695052d0c017223be9bb26575349b_dep.md5 │ │ ├── dir_9a9746f6b9fcc9a827f65f22f9668c09.html │ │ ├── dir_9a9746f6b9fcc9a827f65f22f9668c09_dep.dot │ │ ├── dir_9a9746f6b9fcc9a827f65f22f9668c09_dep.md5 │ │ ├── dir_9e2f63d76b718a4db936666723aa010d.html │ │ ├── dir_9e2f63d76b718a4db936666723aa010d_dep.dot │ │ ├── dir_9e2f63d76b718a4db936666723aa010d_dep.md5 │ │ ├── dir_a29d399edcca74eab6a49c1430eef6e7.html │ │ ├── dir_a29d399edcca74eab6a49c1430eef6e7_dep.dot │ │ ├── dir_a29d399edcca74eab6a49c1430eef6e7_dep.md5 │ │ ├── dir_a5c13f8f97c1903d2a661919553661c6.html │ │ ├── dir_a5c13f8f97c1903d2a661919553661c6_dep.dot │ │ ├── dir_a5c13f8f97c1903d2a661919553661c6_dep.md5 │ │ ├── dir_a5c5685d15dffcce249b298c0addd7ab.html │ │ ├── dir_a5c5685d15dffcce249b298c0addd7ab_dep.dot │ │ ├── dir_a5c5685d15dffcce249b298c0addd7ab_dep.md5 │ │ ├── dir_a72df5f8066dd8c81b3e2887683d0518.html │ │ ├── dir_a72df5f8066dd8c81b3e2887683d0518_dep.dot │ │ ├── dir_a72df5f8066dd8c81b3e2887683d0518_dep.md5 │ │ ├── dir_a833f7e97be55b84684d40c79906aaa2.html │ │ ├── dir_a833f7e97be55b84684d40c79906aaa2_dep.dot │ │ ├── dir_a833f7e97be55b84684d40c79906aaa2_dep.md5 │ │ ├── dir_ac747d5f811b5fe332a8a05c2bb5be3f.html │ │ ├── dir_ac747d5f811b5fe332a8a05c2bb5be3f_dep.dot │ │ ├── dir_ac747d5f811b5fe332a8a05c2bb5be3f_dep.md5 │ │ ├── dir_b297239694a2e10be46256863cb1f43c.html │ │ ├── dir_b297239694a2e10be46256863cb1f43c_dep.dot │ │ ├── dir_b297239694a2e10be46256863cb1f43c_dep.md5 │ │ ├── dir_b4405a94eb03d3869e7a57a48055cc50.html │ │ ├── dir_b4405a94eb03d3869e7a57a48055cc50_dep.dot │ │ ├── dir_b4405a94eb03d3869e7a57a48055cc50_dep.md5 │ │ ├── dir_b528e158c0bb4dd73400d7e09dc63d8d.html │ │ ├── dir_b528e158c0bb4dd73400d7e09dc63d8d_dep.dot │ │ ├── dir_b528e158c0bb4dd73400d7e09dc63d8d_dep.md5 │ │ ├── dir_b7ead4a288dd7b4c5e559a6b33a1a3e2.html │ │ ├── dir_b7ead4a288dd7b4c5e559a6b33a1a3e2_dep.dot │ │ ├── dir_b7ead4a288dd7b4c5e559a6b33a1a3e2_dep.md5 │ │ ├── dir_b9b3eebf008279dacd13a948380a3b0e.html │ │ ├── dir_b9b3eebf008279dacd13a948380a3b0e_dep.dot │ │ ├── dir_b9b3eebf008279dacd13a948380a3b0e_dep.md5 │ │ ├── dir_c2d073683ef8d96022b31436c62bad0c.html │ │ ├── dir_c2d073683ef8d96022b31436c62bad0c_dep.dot │ │ ├── dir_c2d073683ef8d96022b31436c62bad0c_dep.md5 │ │ ├── dir_c4466c8f56dc94a4b680fa61bd6ca368.html │ │ ├── dir_c4466c8f56dc94a4b680fa61bd6ca368_dep.dot │ │ ├── dir_c4466c8f56dc94a4b680fa61bd6ca368_dep.md5 │ │ ├── dir_ce5f915cc60efe4e4e1ae344a805ae25.html │ │ ├── dir_ce5f915cc60efe4e4e1ae344a805ae25_dep.dot │ │ ├── dir_ce5f915cc60efe4e4e1ae344a805ae25_dep.md5 │ │ ├── dir_d53ee78dae844792d401496c9021cae0.html │ │ ├── dir_d53ee78dae844792d401496c9021cae0_dep.dot │ │ ├── dir_d53ee78dae844792d401496c9021cae0_dep.md5 │ │ ├── dir_d91e4ace354a4ebb0f4aa6927f98e49d.html │ │ ├── dir_d91e4ace354a4ebb0f4aa6927f98e49d_dep.dot │ │ ├── dir_d91e4ace354a4ebb0f4aa6927f98e49d_dep.md5 │ │ ├── dir_dcb3aeab48fa39adb86db10c6424d70f.html │ │ ├── dir_dcb3aeab48fa39adb86db10c6424d70f_dep.dot │ │ ├── dir_dcb3aeab48fa39adb86db10c6424d70f_dep.md5 │ │ ├── dir_dd1345194253637982d6e0382acccaa6.html │ │ ├── dir_dd1345194253637982d6e0382acccaa6_dep.dot │ │ ├── dir_dd1345194253637982d6e0382acccaa6_dep.md5 │ │ ├── dir_dd693acddbf39dd04472749a8df811a0.html │ │ ├── dir_dd693acddbf39dd04472749a8df811a0_dep.dot │ │ ├── dir_dd693acddbf39dd04472749a8df811a0_dep.md5 │ │ ├── dir_dda6e3d3e40256656e3f3eb135deba25.html │ │ ├── dir_dda6e3d3e40256656e3f3eb135deba25_dep.dot │ │ ├── dir_dda6e3d3e40256656e3f3eb135deba25_dep.md5 │ │ ├── dir_deaf1478ea940733618ac341e6037e93.html │ │ ├── dir_deaf1478ea940733618ac341e6037e93_dep.dot │ │ ├── dir_deaf1478ea940733618ac341e6037e93_dep.md5 │ │ ├── dir_dfb065c64998235760d33756fa2d3d00.html │ │ ├── dir_dfb065c64998235760d33756fa2d3d00_dep.dot │ │ ├── dir_dfb065c64998235760d33756fa2d3d00_dep.md5 │ │ ├── dir_e13170dfceaee3f255c5184dc4938bf0.html │ │ ├── dir_e13170dfceaee3f255c5184dc4938bf0_dep.dot │ │ ├── dir_e13170dfceaee3f255c5184dc4938bf0_dep.md5 │ │ ├── dir_e639e38e6cfc1eb702632608ebd16d0e.html │ │ ├── dir_e639e38e6cfc1eb702632608ebd16d0e_dep.dot │ │ ├── dir_e639e38e6cfc1eb702632608ebd16d0e_dep.md5 │ │ ├── dir_ec28ef2e4687b5e37e60407d61c5479d.html │ │ ├── dir_ec28ef2e4687b5e37e60407d61c5479d_dep.dot │ │ ├── dir_ec28ef2e4687b5e37e60407d61c5479d_dep.md5 │ │ ├── dir_ed1e40efa372d8909b613dfd51d4d334.html │ │ ├── dir_ed1e40efa372d8909b613dfd51d4d334_dep.dot │ │ ├── dir_ed1e40efa372d8909b613dfd51d4d334_dep.md5 │ │ ├── dir_ee64e5e33ad85f9027a4e05553ab2bdd.html │ │ ├── dir_ee64e5e33ad85f9027a4e05553ab2bdd_dep.dot │ │ ├── dir_ee64e5e33ad85f9027a4e05553ab2bdd_dep.md5 │ │ ├── dir_f5ebe8e05b100ab91e8716760c049809.html │ │ ├── dir_f5ebe8e05b100ab91e8716760c049809_dep.dot │ │ ├── dir_f5ebe8e05b100ab91e8716760c049809_dep.md5 │ │ ├── dir_fb3cb77304c492cc352b7947834ee7c2.html │ │ ├── dir_fb3cb77304c492cc352b7947834ee7c2_dep.dot │ │ ├── dir_fb3cb77304c492cc352b7947834ee7c2_dep.md5 │ │ ├── dir_fd7cc3b05d191063c819306003d9ce7c.html │ │ ├── dir_fd7cc3b05d191063c819306003d9ce7c_dep.dot │ │ ├── dir_fd7cc3b05d191063c819306003d9ce7c_dep.md5 │ │ ├── dir_ff65ff643b4fd565180badfafd1b2d48.html │ │ ├── dir_ff65ff643b4fd565180badfafd1b2d48_dep.dot │ │ ├── dir_ff65ff643b4fd565180badfafd1b2d48_dep.md5 │ │ ├── dividedVoidFraction_8H_source.html │ │ ├── doxygen.css │ │ ├── dynsections.js │ │ ├── engineSearchIB_8H_source.html │ │ ├── engineSearch_8H_source.html │ │ ├── execute_8H_source.html │ │ ├── explicitCouple_8H_source.html │ │ ├── fieldStore_8H_source.html │ │ ├── files.html │ │ ├── forceModel_8H_source.html │ │ ├── forceSubModel_8H_source.html │ │ ├── global_8H_source.html │ │ ├── gradPForce_8H_source.html │ │ ├── graph_legend.dot │ │ ├── graph_legend.html │ │ ├── graph_legend.md5 │ │ ├── hierarchy.html │ │ ├── implicitCouple_8H_source.html │ │ ├── index.html │ │ ├── inherit__graph__0.map │ │ ├── inherit__graph__0.md5 │ │ ├── inherit__graph__1.map │ │ ├── inherit__graph__1.md5 │ │ ├── inherit__graph__10.map │ │ ├── inherit__graph__10.md5 │ │ ├── inherit__graph__2.map │ │ ├── inherit__graph__2.md5 │ │ ├── inherit__graph__3.map │ │ ├── inherit__graph__3.md5 │ │ ├── inherit__graph__4.map │ │ ├── inherit__graph__4.md5 │ │ ├── inherit__graph__5.map │ │ ├── inherit__graph__5.md5 │ │ ├── inherit__graph__6.map │ │ ├── inherit__graph__6.md5 │ │ ├── inherit__graph__7.map │ │ ├── inherit__graph__7.md5 │ │ ├── inherit__graph__8.map │ │ ├── inherit__graph__8.md5 │ │ ├── inherit__graph__9.map │ │ ├── inherit__graph__9.md5 │ │ ├── inherit_graph_0.dot │ │ ├── inherit_graph_0.md5 │ │ ├── inherit_graph_1.dot │ │ ├── inherit_graph_1.md5 │ │ ├── inherit_graph_10.dot │ │ ├── inherit_graph_10.md5 │ │ ├── inherit_graph_11.dot │ │ ├── inherit_graph_11.md5 │ │ ├── inherit_graph_12.dot │ │ ├── inherit_graph_12.md5 │ │ ├── inherit_graph_13.dot │ │ ├── inherit_graph_13.md5 │ │ ├── inherit_graph_14.dot │ │ ├── inherit_graph_14.md5 │ │ ├── inherit_graph_15.dot │ │ ├── inherit_graph_15.md5 │ │ ├── inherit_graph_16.dot │ │ ├── inherit_graph_16.md5 │ │ ├── inherit_graph_2.dot │ │ ├── inherit_graph_2.md5 │ │ ├── inherit_graph_3.dot │ │ ├── inherit_graph_3.md5 │ │ ├── inherit_graph_4.dot │ │ ├── inherit_graph_4.md5 │ │ ├── inherit_graph_5.dot │ │ ├── inherit_graph_5.md5 │ │ ├── inherit_graph_6.dot │ │ ├── inherit_graph_6.md5 │ │ ├── inherit_graph_7.dot │ │ ├── inherit_graph_7.md5 │ │ ├── inherit_graph_8.dot │ │ ├── inherit_graph_8.md5 │ │ ├── inherit_graph_9.dot │ │ ├── inherit_graph_9.md5 │ │ ├── inherits.html │ │ ├── installdox │ │ ├── interface_8H_source.html │ │ ├── jquery.js │ │ ├── liggghtsCommandModel_8H_source.html │ │ ├── lnInclude_2ArchimedesIB_8H_source.html │ │ ├── lnInclude_2Archimedes_8H_source.html │ │ ├── lnInclude_2DEMdrivenMeshMotion_8H_source.html │ │ ├── lnInclude_2DiFeliceDragMS_8H_source.html │ │ ├── lnInclude_2DiFeliceDrag_8H_source.html │ │ ├── lnInclude_2GaussVoidFraction_8H_source.html │ │ ├── lnInclude_2GidaspowDrag_8H_source.html │ │ ├── lnInclude_2IOModel_8H_source.html │ │ ├── lnInclude_2KochHillDrag2_8H_source.html │ │ ├── lnInclude_2KochHillDrag_8H_source.html │ │ ├── lnInclude_2LaEuScalarDust_8H_source.html │ │ ├── lnInclude_2LaEuScalarTemp_8H_source.html │ │ ├── lnInclude_2MeiLift_8H_source.html │ │ ├── lnInclude_2SchillerNaumannDrag_8H_source.html │ │ ├── lnInclude_2ShirgaonkarIB_8H_source.html │ │ ├── lnInclude_2TempExchange_8H_source.html │ │ ├── lnInclude_2allRegion_8H_source.html │ │ ├── lnInclude_2averagingModel_8H_source.html │ │ ├── lnInclude_2basicIO_8H_source.html │ │ ├── lnInclude_2bigParticleVoidFraction_8H_source.html │ │ ├── lnInclude_2centreVoidFraction_8H_source.html │ │ ├── lnInclude_2cfdemCloudIB_8H_source.html │ │ ├── lnInclude_2cfdemCloudI_8H_source.html │ │ ├── lnInclude_2cfdemCloudMSI_8H_source.html │ │ ├── lnInclude_2cfdemCloudMS_8H_source.html │ │ ├── lnInclude_2cfdemCloud_8H_source.html │ │ ├── lnInclude_2dataExchangeModel_8H_source.html │ │ ├── lnInclude_2dense_8H_source.html │ │ ├── lnInclude_2differentialRegion_8H_source.html │ │ ├── lnInclude_2dilute_8H_source.html │ │ ├── lnInclude_2dividedVoidFractionMS_8H_source.html │ │ ├── lnInclude_2dividedVoidFraction_8H_source.html │ │ ├── lnInclude_2engineSearchIB_8H_source.html │ │ ├── lnInclude_2engineSearchLambda_8H_source.html │ │ ├── lnInclude_2engineSearch_8H_source.html │ │ ├── lnInclude_2execute_8H_source.html │ │ ├── lnInclude_2explicitCouple_8H_source.html │ │ ├── lnInclude_2fieldTimeAverage_8H_source.html │ │ ├── lnInclude_2forceModelMS_8H_source.html │ │ ├── lnInclude_2forceModel_8H_source.html │ │ ├── lnInclude_2gradPForce_8H_source.html │ │ ├── lnInclude_2implicitCouple_8H_source.html │ │ ├── lnInclude_2interface_8H_source.html │ │ ├── lnInclude_2liggghtsCommandModel_8H_source.html │ │ ├── lnInclude_2locateModel_8H_source.html │ │ ├── lnInclude_2meshMotionModel_8H_source.html │ │ ├── lnInclude_2momCoupleModel_8H_source.html │ │ ├── lnInclude_2noCouple_8H_source.html │ │ ├── lnInclude_2noDataExchange_8H_source.html │ │ ├── lnInclude_2noDrag_8H_source.html │ │ ├── lnInclude_2noIO_8H_source.html │ │ ├── lnInclude_2noMeshMotion_8H_source.html │ │ ├── lnInclude_2oneWayVTK_8H_source.html │ │ ├── lnInclude_2readLiggghtsData_8H_source.html │ │ ├── lnInclude_2regionModel_8H_source.html │ │ ├── lnInclude_2setWeightedSource_8H_source.html │ │ ├── lnInclude_2standardSearch_8H_source.html │ │ ├── lnInclude_2totalMomentumExchange_8H_source.html │ │ ├── lnInclude_2turboEngineSearch_8H_source.html │ │ ├── lnInclude_2twoWayFiles_8H_source.html │ │ ├── lnInclude_2twoWayMPI_8H_source.html │ │ ├── lnInclude_2virtualMassForce_8H_source.html │ │ ├── lnInclude_2viscForce_8H_source.html │ │ ├── lnInclude_2voidFractionModelMS_8H_source.html │ │ ├── lnInclude_2voidFractionModel_8H_source.html │ │ ├── lnInclude_2volWeightedAverage_8H_source.html │ │ ├── locateModel_8H_source.html │ │ ├── mathExtra_8H_source.html │ │ ├── meshMotionModel_8H_source.html │ │ ├── momCoupleModel_8H_source.html │ │ ├── noClock_8H_source.html │ │ ├── noCouple_8H_source.html │ │ ├── noDataExchange_8H_source.html │ │ ├── noDrag_8H_source.html │ │ ├── noIO_8H_source.html │ │ ├── noMeshMotion_8H_source.html │ │ ├── noProbe_8H_source.html │ │ ├── noSmoothing_8H_source.html │ │ ├── oneWayVTK_8H_source.html │ │ ├── particleCellVolume_8H_source.html │ │ ├── particleProbe_8H_source.html │ │ ├── probeModel_8H_source.html │ │ ├── readLiggghtsData_8H_source.html │ │ ├── regionModel_8H_source.html │ │ ├── runLiggghts_8H_source.html │ │ ├── search │ │ ├── all_0.html │ │ ├── all_0.js │ │ ├── all_1.html │ │ ├── all_1.js │ │ ├── all_10.html │ │ ├── all_10.js │ │ ├── all_11.html │ │ ├── all_11.js │ │ ├── all_12.html │ │ ├── all_12.js │ │ ├── all_2.html │ │ ├── all_2.js │ │ ├── all_3.html │ │ ├── all_3.js │ │ ├── all_4.html │ │ ├── all_4.js │ │ ├── all_5.html │ │ ├── all_5.js │ │ ├── all_6.html │ │ ├── all_6.js │ │ ├── all_61.html │ │ ├── all_62.html │ │ ├── all_63.html │ │ ├── all_64.html │ │ ├── all_65.html │ │ ├── all_66.html │ │ ├── all_67.html │ │ ├── all_69.html │ │ ├── all_6b.html │ │ ├── all_6c.html │ │ ├── all_6d.html │ │ ├── all_6e.html │ │ ├── all_6f.html │ │ ├── all_7.html │ │ ├── all_7.js │ │ ├── all_72.html │ │ ├── all_73.html │ │ ├── all_74.html │ │ ├── all_76.html │ │ ├── all_8.html │ │ ├── all_8.js │ │ ├── all_9.html │ │ ├── all_9.js │ │ ├── all_a.html │ │ ├── all_a.js │ │ ├── all_b.html │ │ ├── all_b.js │ │ ├── all_c.html │ │ ├── all_c.js │ │ ├── all_d.html │ │ ├── all_d.js │ │ ├── all_e.html │ │ ├── all_e.js │ │ ├── all_f.html │ │ ├── all_f.js │ │ ├── classes_0.html │ │ ├── classes_0.js │ │ ├── classes_1.html │ │ ├── classes_1.js │ │ ├── classes_10.html │ │ ├── classes_10.js │ │ ├── classes_11.html │ │ ├── classes_11.js │ │ ├── classes_12.html │ │ ├── classes_12.js │ │ ├── classes_2.html │ │ ├── classes_2.js │ │ ├── classes_3.html │ │ ├── classes_3.js │ │ ├── classes_4.html │ │ ├── classes_4.js │ │ ├── classes_5.html │ │ ├── classes_5.js │ │ ├── classes_6.html │ │ ├── classes_6.js │ │ ├── classes_61.html │ │ ├── classes_62.html │ │ ├── classes_63.html │ │ ├── classes_64.html │ │ ├── classes_65.html │ │ ├── classes_66.html │ │ ├── classes_67.html │ │ ├── classes_69.html │ │ ├── classes_6b.html │ │ ├── classes_6c.html │ │ ├── classes_6d.html │ │ ├── classes_6e.html │ │ ├── classes_6f.html │ │ ├── classes_7.html │ │ ├── classes_7.js │ │ ├── classes_72.html │ │ ├── classes_73.html │ │ ├── classes_74.html │ │ ├── classes_76.html │ │ ├── classes_8.html │ │ ├── classes_8.js │ │ ├── classes_9.html │ │ ├── classes_9.js │ │ ├── classes_a.html │ │ ├── classes_a.js │ │ ├── classes_b.html │ │ ├── classes_b.js │ │ ├── classes_c.html │ │ ├── classes_c.js │ │ ├── classes_d.html │ │ ├── classes_d.js │ │ ├── classes_e.html │ │ ├── classes_e.js │ │ ├── classes_f.html │ │ ├── classes_f.js │ │ ├── nomatches.html │ │ ├── search.css │ │ └── search.js │ │ ├── setWeightedSource_8H_source.html │ │ ├── setupProbeModel_8H_source.html │ │ ├── setupProbeModelfields_8H_source.html │ │ ├── smoothingModel_8H_source.html │ │ ├── solverDebugInfo_8H_source.html │ │ ├── sophIO_8H_source.html │ │ ├── standardClock_8H_source.html │ │ ├── standardSearch_8H_source.html │ │ ├── subModels_2IOModel_2IOModel_2IOModel_8H_source.html │ │ ├── subModels_2IOModel_2basicIO_2basicIO_8H_source.html │ │ ├── subModels_2IOModel_2noIO_2noIO_8H_source.html │ │ ├── subModels_2averagingModel_2averagingModel_2averagingModel_8H_source.html │ │ ├── subModels_2averagingModel_2dense_2dense_8H_source.html │ │ ├── subModels_2averagingModel_2dilute_2dilute_8H_source.html │ │ ├── subModels_2dataExchangeModel_2dataExchangeModel_2dataExchangeModel_8H_source.html │ │ ├── subModels_2dataExchangeModel_2noDataExchange_2noDataExchange_8H_source.html │ │ ├── subModels_2dataExchangeModel_2oneWayVTK_2oneWayVTK_8H_source.html │ │ ├── subModels_2dataExchangeModel_2twoWayFiles_2twoWayFiles_8H_source.html │ │ ├── subModels_2dataExchangeModel_2twoWayMPI_2twoWayMPI_8H_source.html │ │ ├── subModels_2dataExchangeModel_2twoWayMPI__alt_2twoWayMPI_8H_source.html │ │ ├── subModels_2forceModelMS_2DiFeliceDragMS_2DiFeliceDragMS_8H_source.html │ │ ├── subModels_2forceModelMS_2forceModelMS_2forceModelMS_8H_source.html │ │ ├── subModels_2forceModel_2ArchimedesIB_2ArchimedesIB_8H_source.html │ │ ├── subModels_2forceModel_2Archimedes_2Archimedes_8H_source.html │ │ ├── subModels_2forceModel_2DiFeliceDrag_2DiFeliceDrag_8H_source.html │ │ ├── subModels_2forceModel_2GidaspowDrag_2GidaspowDrag_8H_source.html │ │ ├── subModels_2forceModel_2KochHillDrag2_2KochHillDrag2_8H_source.html │ │ ├── subModels_2forceModel_2KochHillDrag_2KochHillDrag_8H_source.html │ │ ├── subModels_2forceModel_2KochHillDrag__dev_2KochHillDrag_8H_source.html │ │ ├── subModels_2forceModel_2LaEuScalarDust_2LaEuScalarDust_8H_source.html │ │ ├── subModels_2forceModel_2LaEuScalarTemp_2LaEuScalarTemp_8H_source.html │ │ ├── subModels_2forceModel_2MeiLift_2MeiLift_8H_source.html │ │ ├── subModels_2forceModel_2SchillerNaumannDrag_2SchillerNaumannDrag_8H_source.html │ │ ├── subModels_2forceModel_2ShirgaonkarIB_2ShirgaonkarIB_8H_source.html │ │ ├── subModels_2forceModel_2TempExchange_2TempExchange_8H_source.html │ │ ├── subModels_2forceModel_2fieldTimeAverage_2fieldTimeAverage_8H_source.html │ │ ├── subModels_2forceModel_2forceModel_2forceModel_8H_source.html │ │ ├── subModels_2forceModel_2gradPForce_2gradPForce_8H_source.html │ │ ├── subModels_2forceModel_2interface_2interface_8H_source.html │ │ ├── subModels_2forceModel_2noDrag_2noDrag_8H_source.html │ │ ├── subModels_2forceModel_2totalMomentumExchange_2totalMomentumExchange_8H_source.html │ │ ├── subModels_2forceModel_2virtualMassForce_2virtualMassForce_8H_source.html │ │ ├── subModels_2forceModel_2viscForce_2viscForce_8H_source.html │ │ ├── subModels_2forceModel_2volWeightedAverage_2volWeightedAverage_8H_source.html │ │ ├── subModels_2liggghtsCommandModel_2execute_2execute_8H_source.html │ │ ├── subModels_2liggghtsCommandModel_2liggghtsCommandModel_2liggghtsCommandModel_8H_source.html │ │ ├── subModels_2liggghtsCommandModel_2readLiggghtsData_2readLiggghtsData_8H_source.html │ │ ├── subModels_2locateModel_2engineSearchIB_2engineSearchIB_8H_source.html │ │ ├── subModels_2locateModel_2engineSearchLambda_2engineSearchLambda_8H_source.html │ │ ├── subModels_2locateModel_2engineSearch_2engineSearch_8H_source.html │ │ ├── subModels_2locateModel_2locateModel_2locateModel_8H_source.html │ │ ├── subModels_2locateModel_2standardSearch_2standardSearch_8H_source.html │ │ ├── subModels_2locateModel_2turboEngineSearch_2turboEngineSearch_8H_source.html │ │ ├── subModels_2meshMotionModel_2DEMdrivenMeshMotion_2DEMdrivenMeshMotion_8H_source.html │ │ ├── subModels_2meshMotionModel_2meshMotionModel_2meshMotionModel_8H_source.html │ │ ├── subModels_2meshMotionModel_2noMeshMotion_2noMeshMotion_8H_source.html │ │ ├── subModels_2momCoupleModel_2explicitCouple_2explicitCouple_8H_source.html │ │ ├── subModels_2momCoupleModel_2implicitCouple_2implicitCouple_8H_source.html │ │ ├── subModels_2momCoupleModel_2momCoupleModel_2momCoupleModel_8H_source.html │ │ ├── subModels_2momCoupleModel_2noCouple_2noCouple_8H_source.html │ │ ├── subModels_2regionModel_2allRegion_2allRegion_8H_source.html │ │ ├── subModels_2regionModel_2differentialRegion_2differentialRegion_8H_source.html │ │ ├── subModels_2regionModel_2regionModel_2regionModel_8H_source.html │ │ ├── subModels_2voidFractionModelMS__zukunft_2voidFractionModelMS_2voidFractionModelMS_8H_source.html │ │ ├── subModels_2voidFractionModel_2GaussVoidFraction_2GaussVoidFraction_8H_source.html │ │ ├── subModels_2voidFractionModel_2bigParticleVoidFraction_2bigParticleVoidFraction_8H_source.html │ │ ├── subModels_2voidFractionModel_2centreVoidFraction_2centreVoidFraction_8H_source.html │ │ ├── subModels_2voidFractionModel_2dividedVoidFractionMS_2dividedVoidFractionMS_8H_source.html │ │ ├── subModels_2voidFractionModel_2dividedVoidFractionMS_2setWeightedSource_8H_source.html │ │ ├── subModels_2voidFractionModel_2dividedVoidFraction_2dividedVoidFraction_8H_source.html │ │ ├── subModels_2voidFractionModel_2dividedVoidFraction_2setWeightedSource_8H_source.html │ │ ├── subModels_2voidFractionModel_2voidFractionModel_2voidFractionModel_8H_source.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ ├── trackIO_8H_source.html │ │ ├── twoWayFiles_8H_source.html │ │ ├── twoWayMPI_8H_source.html │ │ ├── versionInfo_8H_source.html │ │ ├── virtualMassForce_8H_source.html │ │ ├── viscForce_8H_source.html │ │ ├── voidFractionModel_8H_source.html │ │ └── writeLiggghts_8H_source.html └── release-notes-PUBLIC-3.8.0.txt ├── src ├── .gitignore ├── eulerian │ ├── fvOptionsCFDEM │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── sources │ │ │ └── derived │ │ │ └── meanSupVelocityForce │ │ │ ├── meanSupVelocityForce.C │ │ │ └── meanSupVelocityForce.H │ └── scalarTransportModelsCFDEM │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── eulerianScalarField │ │ ├── eulerianScalarField.C │ │ ├── eulerianScalarField.H │ │ └── newEulerianScalarField.C │ │ ├── generalManual │ │ ├── generalManual.C │ │ └── generalManual.H │ │ ├── generalPhaseChange │ │ ├── generalPhaseChange.C │ │ └── generalPhaseChange.H │ │ ├── noTransport │ │ ├── noTransport.C │ │ └── noTransport.H │ │ ├── phaseChangeModel │ │ ├── newPhaseChangeModel.C │ │ ├── phaseChangeModel.C │ │ └── phaseChangeModel.H │ │ ├── scalarTransportModel │ │ ├── newScalarTransportModel.C │ │ ├── scalarTransportModel.C │ │ └── scalarTransportModel.H │ │ └── temperatureModel │ │ ├── temperatureModel.C │ │ └── temperatureModel.H ├── lagrangian │ ├── cfdemParticle │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── cfdTools │ │ │ ├── IOtools │ │ │ │ └── json │ │ │ │ │ ├── json.C │ │ │ │ │ └── json.H │ │ │ ├── checkImCoupleM.H │ │ │ ├── checkImExCoupleM.H │ │ │ ├── checkModelType.H │ │ │ ├── compressibleContinuityErrsPU.H │ │ │ ├── continuityErrorPhiPU.H │ │ │ ├── continuityErrorPhiVoidfraction.H │ │ │ ├── debugInfo.H │ │ │ ├── fixedFluxPressureHandling.H │ │ │ ├── forceCheckEx.H │ │ │ ├── forceCheckIm.H │ │ │ ├── forceCheckImEx.H │ │ │ ├── global.C │ │ │ ├── global.H │ │ │ ├── mathExtra.H │ │ │ ├── newGlobal.C │ │ │ ├── readPISOControls_OF30.H │ │ │ ├── resetInterpolators │ │ │ │ ├── resetAlphaInterpolator.H │ │ │ │ ├── resetDDtUInterpolator.H │ │ │ │ ├── resetDSauterInterpolator.H │ │ │ │ ├── resetDivTauInterpolator.H │ │ │ │ ├── resetFluidScalarFieldInterpolator.H │ │ │ │ ├── resetGInterpolator.H │ │ │ │ ├── resetGradAlphaInterpolator.H │ │ │ │ ├── resetGradPInterpolator.H │ │ │ │ ├── resetGradPsolidInterpolator.H │ │ │ │ ├── resetGradUInterpolator.H │ │ │ │ ├── resetGradVoidfractionInterpolator.H │ │ │ │ ├── resetPhiP1Interpolator.H │ │ │ │ ├── resetPhiP2Interpolator.H │ │ │ │ ├── resetShearRateInterpolator.H │ │ │ │ ├── resetTInterpolator.H │ │ │ │ ├── resetUInterpolator.H │ │ │ │ ├── resetUp1Interpolator.H │ │ │ │ ├── resetUp2Interpolator.H │ │ │ │ ├── resetUsInterpolator.H │ │ │ │ ├── resetVoidfractionInterpolator.H │ │ │ │ └── resetVorticityInterpolator.H │ │ │ ├── setupProbeModel.H │ │ │ ├── setupProbeModelfields.H │ │ │ ├── solverDebugInfo.H │ │ │ └── versionInfo.H │ │ ├── cfdemCloud │ │ │ ├── cfdemCloud.C │ │ │ ├── cfdemCloud.H │ │ │ ├── cfdemCloudI.H │ │ │ └── cfdemCloudIO.C │ │ ├── derived │ │ │ └── cfdemCloudIB │ │ │ │ ├── cfdemCloudIB.C │ │ │ │ └── cfdemCloudIB.H │ │ ├── etc │ │ │ ├── OFVersionChange │ │ │ │ ├── changeDictionaryDicts │ │ │ │ │ ├── changeDictionaryDict_2.4.x │ │ │ │ │ └── changeDictionaryDict_3.0.x │ │ │ │ └── shellScripts │ │ │ │ │ ├── activateVersion.sh │ │ │ │ │ ├── cfdemChangeTutOFversion.sh │ │ │ │ │ ├── commentOut.sh │ │ │ │ │ └── unComment.sh │ │ │ ├── OFversion │ │ │ │ └── OFversion.H │ │ │ ├── addLibs_universal │ │ │ │ ├── additionalLibs_2.4.x │ │ │ │ ├── additionalLibs_3.0.x │ │ │ │ ├── additionalLibs_3.2 │ │ │ │ ├── additionalLibs_4.x │ │ │ │ ├── additionalLibs_5.x │ │ │ │ ├── additionalLibs_superquadric │ │ │ │ ├── additionalLibs_v1606+ │ │ │ │ └── additionalLibs_v1612+ │ │ │ ├── bashrc │ │ │ ├── cfdemSystemTest.sh │ │ │ ├── cleanCFDEMcoupling.sh │ │ │ ├── compileCFDEMcoupling.sh │ │ │ ├── compileCFDEMcoupling_all.sh │ │ │ ├── compileCFDEMcoupling_sol.sh │ │ │ ├── compileCFDEMcoupling_src.sh │ │ │ ├── compileCFDEMcoupling_uti.sh │ │ │ ├── compileLIGGGHTS.sh │ │ │ ├── compileLIGGGHTS_dataExchLib.sh │ │ │ ├── compileLIGGGHTS_lib.sh │ │ │ ├── controlDict_cgs_2.1.x │ │ │ ├── controlDict_cgs_2.2.x │ │ │ ├── cshrc │ │ │ ├── functions.sh │ │ │ ├── library-liggghts-list.txt │ │ │ ├── library-list.txt │ │ │ ├── log │ │ │ │ └── dummy │ │ │ ├── package-liggghts-list.txt │ │ │ ├── package-undo-liggghts-list.txt │ │ │ ├── pullLIGGGHTS.sh │ │ │ ├── solver-list.txt │ │ │ ├── testTutorials.sh │ │ │ ├── tutorial-list.txt │ │ │ └── utilities-list.txt │ │ └── subModels │ │ │ ├── IOModel │ │ │ ├── IOModel │ │ │ │ ├── IOModel.C │ │ │ │ ├── IOModel.H │ │ │ │ └── newIOModel.C │ │ │ ├── basicIO │ │ │ │ ├── basicIO.C │ │ │ │ └── basicIO.H │ │ │ ├── noIO │ │ │ │ ├── noIO.C │ │ │ │ └── noIO.H │ │ │ ├── sophIO │ │ │ │ ├── sophIO.C │ │ │ │ └── sophIO.H │ │ │ └── trackIO │ │ │ │ ├── trackIO.C │ │ │ │ └── trackIO.H │ │ │ ├── averagingModel │ │ │ ├── averagingModel │ │ │ │ ├── averagingModel.C │ │ │ │ ├── averagingModel.H │ │ │ │ └── newAveragingModel.C │ │ │ ├── dense │ │ │ │ ├── dense.C │ │ │ │ └── dense.H │ │ │ └── dilute │ │ │ │ ├── dilute.C │ │ │ │ └── dilute.H │ │ │ ├── clockModel │ │ │ ├── clockModel │ │ │ │ ├── clockModel.C │ │ │ │ ├── clockModel.H │ │ │ │ └── newClockModel.C │ │ │ ├── noClock │ │ │ │ ├── noClock.C │ │ │ │ └── noClock.H │ │ │ └── standardClock │ │ │ │ ├── standardClock.C │ │ │ │ └── standardClock.H │ │ │ ├── dataExchangeModel │ │ │ ├── dataExchangeModel │ │ │ │ ├── dataExchangeModel.C │ │ │ │ ├── dataExchangeModel.H │ │ │ │ └── newDataExchangeModel.C │ │ │ ├── noDataExchange │ │ │ │ ├── noDataExchange.C │ │ │ │ └── noDataExchange.H │ │ │ ├── oneWayVTK │ │ │ │ ├── oneWayVTK.C │ │ │ │ └── oneWayVTK.H │ │ │ ├── twoWayFiles │ │ │ │ ├── twoWayFiles.C │ │ │ │ └── twoWayFiles.H │ │ │ └── twoWayMPI │ │ │ │ ├── twoWayMPI.C │ │ │ │ └── twoWayMPI.H │ │ │ ├── forceModel │ │ │ ├── Archimedes │ │ │ │ ├── Archimedes.C │ │ │ │ └── Archimedes.H │ │ │ ├── ArchimedesIB │ │ │ │ ├── ArchimedesIB.C │ │ │ │ └── ArchimedesIB.H │ │ │ ├── DiFeliceDrag │ │ │ │ ├── DiFeliceDrag.C │ │ │ │ └── DiFeliceDrag.H │ │ │ ├── GidaspowDrag │ │ │ │ ├── GidaspowDrag.C │ │ │ │ └── GidaspowDrag.H │ │ │ ├── KochHillDrag │ │ │ │ ├── KochHillDrag.C │ │ │ │ └── KochHillDrag.H │ │ │ ├── LaEuScalarTemp │ │ │ │ ├── LaEuScalarTemp.C │ │ │ │ └── LaEuScalarTemp.H │ │ │ ├── MeiLift │ │ │ │ ├── MeiLift.C │ │ │ │ └── MeiLift.H │ │ │ ├── SchillerNaumannDrag │ │ │ │ ├── SchillerNaumannDrag.C │ │ │ │ └── SchillerNaumannDrag.H │ │ │ ├── ShirgaonkarIB │ │ │ │ ├── ShirgaonkarIB.C │ │ │ │ └── ShirgaonkarIB.H │ │ │ ├── checkCouplingInterval │ │ │ │ ├── checkCouplingInterval.C │ │ │ │ └── checkCouplingInterval.H │ │ │ ├── fieldStore │ │ │ │ ├── fieldStore.C │ │ │ │ └── fieldStore.H │ │ │ ├── fieldTimeAverage │ │ │ │ ├── fieldTimeAverage.C │ │ │ │ └── fieldTimeAverage.H │ │ │ ├── forceModel │ │ │ │ ├── forceModel.C │ │ │ │ ├── forceModel.H │ │ │ │ └── newForceModel.C │ │ │ ├── forceSubModels │ │ │ │ ├── ImEx │ │ │ │ │ ├── ImEx.C │ │ │ │ │ └── ImEx.H │ │ │ │ └── forceSubModel │ │ │ │ │ ├── forceSubModel.C │ │ │ │ │ ├── forceSubModel.H │ │ │ │ │ └── newForceSubModel.C │ │ │ ├── gradPForce │ │ │ │ ├── gradPForce.C │ │ │ │ └── gradPForce.H │ │ │ ├── interface │ │ │ │ ├── interface.C │ │ │ │ └── interface.H │ │ │ ├── noDrag │ │ │ │ ├── noDrag.C │ │ │ │ └── noDrag.H │ │ │ ├── particleCellVolume │ │ │ │ ├── particleCellVolume.C │ │ │ │ └── particleCellVolume.H │ │ │ ├── particleVolume │ │ │ │ ├── particleVolume.C │ │ │ │ └── particleVolume.H │ │ │ ├── scalarGeneralExchange │ │ │ │ ├── scalarGeneralExchange.C │ │ │ │ └── scalarGeneralExchange.H │ │ │ ├── virtualMassForce │ │ │ │ ├── virtualMassForce.C │ │ │ │ └── virtualMassForce.H │ │ │ ├── viscForce │ │ │ │ ├── viscForce.C │ │ │ │ └── viscForce.H │ │ │ └── volWeightedAverage │ │ │ │ ├── volWeightedAverage.C │ │ │ │ └── volWeightedAverage.H │ │ │ ├── liggghtsCommandModel │ │ │ ├── execute │ │ │ │ ├── execute.C │ │ │ │ └── execute.H │ │ │ ├── liggghtsCommandModel │ │ │ │ ├── liggghtsCommandModel.C │ │ │ │ ├── liggghtsCommandModel.H │ │ │ │ └── newLiggghtsCommandModel.C │ │ │ ├── readLiggghtsData │ │ │ │ ├── readLiggghtsData.C │ │ │ │ └── readLiggghtsData.H │ │ │ ├── runLiggghts │ │ │ │ ├── runLiggghts.C │ │ │ │ └── runLiggghts.H │ │ │ ├── setDEMGravity │ │ │ │ ├── setDEMGravity.C │ │ │ │ └── setDEMGravity.H │ │ │ └── writeLiggghts │ │ │ │ ├── writeLiggghts.C │ │ │ │ └── writeLiggghts.H │ │ │ ├── locateModel │ │ │ ├── engineSearch │ │ │ │ ├── engineSearch.C │ │ │ │ └── engineSearch.H │ │ │ ├── engineSearchIB │ │ │ │ ├── engineSearchIB.C │ │ │ │ └── engineSearchIB.H │ │ │ ├── locateModel │ │ │ │ ├── locateModel.C │ │ │ │ ├── locateModel.H │ │ │ │ └── newLocateModel.C │ │ │ └── standardSearch │ │ │ │ ├── standardSearch.C │ │ │ │ └── standardSearch.H │ │ │ ├── meshMotionModel │ │ │ ├── meshMotionModel │ │ │ │ ├── meshMotionModel.C │ │ │ │ ├── meshMotionModel.H │ │ │ │ └── newMeshMotionModel.C │ │ │ └── noMeshMotion │ │ │ │ ├── noMeshMotion.C │ │ │ │ └── noMeshMotion.H │ │ │ ├── momCoupleModel │ │ │ ├── explicitCouple │ │ │ │ ├── explicitCouple.C │ │ │ │ └── explicitCouple.H │ │ │ ├── implicitCouple │ │ │ │ ├── implicitCouple.C │ │ │ │ └── implicitCouple.H │ │ │ ├── momCoupleModel │ │ │ │ ├── momCoupleModel.C │ │ │ │ ├── momCoupleModel.H │ │ │ │ └── newMomCoupleModel.C │ │ │ └── noCouple │ │ │ │ ├── noCouple.C │ │ │ │ └── noCouple.H │ │ │ ├── probeModel │ │ │ ├── noProbe │ │ │ │ ├── noProbe.C │ │ │ │ └── noProbe.H │ │ │ ├── particleProbe │ │ │ │ ├── particleProbe.C │ │ │ │ └── particleProbe.H │ │ │ └── probeModel │ │ │ │ ├── newProbeModel.C │ │ │ │ ├── probeModel.C │ │ │ │ └── probeModel.H │ │ │ ├── registryModel │ │ │ ├── defaultRegistry │ │ │ │ ├── defaultRegistry.C │ │ │ │ └── defaultRegistry.H │ │ │ └── registryModel │ │ │ │ ├── newRegistryModel.C │ │ │ │ ├── registryModel.C │ │ │ │ └── registryModel.H │ │ │ ├── smoothingModel │ │ │ ├── constDiffSmoothing │ │ │ │ ├── constDiffSmoothing.C │ │ │ │ └── constDiffSmoothing.H │ │ │ ├── noSmoothing │ │ │ │ ├── noSmoothing.C │ │ │ │ └── noSmoothing.H │ │ │ └── smoothingModel │ │ │ │ ├── newSmoothingModel.C │ │ │ │ ├── smoothingModel.C │ │ │ │ └── smoothingModel.H │ │ │ └── voidFractionModel │ │ │ ├── GaussVoidFraction │ │ │ ├── GaussVoidFraction.C │ │ │ └── GaussVoidFraction.H │ │ │ ├── IBVoidFraction │ │ │ ├── IBVoidFraction.C │ │ │ └── IBVoidFraction.H │ │ │ ├── bigParticleVoidFraction │ │ │ ├── bigParticleVoidFraction.C │ │ │ └── bigParticleVoidFraction.H │ │ │ ├── centreVoidFraction │ │ │ ├── centreVoidFraction.C │ │ │ └── centreVoidFraction.H │ │ │ ├── dividedVoidFraction │ │ │ ├── dividedVoidFraction.C │ │ │ ├── dividedVoidFraction.H │ │ │ └── setWeightedSource.H │ │ │ ├── noVoidFraction │ │ │ ├── noVoidFraction.C │ │ │ └── noVoidFraction.H │ │ │ ├── trilinearVoidFraction │ │ │ ├── trilinearVoidFraction.C │ │ │ └── trilinearVoidFraction.H │ │ │ └── voidFractionModel │ │ │ ├── newVoidFractionModel.C │ │ │ ├── voidFractionModel.C │ │ │ └── voidFractionModel.H │ └── cfdemParticleComp │ │ └── Make │ │ ├── files │ │ └── options └── version_CFDEMcoupling_branch.txt ├── test_mix ├── 01_octave_one_particle_sediment_in_silicon_oil │ └── postproc.m ├── cfdemSolverIB_test │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── cfdemSolverMixIB_test │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── cfdemSolverMix_test_IB │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ ├── parCFDDEMrun.sh │ ├── velocity_particle_1.txt │ └── velocity_particle_2.txt ├── cfdemSolverMix_test_piso │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── k │ │ │ ├── nuSgs │ │ │ ├── p │ │ │ ├── rho │ │ │ ├── sSmoothField │ │ │ ├── vSmoothField │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── particleTrackProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── settlingVelocity.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── cfdemSolverPiso_settlingTestMPI │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── k │ │ │ ├── nuSgs │ │ │ ├── p │ │ │ ├── rho │ │ │ ├── sSmoothField │ │ │ ├── vSmoothField │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── couplingProperties_backup │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── particleTrackProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── settlingVelocity.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── controlDict_backup │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── fixedSphere_Re250_cfdemSolverMix │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── mixShirgaonkarIBDrag_0.txt │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── oneParticlesSediment_Re280_cfdemSolverIB │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ ├── parCFDDEMrun.sh │ ├── position_particle_1.txt │ └── velocity_particle_1.txt ├── oneParticlesSediment_Re280_cfdemSolverMix │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── oneParticlesSediment_Re41_cfdemSolverIB │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ ├── parCFDDEMrun.sh │ ├── position_particle_1.txt │ └── velocity_particle_1.txt ├── oneParticlesSediment_Re41_cfdemSolverMix │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── oneParticlesSediment_silicon_oil_cfdemSolverIB │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── oneParticlesSediment_silicon_oil_cfdemSolverMix │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidfraction │ │ │ └── volumefraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── twoParticlesSediment_cfdemSolverIB │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── blockMeshDict_backup │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ ├── .gitignore │ │ │ └── restart │ │ │ └── .gitignore │ ├── parCFDDEMrun.sh │ ├── position_particle_1.txt │ ├── position_particle_2.txt │ ├── velocity_particle_1.txt │ └── velocity_particle_2.txt └── twoParticlesSediment_cfdemSolverMix │ ├── Allrun.sh │ ├── CFD │ ├── 0 │ │ ├── U │ │ ├── Us │ │ ├── p │ │ ├── phiIB │ │ ├── rho │ │ ├── voidfraction │ │ └── volumefraction │ ├── constant │ │ ├── RASProperties │ │ ├── couplingProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── liggghtsCommands │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── octave │ │ ├── backup_postproc.m │ │ ├── coord_pos.mat │ │ ├── coord_vel.mat │ │ └── postproc.m │ └── system │ │ ├── blockMeshDict │ │ ├── blockMeshDict_backup │ │ ├── controlDict │ │ ├── controlDict.foam │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── DEM │ ├── in.liggghts_run │ └── post │ │ ├── .gitignore │ │ └── restart │ │ └── .gitignore │ └── parCFDDEMrun.sh ├── tutorials ├── .gitignore ├── ParScale │ └── cfdemSolverPisoSTM │ │ └── packedBedTempParScale │ │ ├── Allrun.sh │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── TSource │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── scalarTransportProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── totalPressureDropAndNusselt.m │ │ ├── pascal │ │ │ ├── 0 │ │ │ │ ├── heat.json │ │ │ │ └── radius.json │ │ │ ├── genPascalInput.m │ │ │ ├── in.pascal │ │ │ └── settings │ │ │ │ ├── coupling_liggghts.json │ │ │ │ ├── integrator.json │ │ │ │ ├── model_heatCapacity_solid.json │ │ │ │ ├── model_heatDensity_solid.json │ │ │ │ ├── model_heatThermalConductivity_solid.json │ │ │ │ └── verbose.json │ │ ├── settings │ │ │ └── parscale.json │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── libsAndFunctionsOF3x │ │ │ ├── libsAndFunctionsOF4x │ │ │ └── libsAndFunctionsOF5x │ │ ├── DEM │ │ ├── in.liggghts_init │ │ ├── in.liggghts_run │ │ └── post │ │ │ └── restart │ │ │ └── .gitignore │ │ ├── cleanCase.sh │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh ├── cfdemPostproc │ └── fillCylinder │ │ ├── Allrun.sh │ │ ├── CFD │ │ ├── 0 │ │ │ └── dummy │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ └── DEM │ │ ├── in.liggghts_init │ │ └── post │ │ └── .gitignore ├── cfdemSolverIB │ └── twoSpheresGlowinskiMPI │ │ ├── Allrun.sh │ │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── coord_pos.mat │ │ │ ├── coord_vel.mat │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ └── .gitignore │ │ └── parCFDDEMrun.sh ├── cfdemSolverPiso │ ├── ErgunTestMPI │ │ ├── Allrun.sh │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidfraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ ├── loaddata.m │ │ │ │ └── totalPressureDrop.m │ │ │ ├── steps_0p1s │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── controlDict.foam │ │ │ │ ├── decomposeParDict │ │ │ │ ├── funkySetFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_init │ │ │ ├── in.liggghts_run │ │ │ └── post │ │ │ │ └── restart │ │ │ │ └── .gitignore │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh │ ├── ErgunTestMPI_cgs │ │ ├── Allrun.sh │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidfraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ ├── loaddata.m │ │ │ │ └── totalPressureDrop.m │ │ │ ├── steps_0p1s │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── controlDict.foam │ │ │ │ ├── decomposeParDict │ │ │ │ ├── funkySetFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_init │ │ │ ├── in.liggghts_run │ │ │ └── post │ │ │ │ └── restart │ │ │ │ └── .gitignore │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh │ ├── ErgunTestMPI_restart │ │ ├── Allrun.sh │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── epsilon │ │ │ │ ├── k │ │ │ │ ├── nut │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidfraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties_restart │ │ │ │ ├── couplingProperties_run │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands_restart │ │ │ │ ├── liggghtsCommands_run │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ ├── loaddata.m │ │ │ │ └── totalPressureDrop.m │ │ │ ├── steps_0p1s │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── controlDict.foam │ │ │ │ ├── controlDict_restart │ │ │ │ ├── controlDict_run │ │ │ │ ├── decomposeParDict │ │ │ │ ├── funkySetFieldsDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_init │ │ │ ├── in.liggghts_restart │ │ │ ├── in.liggghts_run │ │ │ └── post │ │ │ │ └── restart │ │ │ │ └── .gitignore │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh │ ├── periodicChannel │ │ ├── Allrun.sh │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidfraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── checkVolFlow.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── controlDict.foam │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvOptions │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_init │ │ │ ├── in.liggghts_resume │ │ │ └── post │ │ │ │ ├── .gitignore │ │ │ │ └── restart │ │ │ │ └── .gitignore │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh │ ├── settlingTestMPI │ │ ├── Allrun.sh │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── k │ │ │ │ ├── nuSgs │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.01 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.02 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.03 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.04 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.05 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.06 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.07 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.08 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.09 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.1 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.11 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.12 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.13 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.14 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── 0.15 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phi │ │ │ │ ├── rho │ │ │ │ ├── sSmoothField │ │ │ │ ├── uniform │ │ │ │ │ └── time │ │ │ │ ├── vSmoothField │ │ │ │ └── voidfraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── couplingProperties_backup │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── particleTrackProperties │ │ │ │ ├── polyMesh │ │ │ │ │ ├── boundary │ │ │ │ │ ├── faces │ │ │ │ │ ├── neighbour │ │ │ │ │ ├── owner │ │ │ │ │ └── points │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── settlingVelocity.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── controlDict.foam │ │ │ │ ├── controlDict_backup │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── post │ │ │ │ ├── .gitignore │ │ │ │ ├── dump.liggghts_run │ │ │ │ ├── restart │ │ │ │ ├── .gitignore │ │ │ │ └── liggghts.restartCFDEM │ │ │ │ ├── thermo.txt │ │ │ │ └── velocity.txt │ │ └── parCFDDEMrun.sh │ └── voidfractionTest │ │ ├── Allrun.sh │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── particleCellVolume.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ ├── in.liggghts_run │ │ └── post │ │ │ └── .gitignore │ │ └── parCFDDEMrun.sh ├── cfdemSolverPisoSTM │ └── packedBedTemp │ │ ├── Allrun.sh │ │ ├── CFD │ │ ├── 0 │ │ │ ├── C │ │ │ ├── CSource │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── TSource │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── scalarTransportProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── totalPressureDropAndNusselt.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ ├── in.liggghts_init │ │ ├── in.liggghts_run │ │ └── post │ │ │ └── restart │ │ │ └── .gitignore │ │ ├── cleanCase.sh │ │ ├── parCFDDEMrun.sh │ │ └── parDEMrun.sh └── cfdemSolverPisoScalar │ └── packedBedTemp │ ├── Allrun.sh │ ├── CFD │ ├── 0 │ │ ├── Ksl │ │ ├── T │ │ ├── Tsource │ │ ├── U │ │ ├── Us │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ ├── rho │ │ └── voidfraction │ ├── constant │ │ ├── RASProperties │ │ ├── couplingProperties │ │ ├── g │ │ ├── liggghtsCommands │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── octave │ │ └── totalPressureDropAndNusselt.m │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── controlDict.foam │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── DEM │ ├── in.liggghts_init │ ├── in.liggghts_run │ └── post │ │ └── restart │ │ └── .gitignore │ ├── parCFDDEMrun.sh │ └── parDEMrun.sh ├── wmake_IB ├── wmake_mix ├── wmake_mixIB ├── wmake_piso └── wmake_src /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/.gitignore -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/README.md -------------------------------------------------------------------------------- /applications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/.gitignore -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverIB/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverIB/Make/files -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverIB/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverIB/Make/options -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverIB/cfdemSolverIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverIB/cfdemSolverIB.C -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverIB/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverIB/createFields.H -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/Make/files -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/Make/options -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/cfdemCloudMix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/cfdemCloudMix.C -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/mixDense.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/mixDense.C -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/mixDense.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/mixDense.H -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/mixDilute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/mixDilute.C -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMix/mixDilute.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMix/mixDilute.H -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverMixIB/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverMixIB/Make/files -------------------------------------------------------------------------------- /applications/solvers/cfdemSolverPiso/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/solvers/cfdemSolverPiso/Make/files -------------------------------------------------------------------------------- /applications/utilities/cfdemPostproc/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/cfdemPostproc/Make/files -------------------------------------------------------------------------------- /applications/utilities/vizClock/matPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/vizClock/matPlot.py -------------------------------------------------------------------------------- /applications/utilities/vizClock/timeEvalFull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/vizClock/timeEvalFull.txt -------------------------------------------------------------------------------- /applications/utilities/writeUfluid/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/writeUfluid/Make/files -------------------------------------------------------------------------------- /applications/utilities/writeUfluid/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/writeUfluid/Make/options -------------------------------------------------------------------------------- /applications/utilities/writeUfluid/writeUfluid.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/applications/utilities/writeUfluid/writeUfluid.C -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/CFDEMcoupling_Manual.html: -------------------------------------------------------------------------------- 1 | _build/html/CFDEMcoupling_Manual.html -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/SCcontent/individual_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/SCcontent/individual_commands.txt -------------------------------------------------------------------------------- /doc/_build/doctrees/CFDEMcoupling_Manual.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/CFDEMcoupling_Manual.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/IOModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/IOModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/IOModel_basicIO.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/IOModel_basicIO.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/IOModel_noIO.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/IOModel_noIO.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/IOModel_sophIO.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/IOModel_sophIO.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/IOModel_trackIO.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/IOModel_trackIO.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/averagingModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/averagingModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/averagingModel_dense.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/averagingModel_dense.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/cfdemSolverIB.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/cfdemSolverIB.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/cfdemSolverPiso.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/cfdemSolverPiso.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/cfdemSolverPisoSTM.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/cfdemSolverPisoSTM.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/clockModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/clockModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/clockModel_noClock.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/clockModel_noClock.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/dataExchangeModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/dataExchangeModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /doc/_build/doctrees/fix_couple_cfd.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/fix_couple_cfd.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/fix_couple_cfd_force.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/fix_couple_cfd_force.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceModel_MeiLift.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceModel_MeiLift.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceModel_noDrag.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceModel_noDrag.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceModel_viscForce.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceModel_viscForce.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceSubModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceSubModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/forceSubModel_ImEx.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/forceSubModel_ImEx.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/fvOptions.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/fvOptions.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/liggghtsCommandModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/liggghtsCommandModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/locateModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/locateModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/meshMotionModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/meshMotionModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/momCoupleModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/momCoupleModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/probeModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/probeModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/probeModel_noProbe.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/probeModel_noProbe.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/scalarTransportModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/scalarTransportModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/smoothingModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/smoothingModel.doctree -------------------------------------------------------------------------------- /doc/_build/doctrees/voidFractionModel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/doctrees/voidFractionModel.doctree -------------------------------------------------------------------------------- /doc/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/.buildinfo -------------------------------------------------------------------------------- /doc/_build/html/CFDEMcoupling_Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/CFDEMcoupling_Manual.html -------------------------------------------------------------------------------- /doc/_build/html/IOModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/IOModel.html -------------------------------------------------------------------------------- /doc/_build/html/IOModel_basicIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/IOModel_basicIO.html -------------------------------------------------------------------------------- /doc/_build/html/IOModel_noIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/IOModel_noIO.html -------------------------------------------------------------------------------- /doc/_build/html/IOModel_sophIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/IOModel_sophIO.html -------------------------------------------------------------------------------- /doc/_build/html/IOModel_trackIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/IOModel_trackIO.html -------------------------------------------------------------------------------- /doc/_build/html/_downloads/yi_jing_01_chien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_downloads/yi_jing_01_chien.jpg -------------------------------------------------------------------------------- /doc/_build/html/_images/yi_jing_01_chien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_images/yi_jing_01_chien.jpg -------------------------------------------------------------------------------- /doc/_build/html/_sources/IOModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/IOModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/IOModel_basicIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/IOModel_basicIO.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/IOModel_noIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/IOModel_noIO.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/IOModel_sophIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/IOModel_sophIO.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/IOModel_trackIO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/IOModel_trackIO.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/averagingModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/averagingModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/cfdemSolverIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/cfdemSolverIB.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/cfdemSolverPiso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/cfdemSolverPiso.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/cfdemSolverPisoSTM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/cfdemSolverPisoSTM.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/clockModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/clockModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/clockModel_noClock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/clockModel_noClock.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/dataExchangeModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/dataExchangeModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/fix_couple_cfd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/fix_couple_cfd.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/forceModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/forceModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/forceModel_MeiLift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/forceModel_MeiLift.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/forceModel_noDrag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/forceModel_noDrag.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/forceSubModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/forceSubModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/forceSubModel_ImEx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/forceSubModel_ImEx.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/fvOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/fvOptions.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/locateModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/locateModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/meshMotionModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/meshMotionModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/momCoupleModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/momCoupleModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/probeModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/probeModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/probeModel_noProbe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/probeModel_noProbe.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/smoothingModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/smoothingModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_sources/voidFractionModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_sources/voidFractionModel.txt -------------------------------------------------------------------------------- /doc/_build/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/basic.css -------------------------------------------------------------------------------- /doc/_build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /doc/_build/html/_static/css/badge_only.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/css/badge_only.css.map -------------------------------------------------------------------------------- /doc/_build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/css/theme.css -------------------------------------------------------------------------------- /doc/_build/html/_static/css/theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/css/theme.css.map -------------------------------------------------------------------------------- /doc/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /doc/_build/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /doc/_build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /doc/_build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /doc/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /doc/_build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /doc/_build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/js/theme.js -------------------------------------------------------------------------------- /doc/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /doc/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /doc/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /doc/_build/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/_static/websupport.js -------------------------------------------------------------------------------- /doc/_build/html/averagingModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/averagingModel.html -------------------------------------------------------------------------------- /doc/_build/html/averagingModel_dense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/averagingModel_dense.html -------------------------------------------------------------------------------- /doc/_build/html/averagingModel_dilute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/averagingModel_dilute.html -------------------------------------------------------------------------------- /doc/_build/html/cfdemSolverIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/cfdemSolverIB.html -------------------------------------------------------------------------------- /doc/_build/html/cfdemSolverPiso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/cfdemSolverPiso.html -------------------------------------------------------------------------------- /doc/_build/html/cfdemSolverPisoSTM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/cfdemSolverPisoSTM.html -------------------------------------------------------------------------------- /doc/_build/html/cfdemSolverPisoScalar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/cfdemSolverPisoScalar.html -------------------------------------------------------------------------------- /doc/_build/html/clockModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/clockModel.html -------------------------------------------------------------------------------- /doc/_build/html/clockModel_noClock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/clockModel_noClock.html -------------------------------------------------------------------------------- /doc/_build/html/clockModel_standardClock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/clockModel_standardClock.html -------------------------------------------------------------------------------- /doc/_build/html/dataExchangeModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/dataExchangeModel.html -------------------------------------------------------------------------------- /doc/_build/html/dataExchangeModel_oneWayVTK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/dataExchangeModel_oneWayVTK.html -------------------------------------------------------------------------------- /doc/_build/html/dataExchangeModel_twoWayMPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/dataExchangeModel_twoWayMPI.html -------------------------------------------------------------------------------- /doc/_build/html/fix_couple_cfd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/fix_couple_cfd.html -------------------------------------------------------------------------------- /doc/_build/html/fix_couple_cfd_force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/fix_couple_cfd_force.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_Archimedes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_Archimedes.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_ArchimedesIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_ArchimedesIB.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_DiFeliceDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_DiFeliceDrag.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_GidaspowDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_GidaspowDrag.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_KochHillDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_KochHillDrag.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_LaEuScalarTemp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_LaEuScalarTemp.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_MeiLift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_MeiLift.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_ShirgaonkarIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_ShirgaonkarIB.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_fieldStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_fieldStore.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_fieldTimeAverage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_fieldTimeAverage.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_gradPForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_gradPForce.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_noDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_noDrag.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_particleVolume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_particleVolume.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_virtualMassForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_virtualMassForce.html -------------------------------------------------------------------------------- /doc/_build/html/forceModel_viscForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceModel_viscForce.html -------------------------------------------------------------------------------- /doc/_build/html/forceSubModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceSubModel.html -------------------------------------------------------------------------------- /doc/_build/html/forceSubModel_ImEx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/forceSubModel_ImEx.html -------------------------------------------------------------------------------- /doc/_build/html/fvOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/fvOptions.html -------------------------------------------------------------------------------- /doc/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/genindex.html -------------------------------------------------------------------------------- /doc/_build/html/liggghtsCommandModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/liggghtsCommandModel.html -------------------------------------------------------------------------------- /doc/_build/html/locateModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/locateModel.html -------------------------------------------------------------------------------- /doc/_build/html/locateModel_engineSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/locateModel_engineSearch.html -------------------------------------------------------------------------------- /doc/_build/html/locateModel_engineSearchIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/locateModel_engineSearchIB.html -------------------------------------------------------------------------------- /doc/_build/html/locateModel_standardSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/locateModel_standardSearch.html -------------------------------------------------------------------------------- /doc/_build/html/meshMotionModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/meshMotionModel.html -------------------------------------------------------------------------------- /doc/_build/html/momCoupleModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/momCoupleModel.html -------------------------------------------------------------------------------- /doc/_build/html/momCoupleModel_noCouple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/momCoupleModel_noCouple.html -------------------------------------------------------------------------------- /doc/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/objects.inv -------------------------------------------------------------------------------- /doc/_build/html/probeModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/probeModel.html -------------------------------------------------------------------------------- /doc/_build/html/probeModel_noProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/probeModel_noProbe.html -------------------------------------------------------------------------------- /doc/_build/html/probeModel_particleProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/probeModel_particleProbe.html -------------------------------------------------------------------------------- /doc/_build/html/scalarTransportModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/scalarTransportModel.html -------------------------------------------------------------------------------- /doc/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/search.html -------------------------------------------------------------------------------- /doc/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/searchindex.js -------------------------------------------------------------------------------- /doc/_build/html/smoothingModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/smoothingModel.html -------------------------------------------------------------------------------- /doc/_build/html/smoothingModel_noSmoothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/smoothingModel_noSmoothing.html -------------------------------------------------------------------------------- /doc/_build/html/voidFractionModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/_build/html/voidFractionModel.html -------------------------------------------------------------------------------- /doc/doxygen/confFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/confFile -------------------------------------------------------------------------------- /doc/doxygen/html/ArchimedesIB_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/ArchimedesIB_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/Archimedes_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/Archimedes_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/DiFeliceDrag_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/DiFeliceDrag_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/GidaspowDrag_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/GidaspowDrag_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/IBVoidFraction_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/IBVoidFraction_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/IOModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/IOModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/ImEx_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/ImEx_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/KochHillDrag_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/KochHillDrag_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/LaEuScalarTemp_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/LaEuScalarTemp_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/MeiLift_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/MeiLift_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/OFversion_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/OFversion_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/ShirgaonkarIB_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/ShirgaonkarIB_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/allRegion_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/allRegion_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/annotated.html -------------------------------------------------------------------------------- /doc/doxygen/html/averagingModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/averagingModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/basicIO_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/basicIO_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/cfdemCloudIB_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/cfdemCloudIB_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/cfdemCloudI_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/cfdemCloudI_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/cfdemCloud_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/cfdemCloud_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/checkModelType_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/checkModelType_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1Archimedes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1Archimedes.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ArchimedesIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1ArchimedesIB.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ArchimedesIB__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b3b8933177a00d921939f70acd508fa5 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ArchimedesIB__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8048d3daa8283c55af113c4767b7e9ef -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1Archimedes__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 37aac86591d8419e7b7012080c6c9661 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1Archimedes__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 9fe7655a8077e8aa605fc2a52038edfc -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5e9627955a3c3eef8d522cb2d3da9500 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DEMdrivenMeshMotion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4c8e879f4ae93b953b0aa5a110c8598c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DiFeliceDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1DiFeliceDrag.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DiFeliceDragMS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1a8f4d266d613dfbd35e807439ccf17d -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DiFeliceDragMS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | bed15f6175740a3dc110d63a0a2bd6b6 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DiFeliceDrag__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 77e3fa5fd39d3f6b478893ac8a598ec9 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1DiFeliceDrag__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3e151a2cc440261caef5b7b0e826d087 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1GaussVoidFraction__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 71149ae3323a897c08ac0432cd6aecba -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1GaussVoidFraction__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 313a70d4b84847f1142bac4e78f65024 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1GidaspowDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1GidaspowDrag.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1GidaspowDrag__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 96c37b86d35a94b05610c2d6fe710e9e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1GidaspowDrag__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 462b983b456d47573d50f485b05b68ba -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1IBVoidFraction__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b34d3935580604ad5168f12f6b329c98 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1IBVoidFraction__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f369899d460b49af7b7f04f52b4b2067 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1IOModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1IOModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1IOModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 718ca8212e77fd5c0425544107b6f60a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1IOModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7831ffb8aaf8ebcf0c0d061ff6f08431 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ImEx-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1ImEx-members.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ImEx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1ImEx.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ImEx__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5fd6f7baf971f0223f05d5febf6027a5 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ImEx__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 1f21c2c12c8f105a20f2409791f2376c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1KochHillDrag.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1KochHillDrag2.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag2__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4ec8c8f6f59dc9af54645a4b632564b4 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag2__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5256fd9b5a4e43f50035c2aee5ee495b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 58a61d7e454d44b2b0a2104d99afc85e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1KochHillDrag__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 32f840c2781b32eec84e39e0c08ba82f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1LaEuScalarDust__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 466960f09285011b2670a448a82de0f4 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1LaEuScalarDust__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 904baaa8c660a9f2fc6a4fafcd033ce7 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1LaEuScalarTemp__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3a7b504d3b810bd3c33f27b18e72aeba -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1LaEuScalarTemp__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 68a47c0d89c440939ecd66bfdf09b985 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1MeiLift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1MeiLift.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1MeiLift__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 53cd18039a47e7beb07cf53da6a66ffd -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1MeiLift__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 202a5f0557634eb9ceb81c4235956ddd -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1eb6cfd7c42a86bb5692bbc57f024739 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1SchillerNaumannDrag__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 27b25002518d9d41cfd5c238cc8ac994 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ShirgaonkarIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1ShirgaonkarIB.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1ShirgaonkarIB__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3fe3beeb9c7ae15f5634ceeb6e217b11 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1TempExchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1TempExchange.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1TempExchange__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 477c61bd85bb1a12483c0f90b4632447 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1TempExchange__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3b8df475111d465d227d5ee9d2df0134 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1allRegion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1allRegion.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1allRegion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 6994b367f148783f07e4da89bd008ac4 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1allRegion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f4006e3bf50dde614af755bf7c39ac21 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1averagingModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 431ab08aee34c5f9c980b3e0bb25a38d -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1averagingModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c79afa555120f3565d1216a65bed551c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1basicIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1basicIO.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1basicIO__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 821a8c30a7991a9d9c584d5567a3771e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1basicIO__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ffd0902f504b495300fb1d0080b6f0a7 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 89dbb9611f98637ba5c7dc9449f273f2 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1bigParticleVoidFraction__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b5f279a880f2f6be00e8e1e44af7340e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1centreVoidFraction__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 40334c732554f0aa352db21a65c10d9b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1centreVoidFraction__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a47d389c0b0f4160e56515d13789595c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1cfdemCloud.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudIB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1cfdemCloudIB.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudIB__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 37876063d174097e9d961b06d779bb84 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudIB__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 37876063d174097e9d961b06d779bb84 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudMS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1cfdemCloudMS.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudMS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2155a31af8602ead80c8fdf3ec22f2a9 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloudMS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2155a31af8602ead80c8fdf3ec22f2a9 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1cfdemCloud__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c716323b43fd9e23e3bf232d92213f84 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1checkCouplingInterval__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 69b1808d7bf6293ff390cb24f459f727 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1checkCouplingInterval__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 6a79c601e58a21a4cc0c22ea7910e752 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1clockModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1clockModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1clockModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1494d1153b1852a5d1e7bf48d947320b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1clockModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ef1b03c15791db0289665e215dedfddc -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1constDiffSmoothing__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 203b71ed7c126c83c7001245520c6d25 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1constDiffSmoothing__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e8a3ae6ce85a91951cc47968d1feb163 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dataExchangeModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5ca05581a61e80d857a70ab888c3a87f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dataExchangeModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ac8902cf98a2cea59ff4bf5f10473cde -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dense-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1dense-members.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dense.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1dense.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dense__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f67d7dfbaebed878f18fc31868ccf006 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dense__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e238df5c818593dc6bf20cdebcc7ce7b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1differentialRegion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 643faebcceb403e9f22f1abc9f5b4b9c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1differentialRegion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | abf18b081b1933800f8de13ff4956c23 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dilute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1dilute.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dilute__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 63cf9bb44455134688aa55d3acbedc0b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dilute__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | fdace3ab9e18e37af3578eb215e6272b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5874c1be4b4d5764d7d73212e8e45465 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dividedVoidFractionMS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 539991b72866aafefde98c2ef7c502b3 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dividedVoidFraction__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0e11118ada2239eae55fabdfc56a69ee -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1dividedVoidFraction__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | edca7666475045ca6854f6822a407f4b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1engineSearch.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearchIB__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5cae746bd954f81b60580e8627c108a6 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearchIB__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3b525d37fb7053867dc80e1ebbbc7888 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearchLambda__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a368c23704ba8693232d021be2374e91 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearchLambda__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e19dea90f4dc21c44cdaf46e6aca109e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearch__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ff89953edf68cf1e64b23d420e87f135 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1engineSearch__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4acefa467009e74ce51d3ae9f735f3e1 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1execute.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1execute__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 05d7cdb743a7c1d912478429d9c6757a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1execute__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | ce66ebc7e4d25a5122eaa358dad69033 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1explicitCouple__coll__graph.md5: -------------------------------------------------------------------------------- 1 | dcf2ec4de745f9e608be7713d7d3a357 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1explicitCouple__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 92e1a2fa542d2ab8e35631c724b90768 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1fieldStore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1fieldStore.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1fieldStore__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0e3296de31fdb4470888e576300e680c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1fieldStore__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 139d7b4285cc1d36227f3b4d4c832538 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1fieldTimeAverage__coll__graph.md5: -------------------------------------------------------------------------------- 1 | e02a379ef0b2fb9a6c64839bfa9040b3 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1fieldTimeAverage__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | f70d62b98a796341436f3f525120bb95 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1forceModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModelMS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1forceModelMS.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModelMS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f157d923ae7a985215df96ed52ee6690 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModelMS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5ccbdfec97430bc3ab5e95a8d631c1cb -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | aaaed4033510602319a6f42f02e11b02 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8b08703939db12a2f84343c64affabfb -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceSubModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1forceSubModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceSubModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a09be01440a779c7a251e8788f155e6f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1forceSubModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a0a723026f17ca287d087740fcf0dc99 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1global.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1global__coll__graph.md5: -------------------------------------------------------------------------------- 1 | bd3b5640fc40222af075658fa4388d38 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1gradPForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1gradPForce.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1gradPForce__coll__graph.md5: -------------------------------------------------------------------------------- 1 | f908704b4b736089ccba571e3650bdba -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1gradPForce__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7737c12431fd52f42e70ac8937e212b1 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1implicitCouple__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 79310c4b76ce38dd97af3d51fcfcd678 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1implicitCouple__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 6a11c292e31da846b3387437fd72afab -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1interface.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1interface__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 91e40bcf9e008aa246e5d7a0ad703ca2 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1interface__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5d604164881415a8f72e5a850dc2f9af -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1liggghtsCommandModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 21f7b049a102a5bef42af298f31d6ff1 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1liggghtsCommandModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 32ea841feab5712d2553b34fdea3ea27 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1locateModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1locateModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1locateModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 6e31390a47915971c5d6412d015ad514 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1locateModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c898a2c0473a281c000b8e25a9d56426 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1meshMotionModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 42c128699ecffcaaf25ba95f40b246d5 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1meshMotionModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e8a191c3d35426032306cf346a67b514 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1momCoupleModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 0e347d84c7140d2d2a3d94525f79fb4a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1momCoupleModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 3dc538f41fe23ca9cfe2c80800f17d20 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noClock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noClock.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noClock__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4d0961017ec7fea7ac5e6347aa4afe23 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noCouple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noCouple.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noCouple__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a99132cc244ed795d3a97d284d744d48 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noCouple__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | c05cb9f4704e2879bcaf2e05b86e5196 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noDataExchange__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 8cb1c644366626ceadf6901772a6cd38 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noDataExchange__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 48293f524d27a30c31b6185d9286c708 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noDrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noDrag.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noDrag__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d16a4d3243bc379b6514ab4608648780 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noDrag__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 219b798b04bcc176ec15e21278e46c9b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noIO-members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noIO-members.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noIO.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noIO__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2464db23acd2eeff8050175043698ad0 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noIO__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | cadc551caebb4d511b6541b06cba6e8b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noMeshMotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noMeshMotion.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noMeshMotion__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1aeb71410d081b55cc4793aa806920ad -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noMeshMotion__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a4e19483d0968f69ff07cbda37810fe2 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noProbe.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noProbe__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 43958ec7dd18d91b8fc1fcf094c281f5 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noProbe__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 8414ded701ec269b298e674b8c588c74 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noSmoothing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1noSmoothing.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noSmoothing__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3d46666d66906b0856f7b72d4578e36f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1noSmoothing__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4df5a32c614f4dd8a4016e39ec67775a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1oneWayVTK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1oneWayVTK.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1oneWayVTK__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 9306fcaeafe4da21137eeb063be9927e -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1oneWayVTK__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4bd425e3020179a32b6317a4862f8321 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1particleCellVolume__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 416ce021ca507c8fb609a23a57841918 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1particleCellVolume__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5c7d788ed998f5d26e59cd73643b45b6 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1particleProbe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1particleProbe.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1particleProbe__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b4cdd86b466251c3935e8705daf7ce5f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1particleProbe__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d10e27af764122ae56a30b8e0f6d1eba -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1probeModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1probeModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1probeModel_1_1fieldGroup__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 5fe1f94f3dc53ae532cef69166930db4 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1probeModel_1_1fieldGroup__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 5fe1f94f3dc53ae532cef69166930db4 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1probeModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 3931cbd4bcf8b752da3bfa11a2fa8478 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1probeModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 4d7a0a348ac35a31c2e8b0bff81cb2d6 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1readLiggghtsData__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 2a104b82b03aa5b5762b1321badf70b6 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1readLiggghtsData__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 058b390f77a40158e585a8c15e80e05a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1regionModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1regionModel.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1regionModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 4b5d3227e029d0ea7fa3168065e535be -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1regionModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e3ffb606f8b47807976604deb5ceae51 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1runLiggghts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1runLiggghts.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1runLiggghts__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a0d473f0ccd984c03f690060a758131b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1runLiggghts__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 132c22962d847ca4156fd8fe09288c07 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1smoothingModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | b18ddc0592faf0cc5df3054ccd4f01ed -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1smoothingModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2a3ca44164e91f7e0f2c406aa68d6a1b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1sophIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1sophIO.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1sophIO__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d7351d331888bf1544024b57c2c3e68a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1sophIO__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 743a6feb48d9ebc2d8c660900c2edb09 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1standardClock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1standardClock.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1standardClock__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 51a52b29ae0d00b8dea9c2a62ad6495f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1standardClock__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | d8eb68aa9d693c85a72776feb42cea05 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1standardSearch__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 666194a36df5e6d2fb1cf34e24d49a46 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1standardSearch__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | dd61572ace17810baf6b1f93bd860f0f -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1totalMomentumExchange__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a34c29b19a838e64e390049529793bd7 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1totalMomentumExchange__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 809a35df970904236ff787b9f822dfaa -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1trackIO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1trackIO.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1trackIO__coll__graph.md5: -------------------------------------------------------------------------------- 1 | d6c22b332196f60a348be80cca80aefb -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1trackIO__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b33e18ccc2cd265ad980f0b534490e5b -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1turboEngineSearch__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 978a5bb74c61f2146dda2bbcda446dac -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1turboEngineSearch__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | e8caf178892959026b683ee6b095f12c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1twoWayFiles.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayFiles__coll__graph.md5: -------------------------------------------------------------------------------- 1 | ef48558ce3c7d7698f81e0bdf06c62a0 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayFiles__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 7cc8f53fc738a69f386192d526339e3c -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayMPI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1twoWayMPI.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayMPI__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 68fa6b91a53b7560f02771667a003c35 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1twoWayMPI__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 70185f634c59a3a0b76f8c5626f94356 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1virtualMassForce__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1382795f8da883722893a2480ac645d3 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1virtualMassForce__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 108cf9e280ef59a79d1565c2a71d24ff -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1viscForce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1viscForce.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1viscForce__coll__graph.md5: -------------------------------------------------------------------------------- 1 | c4168640b59951798c9a13f8039f738d -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1viscForce__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | b3506b26b3efe1ab9e486324e9ff7608 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1voidFractionModelMS__coll__graph.md5: -------------------------------------------------------------------------------- 1 | afb9c542458844848be200cb1e01b1f5 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1voidFractionModelMS__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 2a7856f532ffe5921b22123cc1380e28 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1voidFractionModel__coll__graph.md5: -------------------------------------------------------------------------------- 1 | fd4c938c3596dd8ddd5debca42d42251 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1voidFractionModel__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | a7e5544fdf70c4022054418963b58f24 -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1volWeightedAverage__coll__graph.md5: -------------------------------------------------------------------------------- 1 | 1793e8240ec4fb1a2588876ff2ca334a -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1volWeightedAverage__inherit__graph.md5: -------------------------------------------------------------------------------- 1 | 30bfeaefd193ca1d28745e83b10a8dbc -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1writeLiggghts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classFoam_1_1writeLiggghts.html -------------------------------------------------------------------------------- /doc/doxygen/html/classFoam_1_1writeLiggghts__coll__graph.md5: -------------------------------------------------------------------------------- 1 | a8c2251f7b9ae5eb2117e1bf1ec525bb -------------------------------------------------------------------------------- /doc/doxygen/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/classes.html -------------------------------------------------------------------------------- /doc/doxygen/html/clockModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/clockModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/debugInfo_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/debugInfo_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/dense_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/dense_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/dilute_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/dilute_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/dir_00b016222c3e9e36f0eb7d4ab2780e5b_dep.md5: -------------------------------------------------------------------------------- 1 | e7a77c42c5f544d941e634c39f0f42e8 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_03c543e80e8cc6bf541ab801a3b5b2a5_dep.md5: -------------------------------------------------------------------------------- 1 | e545e0969a989a10408ebaefb470ad98 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_07dee88fa00734b9f98c889d3dc9ca62_dep.md5: -------------------------------------------------------------------------------- 1 | c8fc2ae5415365432ecf793308dc1e32 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_0abfdb325e722c517996fb9c43aac5bd_dep.md5: -------------------------------------------------------------------------------- 1 | bd043e6a814d746812673560acc44829 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_0d572a40199fd375b32c34ae9527b915_dep.md5: -------------------------------------------------------------------------------- 1 | 0668de2883da7840acc8d680b23933a8 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_0ed54c5c5497c7740cd95de39e5c510b_dep.md5: -------------------------------------------------------------------------------- 1 | 035bd84da9497f31fa55e9772294bde9 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_144eb068d30763f1cfc5ee8e053c5483_dep.md5: -------------------------------------------------------------------------------- 1 | 564a6ef7dbeaa02cd25741337b335c4e -------------------------------------------------------------------------------- /doc/doxygen/html/dir_1583f51d63ea7ada92cd1c6be4a851d2_dep.md5: -------------------------------------------------------------------------------- 1 | 8ccaa917c5c857633a4e3733dd026830 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_169a1a729970a0305a83dbbc177052f7_dep.md5: -------------------------------------------------------------------------------- 1 | 12637262ccafea7dfc8491c6e69f8c36 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_175a49326ecadeeed6a46ae0c46bde77_dep.md5: -------------------------------------------------------------------------------- 1 | 6d4964dce05cc17687ce671e26eb5008 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_19829f27f762f8d6eeaba3b4af263f82_dep.md5: -------------------------------------------------------------------------------- 1 | bab1604fcf487d910d9cd5e8c5d04458 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_19d200cfbb7b2903e9546321dcedcdb6_dep.md5: -------------------------------------------------------------------------------- 1 | 7412fd60ce42f38256c2137946c8e7f9 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_1c372ee731879f448f41632d3c79ae0b_dep.md5: -------------------------------------------------------------------------------- 1 | 48257937f64cbd9ea8fad21d5df2c442 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_1d8644a9954f24276669c4e817538878_dep.md5: -------------------------------------------------------------------------------- 1 | 51c5f3f33d3a5f40ddc2f43188c55ed7 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_1dfa0bd845c9ce5429e1e788a752f15e_dep.md5: -------------------------------------------------------------------------------- 1 | 4ff80b44c47bc48843d0941eb58806a5 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_1ee262ef771f9341030ca830df80787c_dep.md5: -------------------------------------------------------------------------------- 1 | 822235bd883ae25b5093b37885a5eb8e -------------------------------------------------------------------------------- /doc/doxygen/html/dir_2436c5e6fb7da85fbcc06dd5eb2ce0e4_dep.md5: -------------------------------------------------------------------------------- 1 | 987759556fbc9531d93dbe1cb3cb7916 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_25b786b440f97b4828271f732d5ccebf_dep.md5: -------------------------------------------------------------------------------- 1 | 64127fb0e4b6f296721aba6bba548496 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_265914e1b7619d4c30a4a9c35af3ebb5_dep.md5: -------------------------------------------------------------------------------- 1 | 9b4171addd3d7f5fc27ff43b47e7b61f -------------------------------------------------------------------------------- /doc/doxygen/html/dir_2ae4b28d8d382ad026658c31872b6601_dep.md5: -------------------------------------------------------------------------------- 1 | f736aa38ca17152ae84b543892f241de -------------------------------------------------------------------------------- /doc/doxygen/html/dir_2c6adc59ff253b35a326d3c4202c95fe_dep.md5: -------------------------------------------------------------------------------- 1 | 55581d9bc409970a170fdc673ee53ec9 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_2e5963989e371c5dc93941575dc2971c_dep.md5: -------------------------------------------------------------------------------- 1 | adc0165383098158fb4a314b6449c3fb -------------------------------------------------------------------------------- /doc/doxygen/html/dir_2fa6c2ff8910515b1ac33b7a5b58d088_dep.md5: -------------------------------------------------------------------------------- 1 | 83e231f97723a61272279afcd29315e5 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_302df9359dc774834a1d2946e7a18406_dep.md5: -------------------------------------------------------------------------------- 1 | 565ed3eb1a4cb874b42c9802b3377862 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_3cc8247d1b204baca91f4bdabb506c67_dep.md5: -------------------------------------------------------------------------------- 1 | 279cc4d50c935cc8990ca35a09961687 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_3cd8941dcc84ec1d62ad8ac23c320b6e_dep.md5: -------------------------------------------------------------------------------- 1 | f6886209206032fb2ec16ead139b6c05 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_3d47c5c95cb900187c6396fee975ce9b_dep.md5: -------------------------------------------------------------------------------- 1 | fb85ada647b11275477b44f61e15bc9b -------------------------------------------------------------------------------- /doc/doxygen/html/dir_402a710074da1ff85408b8c9d15df30f_dep.md5: -------------------------------------------------------------------------------- 1 | 3d7799365d7f8bf0ed161425a70a84cb -------------------------------------------------------------------------------- /doc/doxygen/html/dir_4d5e837b641a6664da3dc63688078c03_dep.md5: -------------------------------------------------------------------------------- 1 | 121d4ba8976ea2f25809070f717741a2 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_4fbf97bbfdfd3d303fb68dbfdf9eca50_dep.md5: -------------------------------------------------------------------------------- 1 | d6d9ed89ac090d0285b9e5f897e94560 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_502bbe808320cb8ad52aea069060796a_dep.md5: -------------------------------------------------------------------------------- 1 | 840dd8e4718d07344b0b7c027a92ee88 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_505591b8f31c57833f7d48e58426eb51_dep.md5: -------------------------------------------------------------------------------- 1 | 1f6fb8276f64e717acf2d1ed75237d7b -------------------------------------------------------------------------------- /doc/doxygen/html/dir_55cff098177e68e543c03f448778fee9_dep.md5: -------------------------------------------------------------------------------- 1 | 163436fc56ad648cea50932d7e07d15e -------------------------------------------------------------------------------- /doc/doxygen/html/dir_579b890be5863a76c3b20ca2ee85f653_dep.md5: -------------------------------------------------------------------------------- 1 | e138149fdecfaf68c838eb1c279df6fd -------------------------------------------------------------------------------- /doc/doxygen/html/dir_59b1b622e09f8153b87d9b72d2ecb92e_dep.md5: -------------------------------------------------------------------------------- 1 | 692ac2c12edaaeba6cefba9ff1dd19e2 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_5b8b7a8a9e6b990b079bffe361fb6e31_dep.md5: -------------------------------------------------------------------------------- 1 | ed72cc95dfb261bd69c67bf6d0fb1584 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_5cb6cff45a64cd3340f575e3bc0f91b1_dep.md5: -------------------------------------------------------------------------------- 1 | 34164bfb1c279415feceab3622b3838c -------------------------------------------------------------------------------- /doc/doxygen/html/dir_5d1710a5bf2fe33bba0f68e046098a7e_dep.md5: -------------------------------------------------------------------------------- 1 | 575a7c8406b98c50736fe815399f8719 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_6088fb60336f5ae13c9242ffda1677a9_dep.md5: -------------------------------------------------------------------------------- 1 | 97cacde1b8a267647c27cabc62c21c05 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_632ef886e0317a327e71200c4f5bfcf8_dep.md5: -------------------------------------------------------------------------------- 1 | 735752e8442e4b921451a22416c8a8ad -------------------------------------------------------------------------------- /doc/doxygen/html/dir_634cae5d534217a0b66ec080384aff37_dep.md5: -------------------------------------------------------------------------------- 1 | d66a8e4541d6ceded9c65bcb316c0a12 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_65b34c68b7766a18c66b794c4cdee1fc_dep.md5: -------------------------------------------------------------------------------- 1 | bf97cd7ae0a65674c928daca9e18078a -------------------------------------------------------------------------------- /doc/doxygen/html/dir_660f4b932c0dc7c0ceeebec985b0f19d_dep.md5: -------------------------------------------------------------------------------- 1 | 1fd2feca8c624998fe97bbe06ebf44fa -------------------------------------------------------------------------------- /doc/doxygen/html/dir_66c0784b599c9f3ea19257f7b24e67ba_dep.md5: -------------------------------------------------------------------------------- 1 | 04842e5a59f1d7cdcd9532a714a0a599 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_67393766e00d4560a4f198b3365289e3_dep.md5: -------------------------------------------------------------------------------- 1 | 75912d128279101070f2c95b4fdc0969 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_67632616ffa81ba07798b82d4004a5a7_dep.md5: -------------------------------------------------------------------------------- 1 | baad57a36b99498cac205fcdd4ec4a02 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_7085880b7fb3d2fa9f5fa9b2af31309e_dep.md5: -------------------------------------------------------------------------------- 1 | 97edaa514c82982c796108b9955f04df -------------------------------------------------------------------------------- /doc/doxygen/html/dir_7717944b52cfb0b7eaca336a958b97a5_dep.md5: -------------------------------------------------------------------------------- 1 | 71bfd0a295104321b83b1f664e4273d6 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_79e77983c480bc47046e917e9bb22b61_dep.md5: -------------------------------------------------------------------------------- 1 | 7e62ae974dfb6eb9e266e28c0d6adf7e -------------------------------------------------------------------------------- /doc/doxygen/html/dir_80e392e4ed447867c8937026af1eb37a_dep.md5: -------------------------------------------------------------------------------- 1 | 8c0e8d663e4ef2bb9907c51ffe65dcb7 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_83a98833010eccec5fff883e92969e6a_dep.md5: -------------------------------------------------------------------------------- 1 | 9bc9eb2541d7808bacac00749c22f52a -------------------------------------------------------------------------------- /doc/doxygen/html/dir_851163e49e301dc0e87a1e650ec7f4be_dep.md5: -------------------------------------------------------------------------------- 1 | d20ec84991eb915719e2f558de022a8c -------------------------------------------------------------------------------- /doc/doxygen/html/dir_8a5d2524df77ee33768751e07fa890d8_dep.md5: -------------------------------------------------------------------------------- 1 | 2eb7dd014f03965b10fd00a548f2d862 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_8cdd67186f4dabb75e87e9ce44e3e255_dep.md5: -------------------------------------------------------------------------------- 1 | 223ac21dc538a4058c74f496f13b4ca2 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_8f7652bf98b5ec280511431bd871bfe3_dep.md5: -------------------------------------------------------------------------------- 1 | fdce0db49ea1ab83134b9a744a5d785f -------------------------------------------------------------------------------- /doc/doxygen/html/dir_94a5a165caa740e3f30b6a48edb2cc99_dep.md5: -------------------------------------------------------------------------------- 1 | 43c43907fa090f031295675cb40acae9 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_96d695052d0c017223be9bb26575349b_dep.md5: -------------------------------------------------------------------------------- 1 | f69e8fa8a859a5fc32fd6ec089a48bd8 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_9a9746f6b9fcc9a827f65f22f9668c09_dep.md5: -------------------------------------------------------------------------------- 1 | 9eaeffa465a3d081407c3fafe2aacd46 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_9e2f63d76b718a4db936666723aa010d_dep.md5: -------------------------------------------------------------------------------- 1 | efda883c1b8022970e41b26aa25ab70b -------------------------------------------------------------------------------- /doc/doxygen/html/dir_a29d399edcca74eab6a49c1430eef6e7_dep.md5: -------------------------------------------------------------------------------- 1 | f257e20aa42c578ecc9d69f99e9f723e -------------------------------------------------------------------------------- /doc/doxygen/html/dir_a5c13f8f97c1903d2a661919553661c6_dep.md5: -------------------------------------------------------------------------------- 1 | b782e6a8e80ba3c4722d8b14bacc7612 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_a5c5685d15dffcce249b298c0addd7ab_dep.md5: -------------------------------------------------------------------------------- 1 | d0cee5d5740d6fd9601236d10a323384 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_a72df5f8066dd8c81b3e2887683d0518_dep.md5: -------------------------------------------------------------------------------- 1 | 87e3ad8ab90e3e41d4c472ac4d7722c9 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_a833f7e97be55b84684d40c79906aaa2_dep.md5: -------------------------------------------------------------------------------- 1 | 4ad40219fe182ad87fe41423352cf492 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ac747d5f811b5fe332a8a05c2bb5be3f_dep.md5: -------------------------------------------------------------------------------- 1 | cee78f7d07777407015a14809798ef27 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_b297239694a2e10be46256863cb1f43c_dep.md5: -------------------------------------------------------------------------------- 1 | 4cc8141784f4c7a7ee717dcf62f4b668 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_b4405a94eb03d3869e7a57a48055cc50_dep.md5: -------------------------------------------------------------------------------- 1 | 3fff29cc343c282e5c8443bedd61f4d6 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_b528e158c0bb4dd73400d7e09dc63d8d_dep.md5: -------------------------------------------------------------------------------- 1 | 2d5a8117934fed81fcd8a7f1940fdab6 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_b7ead4a288dd7b4c5e559a6b33a1a3e2_dep.md5: -------------------------------------------------------------------------------- 1 | bfa027fb3dacc21b63d8b9f64f644d76 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_b9b3eebf008279dacd13a948380a3b0e_dep.md5: -------------------------------------------------------------------------------- 1 | 77206abce934aed0a35528a53c9b159c -------------------------------------------------------------------------------- /doc/doxygen/html/dir_c2d073683ef8d96022b31436c62bad0c_dep.md5: -------------------------------------------------------------------------------- 1 | dd0cc8eb5cbf44eaf47732d5f3adc330 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_c4466c8f56dc94a4b680fa61bd6ca368_dep.md5: -------------------------------------------------------------------------------- 1 | 990782879d112115024f90728055743d -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ce5f915cc60efe4e4e1ae344a805ae25_dep.md5: -------------------------------------------------------------------------------- 1 | 1b3f66bc52164b32490684ed7b78df8a -------------------------------------------------------------------------------- /doc/doxygen/html/dir_d53ee78dae844792d401496c9021cae0_dep.md5: -------------------------------------------------------------------------------- 1 | e8bf44de2bdfc6a092cd804ef0e9fdfe -------------------------------------------------------------------------------- /doc/doxygen/html/dir_d91e4ace354a4ebb0f4aa6927f98e49d_dep.md5: -------------------------------------------------------------------------------- 1 | efb592b4bf8eae38bb2a11ca475f14f0 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_dcb3aeab48fa39adb86db10c6424d70f_dep.md5: -------------------------------------------------------------------------------- 1 | 1a571787cf751680c8737483b3c9b9a8 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_dd1345194253637982d6e0382acccaa6_dep.md5: -------------------------------------------------------------------------------- 1 | c3e87415bcdada3a7616c1bfc2de6c98 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_dd693acddbf39dd04472749a8df811a0_dep.md5: -------------------------------------------------------------------------------- 1 | 20a1274fae1d44ec9fab2100d66ba669 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_dda6e3d3e40256656e3f3eb135deba25_dep.md5: -------------------------------------------------------------------------------- 1 | fcd22d041069d98f8d3782013d8333f2 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_deaf1478ea940733618ac341e6037e93_dep.md5: -------------------------------------------------------------------------------- 1 | d6cec7004b58faee741375a4fdab7606 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_dfb065c64998235760d33756fa2d3d00_dep.md5: -------------------------------------------------------------------------------- 1 | e4ad316811bfe81d6f9d8014b350a5c8 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_e13170dfceaee3f255c5184dc4938bf0_dep.md5: -------------------------------------------------------------------------------- 1 | 2eb2d7605f53f77fd6a19574775de242 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_e639e38e6cfc1eb702632608ebd16d0e_dep.md5: -------------------------------------------------------------------------------- 1 | fffdc4724958432ccce971e97a834fc1 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ec28ef2e4687b5e37e60407d61c5479d_dep.md5: -------------------------------------------------------------------------------- 1 | 106e7fdfeaa93604fc2aa02f465e3a49 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ed1e40efa372d8909b613dfd51d4d334_dep.md5: -------------------------------------------------------------------------------- 1 | fd29daf62af4b7b7513557804d1d5ee6 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ee64e5e33ad85f9027a4e05553ab2bdd_dep.md5: -------------------------------------------------------------------------------- 1 | d9231e76ed01e610c7d908b3363107cc -------------------------------------------------------------------------------- /doc/doxygen/html/dir_f5ebe8e05b100ab91e8716760c049809_dep.md5: -------------------------------------------------------------------------------- 1 | f2967ba75ca6a0919bb8474ccf048d68 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_fb3cb77304c492cc352b7947834ee7c2_dep.md5: -------------------------------------------------------------------------------- 1 | d9db25049ff9bd26b294809349974f97 -------------------------------------------------------------------------------- /doc/doxygen/html/dir_fd7cc3b05d191063c819306003d9ce7c_dep.md5: -------------------------------------------------------------------------------- 1 | 00b91ba22676254fead25148b7b32e7f -------------------------------------------------------------------------------- /doc/doxygen/html/dir_ff65ff643b4fd565180badfafd1b2d48_dep.md5: -------------------------------------------------------------------------------- 1 | 86a1b95ff38154d51496f469d286a6da -------------------------------------------------------------------------------- /doc/doxygen/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/doxygen.css -------------------------------------------------------------------------------- /doc/doxygen/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/dynsections.js -------------------------------------------------------------------------------- /doc/doxygen/html/engineSearchIB_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/engineSearchIB_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/engineSearch_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/engineSearch_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/execute_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/execute_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/explicitCouple_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/explicitCouple_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/fieldStore_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/fieldStore_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/files.html -------------------------------------------------------------------------------- /doc/doxygen/html/forceModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/forceModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/forceSubModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/forceSubModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/global_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/global_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/gradPForce_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/gradPForce_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/graph_legend.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/graph_legend.dot -------------------------------------------------------------------------------- /doc/doxygen/html/graph_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/graph_legend.html -------------------------------------------------------------------------------- /doc/doxygen/html/graph_legend.md5: -------------------------------------------------------------------------------- 1 | 6ba764f90c0f7463ae4482bca4fe18ee -------------------------------------------------------------------------------- /doc/doxygen/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/hierarchy.html -------------------------------------------------------------------------------- /doc/doxygen/html/implicitCouple_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/implicitCouple_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/index.html -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__0.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__0.md5: -------------------------------------------------------------------------------- 1 | 960c3e3394e086370652c886079e095f -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__1.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__1.md5: -------------------------------------------------------------------------------- 1 | c07c186d161be3cfc926f0cbed859a78 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__10.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__10.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__10.md5: -------------------------------------------------------------------------------- 1 | 3dc2f74a3265c9eab15132fad65fdf1a -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__2.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__2.md5: -------------------------------------------------------------------------------- 1 | c909eb29adfef8849828ac4e42433cd4 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__3.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__3.md5: -------------------------------------------------------------------------------- 1 | 50702384f088dfa663e4194080027fc2 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__4.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__4.md5: -------------------------------------------------------------------------------- 1 | 84ce85f7e9bc85d9c5eb2704da607336 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__5.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__5.md5: -------------------------------------------------------------------------------- 1 | 5728e8fd13bddeaf80b85cd1f06c2d19 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__6.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__6.md5: -------------------------------------------------------------------------------- 1 | b86b1f4a9d0a69723796bc49a869edee -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__7.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__7.md5: -------------------------------------------------------------------------------- 1 | a71bdd74ac93783c5ee1bb651d661cfb -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__8.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__8.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__8.md5: -------------------------------------------------------------------------------- 1 | 4120a42b19cdec9e12accedb2165f0ff -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__9.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit__graph__9.map -------------------------------------------------------------------------------- /doc/doxygen/html/inherit__graph__9.md5: -------------------------------------------------------------------------------- 1 | e0056d0b9b387ad79e12965ec4c84262 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_0.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_0.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_0.md5: -------------------------------------------------------------------------------- 1 | 9ddee037d3dd5c4404cd53865e7ecbc3 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_1.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_1.md5: -------------------------------------------------------------------------------- 1 | 31b7dacb479f1ad15fcd7f4561a47d3c -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_10.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_10.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_10.md5: -------------------------------------------------------------------------------- 1 | fe5ccc6dd40e0fbf1d8ed216e487c27d -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_11.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_11.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_11.md5: -------------------------------------------------------------------------------- 1 | 0910cb5209d66c4a324d283de12ec72b -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_12.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_12.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_12.md5: -------------------------------------------------------------------------------- 1 | 1303e90bef9599c53219460afd39879d -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_13.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_13.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_13.md5: -------------------------------------------------------------------------------- 1 | 05f82a265512865c57364302612c9e78 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_14.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_14.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_14.md5: -------------------------------------------------------------------------------- 1 | 3b32582a3afd3bda924e703470ce1760 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_15.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_15.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_15.md5: -------------------------------------------------------------------------------- 1 | 278e563a5352dad58986dc6d993ae001 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_16.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_16.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_16.md5: -------------------------------------------------------------------------------- 1 | fde37128898a40518aba9763c140570f -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_2.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_2.md5: -------------------------------------------------------------------------------- 1 | 890fb8735387dfe3d1d95dc0920f8cca -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_3.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_3.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_3.md5: -------------------------------------------------------------------------------- 1 | 752e5d0616384235ee708892af9034e4 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_4.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_4.md5: -------------------------------------------------------------------------------- 1 | d847daf3303fe96e4b97a1b1024d4ea8 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_5.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_5.md5: -------------------------------------------------------------------------------- 1 | f14949c39751625a6024702212168e65 -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_6.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_6.md5: -------------------------------------------------------------------------------- 1 | 0afd2e89f0c00215b29ac54ef0f4b2ce -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_7.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_7.md5: -------------------------------------------------------------------------------- 1 | 6fa2035b3982eba4364dd4f91b9b75cb -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_8.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_8.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_8.md5: -------------------------------------------------------------------------------- 1 | c7a5ef3283bc83b145b9024af49b9b3a -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_9.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherit_graph_9.dot -------------------------------------------------------------------------------- /doc/doxygen/html/inherit_graph_9.md5: -------------------------------------------------------------------------------- 1 | 81c077a6eea33d5f5c37fb0af25fce41 -------------------------------------------------------------------------------- /doc/doxygen/html/inherits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/inherits.html -------------------------------------------------------------------------------- /doc/doxygen/html/installdox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/installdox -------------------------------------------------------------------------------- /doc/doxygen/html/interface_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/interface_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/jquery.js -------------------------------------------------------------------------------- /doc/doxygen/html/lnInclude_2dense_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/lnInclude_2dense_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/lnInclude_2noIO_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/lnInclude_2noIO_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/locateModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/locateModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/mathExtra_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/mathExtra_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/meshMotionModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/meshMotionModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/momCoupleModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/momCoupleModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noClock_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noClock_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noCouple_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noCouple_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noDataExchange_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noDataExchange_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noDrag_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noDrag_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noIO_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noIO_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noMeshMotion_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noMeshMotion_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noProbe_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noProbe_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/noSmoothing_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/noSmoothing_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/oneWayVTK_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/oneWayVTK_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/particleProbe_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/particleProbe_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/probeModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/probeModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/readLiggghtsData_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/readLiggghtsData_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/regionModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/regionModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/runLiggghts_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/runLiggghts_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_0.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_0.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_1.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_1.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_10.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_10.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_11.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_11.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_12.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_12.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_2.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_2.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_3.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_3.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_4.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_4.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_5.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_5.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_61.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_62.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_63.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_64.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_65.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_66.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_67.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_69.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6b.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6c.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6d.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6e.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_6f.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_7.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_7.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_72.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_73.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_74.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_76.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_8.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_8.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_9.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_9.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_a.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_a.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_b.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_b.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_c.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_c.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_d.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_d.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_e.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_e.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_f.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/all_f.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_0.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_0.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_1.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_1.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_10.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_10.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_11.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_11.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_12.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_12.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_2.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_2.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_3.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_3.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_4.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_4.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_5.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_5.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_61.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_61.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_62.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_63.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_64.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_65.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_66.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_67.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_69.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6b.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6c.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6d.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6e.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_6f.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_7.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_7.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_72.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_73.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_74.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_76.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_8.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_8.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_9.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_9.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_a.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_a.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_b.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_b.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_c.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_c.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_d.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_d.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_e.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_e.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_f.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/classes_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/classes_f.js -------------------------------------------------------------------------------- /doc/doxygen/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/nomatches.html -------------------------------------------------------------------------------- /doc/doxygen/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/search.css -------------------------------------------------------------------------------- /doc/doxygen/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/search/search.js -------------------------------------------------------------------------------- /doc/doxygen/html/setupProbeModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/setupProbeModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/smoothingModel_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/smoothingModel_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/solverDebugInfo_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/solverDebugInfo_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/sophIO_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/sophIO_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/standardClock_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/standardClock_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/standardSearch_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/standardSearch_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/tab_b.gif -------------------------------------------------------------------------------- /doc/doxygen/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/tab_l.gif -------------------------------------------------------------------------------- /doc/doxygen/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/tab_r.gif -------------------------------------------------------------------------------- /doc/doxygen/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/tabs.css -------------------------------------------------------------------------------- /doc/doxygen/html/trackIO_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/trackIO_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/twoWayFiles_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/twoWayFiles_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/twoWayMPI_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/twoWayMPI_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/versionInfo_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/versionInfo_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/virtualMassForce_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/virtualMassForce_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/viscForce_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/viscForce_8H_source.html -------------------------------------------------------------------------------- /doc/doxygen/html/writeLiggghts_8H_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/doxygen/html/writeLiggghts_8H_source.html -------------------------------------------------------------------------------- /doc/release-notes-PUBLIC-3.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/doc/release-notes-PUBLIC-3.8.0.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/eulerian/fvOptionsCFDEM/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/eulerian/fvOptionsCFDEM/Make/files -------------------------------------------------------------------------------- /src/eulerian/fvOptionsCFDEM/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/eulerian/fvOptionsCFDEM/Make/options -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/Make/files -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/Make/options -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/cfdTools/global.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/cfdTools/global.C -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/cfdTools/global.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/cfdTools/global.H -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/etc/bashrc -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/etc/cshrc -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/etc/functions.sh -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/log/dummy: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/pullLIGGGHTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/etc/pullLIGGGHTS.sh -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/solver-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticle/etc/solver-list.txt -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticle/etc/utilities-list.txt: -------------------------------------------------------------------------------- 1 | cfdemPostproc/dir 2 | -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticleComp/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticleComp/Make/files -------------------------------------------------------------------------------- /src/lagrangian/cfdemParticleComp/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/src/lagrangian/cfdemParticleComp/Make/options -------------------------------------------------------------------------------- /src/version_CFDEMcoupling_branch.txt: -------------------------------------------------------------------------------- 1 | CFDEMcoupling-PUBLIC 2 | -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/Allrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/0/U -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/0/Us -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/0/p -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/0/phiIB -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/0/voidfraction -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/constant/g -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/cfdemSolverIB_test/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverIB_test/parCFDDEMrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/Allrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/0/U -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/0/Us -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/0/p -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/0/phiIB -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/0/rho -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/CFD/constant/g -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/cfdemSolverMixIB_test/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMixIB_test/parCFDDEMrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/Allrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/0/U -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/0/Us -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/0/p -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/0/phiIB -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/0/rho -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/CFD/constant/g -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_IB/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_IB/parCFDDEMrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/Allrun.sh -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/Ksl -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/U -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/Us -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/k -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/nuSgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/nuSgs -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/p -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/0/rho -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverMix_test_piso/CFD/constant/g -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/cfdemSolverMix_test_piso/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/U -------------------------------------------------------------------------------- /test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/k -------------------------------------------------------------------------------- /test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/test_mix/cfdemSolverPiso_settlingTestMPI/CFD/0/p -------------------------------------------------------------------------------- /test_mix/cfdemSolverPiso_settlingTestMPI/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/cfdemSolverPiso_settlingTestMPI/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/fixedSphere_Re250_cfdemSolverMix/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/fixedSphere_Re250_cfdemSolverMix/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re280_cfdemSolverIB/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re280_cfdemSolverIB/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re280_cfdemSolverMix/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re280_cfdemSolverMix/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverIB/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverIB/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverIB/position_particle_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverIB/velocity_particle_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverMix/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_Re41_cfdemSolverMix/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_silicon_oil_cfdemSolverIB/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_silicon_oil_cfdemSolverIB/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_silicon_oil_cfdemSolverMix/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/oneParticlesSediment_silicon_oil_cfdemSolverMix/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/twoParticlesSediment_cfdemSolverIB/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/twoParticlesSediment_cfdemSolverIB/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test_mix/twoParticlesSediment_cfdemSolverMix/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !restart/ -------------------------------------------------------------------------------- /test_mix/twoParticlesSediment_cfdemSolverMix/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tutorials/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/.gitignore -------------------------------------------------------------------------------- /tutorials/ParScale/cfdemSolverPisoSTM/packedBedTempParScale/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/ParScale/cfdemSolverPisoSTM/packedBedTempParScale/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemPostproc/fillCylinder/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemPostproc/fillCylinder/Allrun.sh -------------------------------------------------------------------------------- /tutorials/cfdemPostproc/fillCylinder/CFD/0/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemPostproc/fillCylinder/CFD/0/dummy -------------------------------------------------------------------------------- /tutorials/cfdemPostproc/fillCylinder/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverIB/twoSpheresGlowinskiMPI/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/Allrun.sh -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/U -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/k -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/p -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/tutorials/cfdemSolverPiso/ErgunTestMPI/CFD/0/rho -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI_cgs/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/ErgunTestMPI_restart/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/periodicChannel/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/periodicChannel/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/settlingTestMPI/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/settlingTestMPI/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPiso/voidfractionTest/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPisoSTM/packedBedTemp/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPisoSTM/packedBedTemp/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPisoScalar/packedBedTemp/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/cfdemSolverPisoScalar/packedBedTemp/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wmake_IB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/wmake_IB -------------------------------------------------------------------------------- /wmake_mix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/wmake_mix -------------------------------------------------------------------------------- /wmake_mixIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/wmake_mixIB -------------------------------------------------------------------------------- /wmake_piso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/wmake_piso -------------------------------------------------------------------------------- /wmake_src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MultiscaleCFDEMcoupling/HEAD/wmake_src --------------------------------------------------------------------------------