├── CFDEM-Compressible_Lagrangian_Library ├── README.md └── cfdemParticleComp │ ├── 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.0 │ │ ├── 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 │ │ ├── log_compileASPHERElib │ │ ├── log_compileCFDEMcoupling_cfdemParticle │ │ ├── log_compileCFDEMcoupling_cfdemPostproc │ │ ├── log_compileCFDEMcoupling_cfdemSolverIB │ │ ├── log_compileCFDEMcoupling_cfdemSolverPiso │ │ ├── log_compileCFDEMcoupling_cfdemSolverPisoSTM │ │ ├── log_compileCFDEMcoupling_cfdemSolverPisoScalar │ │ ├── log_compileCFDEMcoupling_fvOptionsCFDEM │ │ ├── log_compileCFDEMcoupling_scalarTransportModelsCFDEM │ │ ├── log_compileDIPOLElib │ │ ├── log_compileLIGGGHTS │ │ ├── log_compilePASCALlib │ │ ├── log_compilePOEMSlib │ │ ├── log_compile_results_sol_success │ │ └── log_compile_results_src_success │ ├── 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 ├── CFDEMresultRhoPimpleFoamTutorial.png ├── README.md ├── pitzDalyWithCompressibleCFDEM.m4v ├── pitzDalyWithCompressibleCFDEM.ogv ├── rhoCfdemSolverPimpleScalar_Nusselt.png ├── rhoCfdemSolverPimpleScalar_pressureDrop.png ├── rhoCfdemSolverPimpleScalar_temperatures.png ├── rhoCfdemSolverPimple_ErgunTestMPI.png ├── rhoCfdemSolverPimple_settlingTestMPI.png ├── solvers └── compressible │ ├── rhoCfdemSolverPimple │ ├── Make │ │ ├── files │ │ └── options │ ├── UEqn.H │ ├── compressibleContinuityErrs.H │ ├── compressibleFixedFluxPressureHandling.H │ ├── createFields.H │ ├── hEqn.H │ ├── pEqn.H │ ├── rhoCfdemSolverPimple.C │ └── rhoEqn.H │ └── rhoCfdemSolverPimpleScalar │ ├── Make │ ├── files │ └── options │ ├── UEqn.H │ ├── compressibleContinuityErrs.H │ ├── compressibleFixedFluxPressureHandling.H │ ├── createFields.H │ ├── createIncompressibleRadiationModel.H │ ├── hEqn.H │ ├── pEqn.H │ ├── rhoCfdemSolverPimpleScalar.C │ └── rhoEqn.H ├── sqBendLiqCompressibleCFDEM.m4v ├── sqBendLiqCompressibleCFDEM.ogv └── tutorials └── compressible ├── rhoCfdemSolverPimple ├── ErgunMPI │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_backup │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── couplingProperties_backup │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ ├── thermophysicalProperties │ │ │ ├── thermophysicalProperties.air │ │ │ ├── thermophysicalProperties.water │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── log.liggghts │ │ ├── octave │ │ │ ├── loaddata.m │ │ │ ├── rhoCfdemSolverPimple_ErgunTestMPI.png │ │ │ ├── runOctave │ │ │ └── totalPressureDrop.m │ │ ├── postProcessing │ │ │ ├── probes │ │ │ │ └── 0 │ │ │ │ │ ├── U │ │ │ │ │ ├── p │ │ │ │ │ └── voidfraction │ │ │ ├── volFlow_inlet │ │ │ │ └── 0 │ │ │ │ │ ├── surfaceFieldValue.dat │ │ │ │ │ └── surfaceFieldValue_0.0005.dat │ │ │ ├── volFlow_outlet │ │ │ │ └── 0 │ │ │ │ │ ├── surfaceFieldValue.dat │ │ │ │ │ └── surfaceFieldValue_0.0005.dat │ │ │ └── volFlow_wall │ │ │ │ └── 0 │ │ │ │ ├── surfaceFieldValue.dat │ │ │ │ └── surfaceFieldValue_0.0005.dat │ │ ├── steps_0p1s │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── couplingParameters │ │ │ ├── decomposeParDict │ │ │ ├── funkySetFieldsDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_init │ │ ├── in.liggghts_run │ │ ├── log.liggghts │ │ └── post │ │ │ ├── .gitignore │ │ │ ├── dump.liggghts_init │ │ │ ├── dump10000.liggghts_run │ │ │ ├── dump15000.liggghts_run │ │ │ ├── dump20000.liggghts_run │ │ │ ├── forces.txt │ │ │ ├── restart │ │ │ ├── .gitignore │ │ │ ├── liggghts.restart │ │ │ └── liggghts.restartCFDEM │ │ │ └── thermo.txt │ ├── log_run_liggghts_init_DEM │ ├── log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM │ ├── parCFDDEMrun.sh │ ├── parDEMrun.sh │ └── rhoCfdemSolverPimple_ErgunTestMPI.png ├── cavity │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_backup │ │ │ └── voidfraction │ │ ├── constant │ │ │ ├── couplingProperties │ │ │ ├── couplingProperties_backup │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── foo.foam │ │ ├── log.liggghts │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── couplingParameters │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── CFDEMresultRhoPimpleFoamTutorial.png │ ├── DEM │ │ ├── in.liggghts_init │ │ ├── in.liggghts_run │ │ ├── log.liggghts │ │ └── post │ │ │ ├── .gitignore │ │ │ ├── dump.liggghts_init │ │ │ ├── dump10000.liggghts_run │ │ │ ├── dump15000.liggghts_run │ │ │ ├── dump20000.liggghts_run │ │ │ ├── forces.txt │ │ │ ├── restart │ │ │ ├── .gitignore │ │ │ ├── liggghts.restart │ │ │ └── liggghts.restartCFDEM │ │ │ └── thermo.txt │ ├── log_run_liggghts_init_DEM │ ├── log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM │ ├── parCFDDEMrun.sh │ └── parDEMrun.sh ├── pitzDaily │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── alphat │ │ │ ├── k │ │ │ ├── muTilda │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_backup │ │ │ └── voidfraction │ │ ├── CFD.OpenFOAM │ │ ├── constant │ │ │ ├── couplingProperties │ │ │ ├── couplingProperties_backup │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── foo.foam │ │ ├── log.liggghts │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── couplingParameters │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ └── org │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_init │ │ ├── in.liggghts_run │ │ ├── log.liggghts │ │ └── post │ │ │ ├── .gitignore │ │ │ ├── dump.liggghts_init │ │ │ ├── dump10000.liggghts_run │ │ │ ├── forces.txt │ │ │ ├── restart │ │ │ ├── .gitignore │ │ │ └── liggghts.restart │ │ │ └── thermo.txt │ ├── log_run_liggghts_init_DEM │ ├── log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM │ ├── parCFDDEMrun.sh │ ├── parDEMrun.sh │ ├── pitzDaly-noParticles-rhoCfdemSolverPimple-vs-rhoPimpleFoam.ogv │ └── pitzDalyOF5-vs-rhoCfdemSolverPimple-Time0p1sec.png ├── settlingTestMPI │ ├── Allrun.sh │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── T │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── k │ │ │ ├── nuSgs │ │ │ ├── p │ │ │ ├── p.backup │ │ │ ├── rho │ │ │ ├── sSmoothField │ │ │ ├── vSmoothField │ │ │ └── voidfraction │ │ ├── CFD.OpenFOAM │ │ ├── CFD.blockMesh │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── couplingProperties_backup │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── particleTrackProperties │ │ │ ├── polyMesh │ │ │ │ ├── boundary │ │ │ │ ├── faces │ │ │ │ ├── neighbour │ │ │ │ ├── owner │ │ │ │ └── points │ │ │ ├── thermophysicalProperties │ │ │ └── turbulenceProperties │ │ ├── log.liggghts │ │ ├── octave │ │ │ ├── rhoCfdemSolverPimple_settlingTestMPI.png │ │ │ └── settlingVelocity.m │ │ └── system │ │ │ ├── backup │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── controlDict.foam │ │ │ ├── controlDict_backup │ │ │ ├── couplingParameters │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ ├── log.liggghts │ │ └── post │ │ │ ├── .gitignore │ │ │ ├── dump.liggghts_run │ │ │ ├── restart │ │ │ ├── .gitignore │ │ │ └── liggghts.restartCFDEM │ │ │ ├── thermo.txt │ │ │ └── velocity.txt │ ├── lastTimeStep.png │ ├── log_run_parallel_rhoCfdemSolverPimple_settlingTestMPI_CFDDEM │ ├── parCFDDEMrun.sh │ ├── rhoCfdemSolverPimple_settlingTestMPI.png │ ├── savedStateParaView.pvsm │ └── settlingMPI-compressible.ogv └── sqBendLiq │ ├── Allrun.sh │ ├── CFD │ ├── 0 │ │ ├── Ksl │ │ ├── T │ │ ├── U │ │ ├── Us │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ ├── p_backup │ │ └── voidfraction │ ├── constant │ │ ├── couplingProperties │ │ ├── couplingProperties_backup │ │ ├── g │ │ ├── liggghtsCommands │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── foo.foam │ ├── log.liggghts │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── couplingParameters │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── DEM │ ├── in.liggghts_init │ ├── in.liggghts_run │ ├── log.liggghts │ └── post │ │ ├── .gitignore │ │ ├── dump.liggghts_init │ │ ├── dump10000.liggghts_run │ │ ├── dump15000.liggghts_run │ │ ├── dump20000.liggghts_run │ │ ├── forces.txt │ │ ├── restart │ │ ├── .gitignore │ │ ├── liggghts.restart │ │ └── liggghts.restartCFDEM │ │ └── thermo.txt │ ├── log_run_liggghts_init_DEM │ ├── log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM │ ├── parCFDDEMrun.sh │ ├── parDEMrun.sh │ └── sqBendLiqCompressibleCFDEM.ogv └── rhoCfdemSolverPimpleScalar └── packedBedTemp ├── Allrun.sh ├── CFD ├── 0 │ ├── Ksl │ ├── T │ ├── Temp │ ├── Tsource │ ├── U │ ├── Us │ ├── alphat │ ├── epsilon │ ├── k │ ├── nut │ ├── p │ ├── rho │ └── voidfraction ├── constant │ ├── RASProperties │ ├── couplingProperties │ ├── g │ ├── liggghtsCommands │ ├── polyMesh │ │ ├── boundary │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ ├── thermophysicalProperties │ ├── transportProperties │ └── turbulenceProperties ├── foo.foam ├── log.liggghts ├── octave │ ├── octave-workspace │ ├── rhoCfdemSolverPimpleScalar_Nusselt.png │ ├── rhoCfdemSolverPimpleScalar_pressureDrop.png │ ├── rhoCfdemSolverPimpleScalar_temperatures.png │ ├── runOctave │ ├── totalPressureDropAndNusselt.m │ ├── ���V │ └── �Q���U ├── postProcessing │ ├── probes │ │ └── 0 │ │ │ ├── Temp │ │ │ └── p │ ├── volFlow_inlet │ │ └── 0 │ │ │ ├── surfaceFieldValue.dat │ │ │ └── surfaceFieldValue_0.005.dat │ ├── volFlow_outlet │ │ └── 0 │ │ │ ├── surfaceFieldValue.dat │ │ │ └── surfaceFieldValue_0.005.dat │ └── volFlow_wall │ │ └── 0 │ │ ├── surfaceFieldValue.dat │ │ └── surfaceFieldValue_0.005.dat ├── savedState.pvsm └── system │ ├── blockMeshDict │ ├── controlDict │ ├── controlDict.foam │ ├── couplingParameters │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── DEM ├── in.liggghts_init ├── in.liggghts_run ├── log.liggghts └── post │ ├── .gitignore │ ├── dump.liggghts_init │ ├── dump160000.liggghts_run │ ├── dump180000.liggghts_run │ ├── dump200000.liggghts_run │ ├── dump220000.liggghts_run │ ├── dump240000.liggghts_run │ ├── dump260000.liggghts_run │ ├── dump280000.liggghts_run │ ├── dump300000.liggghts_run │ ├── restart │ ├── .gitignore │ └── liggghts.restart │ └── thermo.txt ├── log_run_liggghts_init_DEM ├── log_run_parallel_rhoCfdemSolverPimpleScalar_packedBedTemp_CFDDEM ├── parCFDDEMrun.sh └── parDEMrun.sh /CFDEM-Compressible_Lagrangian_Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/README.md -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/Make/files -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/Make/options -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/IOtools/json/json.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/IOtools/json/json.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/IOtools/json/json.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/IOtools/json/json.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkImCoupleM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkImCoupleM.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkImExCoupleM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkImExCoupleM.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkModelType.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/checkModelType.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/compressibleContinuityErrsPU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/compressibleContinuityErrsPU.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/continuityErrorPhiPU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/continuityErrorPhiPU.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/continuityErrorPhiVoidfraction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/continuityErrorPhiVoidfraction.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/debugInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/debugInfo.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/fixedFluxPressureHandling.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/fixedFluxPressureHandling.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckEx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckEx.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckIm.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckIm.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckImEx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/forceCheckImEx.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/global.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/global.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/global.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/global.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/mathExtra.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/mathExtra.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/newGlobal.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/newGlobal.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/readPISOControls_OF30.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/readPISOControls_OF30.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetAlphaInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetAlphaInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDDtUInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDDtUInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDSauterInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDSauterInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDivTauInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetDivTauInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetFluidScalarFieldInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetFluidScalarFieldInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradAlphaInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradAlphaInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradPInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradPInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradPsolidInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradPsolidInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradUInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradUInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradVoidfractionInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetGradVoidfractionInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetPhiP1Interpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetPhiP1Interpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetPhiP2Interpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetPhiP2Interpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetShearRateInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetShearRateInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetTInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetTInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUp1Interpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUp1Interpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUp2Interpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUp2Interpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUsInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetUsInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetVoidfractionInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetVoidfractionInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetVorticityInterpolator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/resetInterpolators/resetVorticityInterpolator.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/setupProbeModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/setupProbeModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/setupProbeModelfields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/setupProbeModelfields.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/solverDebugInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/solverDebugInfo.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/versionInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdTools/versionInfo.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloud.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloud.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloudI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloudI.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloudIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/cfdemCloud/cfdemCloudIO.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/derived/cfdemCloudIB/cfdemCloudIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/derived/cfdemCloudIB/cfdemCloudIB.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/derived/cfdemCloudIB/cfdemCloudIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/derived/cfdemCloudIB/cfdemCloudIB.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/changeDictionaryDicts/changeDictionaryDict_2.4.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/changeDictionaryDicts/changeDictionaryDict_2.4.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/changeDictionaryDicts/changeDictionaryDict_3.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/changeDictionaryDicts/changeDictionaryDict_3.0.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/activateVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/activateVersion.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/cfdemChangeTutOFversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/cfdemChangeTutOFversion.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/commentOut.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/commentOut.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/unComment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFVersionChange/shellScripts/unComment.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFversion/OFversion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/OFversion/OFversion.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_2.4.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_2.4.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_3.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_3.0.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_3.2 -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_4.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_4.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_5.0 -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_5.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_5.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_superquadric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_superquadric -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_v1606+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_v1606+ -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_v1612+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/addLibs_universal/additionalLibs_v1612+ -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/bashrc -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cfdemSystemTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cfdemSystemTest.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cleanCFDEMcoupling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cleanCFDEMcoupling.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_all.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_sol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_sol.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_src.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_uti.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileCFDEMcoupling_uti.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS_dataExchLib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS_dataExchLib.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/compileLIGGGHTS_lib.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/controlDict_cgs_2.1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/controlDict_cgs_2.1.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/controlDict_cgs_2.2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/controlDict_cgs_2.2.x -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/cshrc -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/functions.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/library-liggghts-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/library-liggghts-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/library-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/library-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileASPHERElib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileASPHERElib -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemParticle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemParticle -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemPostproc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemPostproc -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverIB -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPiso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPiso -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPisoSTM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPisoSTM -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPisoScalar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_cfdemSolverPisoScalar -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_fvOptionsCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_fvOptionsCFDEM -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_scalarTransportModelsCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileCFDEMcoupling_scalarTransportModelsCFDEM -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileDIPOLElib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileDIPOLElib -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileLIGGGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compileLIGGGHTS -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compilePASCALlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compilePASCALlib -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compilePOEMSlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compilePOEMSlib -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compile_results_sol_success: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compile_results_sol_success -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compile_results_src_success: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/log/log_compile_results_src_success -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/package-liggghts-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/package-liggghts-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/package-undo-liggghts-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/package-undo-liggghts-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/pullLIGGGHTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/pullLIGGGHTS.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/solver-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/solver-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/testTutorials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/testTutorials.sh -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/tutorial-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/tutorial-list.txt -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/etc/utilities-list.txt: -------------------------------------------------------------------------------- 1 | cfdemPostproc/dir 2 | -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/IOModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/IOModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/IOModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/IOModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/newIOModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/IOModel/newIOModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/basicIO/basicIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/basicIO/basicIO.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/basicIO/basicIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/basicIO/basicIO.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/noIO/noIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/noIO/noIO.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/noIO/noIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/noIO/noIO.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/sophIO/sophIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/sophIO/sophIO.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/sophIO/sophIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/sophIO/sophIO.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/trackIO/trackIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/trackIO/trackIO.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/trackIO/trackIO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/IOModel/trackIO/trackIO.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/averagingModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/averagingModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/averagingModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/averagingModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/newAveragingModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/averagingModel/newAveragingModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dense/dense.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dense/dense.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dense/dense.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dense/dense.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dilute/dilute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dilute/dilute.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dilute/dilute.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/averagingModel/dilute/dilute.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/clockModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/clockModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/clockModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/clockModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/newClockModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/clockModel/newClockModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/noClock/noClock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/noClock/noClock.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/noClock/noClock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/noClock/noClock.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/standardClock/standardClock.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/standardClock/standardClock.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/standardClock/standardClock.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/clockModel/standardClock/standardClock.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/dataExchangeModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/dataExchangeModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/dataExchangeModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/dataExchangeModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/newDataExchangeModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/dataExchangeModel/newDataExchangeModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/noDataExchange/noDataExchange.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/noDataExchange/noDataExchange.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/noDataExchange/noDataExchange.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/noDataExchange/noDataExchange.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/oneWayVTK/oneWayVTK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/oneWayVTK/oneWayVTK.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/oneWayVTK/oneWayVTK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/oneWayVTK/oneWayVTK.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayFiles/twoWayFiles.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayFiles/twoWayFiles.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayFiles/twoWayFiles.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayFiles/twoWayFiles.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayMPI/twoWayMPI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayMPI/twoWayMPI.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayMPI/twoWayMPI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/dataExchangeModel/twoWayMPI/twoWayMPI.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/Archimedes/Archimedes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/Archimedes/Archimedes.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/Archimedes/Archimedes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/Archimedes/Archimedes.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ArchimedesIB/ArchimedesIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ArchimedesIB/ArchimedesIB.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ArchimedesIB/ArchimedesIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ArchimedesIB/ArchimedesIB.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/DiFeliceDrag/DiFeliceDrag.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/GidaspowDrag/GidaspowDrag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/GidaspowDrag/GidaspowDrag.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/GidaspowDrag/GidaspowDrag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/GidaspowDrag/GidaspowDrag.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/KochHillDrag/KochHillDrag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/KochHillDrag/KochHillDrag.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/KochHillDrag/KochHillDrag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/KochHillDrag/KochHillDrag.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/LaEuScalarTemp/LaEuScalarTemp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/LaEuScalarTemp/LaEuScalarTemp.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/LaEuScalarTemp/LaEuScalarTemp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/LaEuScalarTemp/LaEuScalarTemp.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/MeiLift/MeiLift.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/MeiLift/MeiLift.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/MeiLift/MeiLift.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/MeiLift/MeiLift.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/SchillerNaumannDrag/SchillerNaumannDrag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/SchillerNaumannDrag/SchillerNaumannDrag.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/SchillerNaumannDrag/SchillerNaumannDrag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/SchillerNaumannDrag/SchillerNaumannDrag.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ShirgaonkarIB/ShirgaonkarIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ShirgaonkarIB/ShirgaonkarIB.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ShirgaonkarIB/ShirgaonkarIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/ShirgaonkarIB/ShirgaonkarIB.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/checkCouplingInterval/checkCouplingInterval.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/checkCouplingInterval/checkCouplingInterval.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldStore/fieldStore.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldStore/fieldStore.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldStore/fieldStore.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldStore/fieldStore.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldTimeAverage/fieldTimeAverage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldTimeAverage/fieldTimeAverage.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldTimeAverage/fieldTimeAverage.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/fieldTimeAverage/fieldTimeAverage.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/forceModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/forceModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/forceModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/forceModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/newForceModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceModel/newForceModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/ImEx/ImEx.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/ImEx/ImEx.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/ImEx/ImEx.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/ImEx/ImEx.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/forceSubModel/forceSubModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/forceSubModel/forceSubModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/forceSubModel/forceSubModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/forceSubModels/forceSubModel/forceSubModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/gradPForce/gradPForce.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/gradPForce/gradPForce.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/gradPForce/gradPForce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/gradPForce/gradPForce.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/interface/interface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/interface/interface.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/interface/interface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/interface/interface.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/noDrag/noDrag.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/noDrag/noDrag.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/noDrag/noDrag.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/noDrag/noDrag.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleCellVolume/particleCellVolume.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleCellVolume/particleCellVolume.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleCellVolume/particleCellVolume.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleCellVolume/particleCellVolume.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleVolume/particleVolume.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleVolume/particleVolume.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleVolume/particleVolume.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/particleVolume/particleVolume.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/virtualMassForce/virtualMassForce.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/virtualMassForce/virtualMassForce.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/virtualMassForce/virtualMassForce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/virtualMassForce/virtualMassForce.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/viscForce/viscForce.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/viscForce/viscForce.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/viscForce/viscForce.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/viscForce/viscForce.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/volWeightedAverage/volWeightedAverage.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/volWeightedAverage/volWeightedAverage.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/volWeightedAverage/volWeightedAverage.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/forceModel/volWeightedAverage/volWeightedAverage.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/execute/execute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/execute/execute.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/execute/execute.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/execute/execute.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/runLiggghts/runLiggghts.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/runLiggghts/runLiggghts.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/runLiggghts/runLiggghts.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/runLiggghts/runLiggghts.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/setDEMGravity/setDEMGravity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/setDEMGravity/setDEMGravity.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/setDEMGravity/setDEMGravity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/setDEMGravity/setDEMGravity.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/writeLiggghts/writeLiggghts.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/writeLiggghts/writeLiggghts.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/writeLiggghts/writeLiggghts.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/liggghtsCommandModel/writeLiggghts/writeLiggghts.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearch/engineSearch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearch/engineSearch.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearch/engineSearch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearch/engineSearch.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearchIB/engineSearchIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearchIB/engineSearchIB.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearchIB/engineSearchIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/engineSearchIB/engineSearchIB.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/locateModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/locateModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/locateModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/locateModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/newLocateModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/locateModel/newLocateModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/standardSearch/standardSearch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/standardSearch/standardSearch.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/standardSearch/standardSearch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/locateModel/standardSearch/standardSearch.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/meshMotionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/meshMotionModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/meshMotionModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/meshMotionModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/newMeshMotionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/meshMotionModel/newMeshMotionModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/noMeshMotion/noMeshMotion.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/noMeshMotion/noMeshMotion.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/noMeshMotion/noMeshMotion.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/meshMotionModel/noMeshMotion/noMeshMotion.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/explicitCouple/explicitCouple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/explicitCouple/explicitCouple.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/explicitCouple/explicitCouple.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/explicitCouple/explicitCouple.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/implicitCouple/implicitCouple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/implicitCouple/implicitCouple.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/implicitCouple/implicitCouple.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/implicitCouple/implicitCouple.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/momCoupleModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/momCoupleModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/momCoupleModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/momCoupleModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/newMomCoupleModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/momCoupleModel/newMomCoupleModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/noCouple/noCouple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/noCouple/noCouple.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/noCouple/noCouple.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/momCoupleModel/noCouple/noCouple.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/noProbe/noProbe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/noProbe/noProbe.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/noProbe/noProbe.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/noProbe/noProbe.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/particleProbe/particleProbe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/particleProbe/particleProbe.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/particleProbe/particleProbe.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/particleProbe/particleProbe.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/newProbeModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/newProbeModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/probeModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/probeModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/probeModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/probeModel/probeModel/probeModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/defaultRegistry/defaultRegistry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/defaultRegistry/defaultRegistry.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/defaultRegistry/defaultRegistry.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/defaultRegistry/defaultRegistry.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/newRegistryModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/newRegistryModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/registryModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/registryModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/registryModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/registryModel/registryModel/registryModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/constDiffSmoothing/constDiffSmoothing.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/constDiffSmoothing/constDiffSmoothing.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/constDiffSmoothing/constDiffSmoothing.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/constDiffSmoothing/constDiffSmoothing.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/noSmoothing/noSmoothing.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/noSmoothing/noSmoothing.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/noSmoothing/noSmoothing.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/noSmoothing/noSmoothing.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/newSmoothingModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/newSmoothingModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/smoothingModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/smoothingModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/smoothingModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/smoothingModel/smoothingModel/smoothingModel.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/GaussVoidFraction/GaussVoidFraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/GaussVoidFraction/GaussVoidFraction.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/GaussVoidFraction/GaussVoidFraction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/GaussVoidFraction/GaussVoidFraction.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/IBVoidFraction/IBVoidFraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/IBVoidFraction/IBVoidFraction.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/IBVoidFraction/IBVoidFraction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/IBVoidFraction/IBVoidFraction.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/noVoidFraction/noVoidFraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/noVoidFraction/noVoidFraction.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/noVoidFraction/noVoidFraction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/noVoidFraction/noVoidFraction.H -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/voidFractionModel/voidFractionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/voidFractionModel/voidFractionModel.C -------------------------------------------------------------------------------- /CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/voidFractionModel/voidFractionModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEM-Compressible_Lagrangian_Library/cfdemParticleComp/subModels/voidFractionModel/voidFractionModel/voidFractionModel.H -------------------------------------------------------------------------------- /CFDEMresultRhoPimpleFoamTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/CFDEMresultRhoPimpleFoamTutorial.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/README.md -------------------------------------------------------------------------------- /pitzDalyWithCompressibleCFDEM.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/pitzDalyWithCompressibleCFDEM.m4v -------------------------------------------------------------------------------- /pitzDalyWithCompressibleCFDEM.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/pitzDalyWithCompressibleCFDEM.ogv -------------------------------------------------------------------------------- /rhoCfdemSolverPimpleScalar_Nusselt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/rhoCfdemSolverPimpleScalar_Nusselt.png -------------------------------------------------------------------------------- /rhoCfdemSolverPimpleScalar_pressureDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/rhoCfdemSolverPimpleScalar_pressureDrop.png -------------------------------------------------------------------------------- /rhoCfdemSolverPimpleScalar_temperatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/rhoCfdemSolverPimpleScalar_temperatures.png -------------------------------------------------------------------------------- /rhoCfdemSolverPimple_ErgunTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/rhoCfdemSolverPimple_ErgunTestMPI.png -------------------------------------------------------------------------------- /rhoCfdemSolverPimple_settlingTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/rhoCfdemSolverPimple_settlingTestMPI.png -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/Make/files -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/Make/options -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/UEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/compressibleContinuityErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/compressibleContinuityErrs.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/compressibleFixedFluxPressureHandling.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/compressibleFixedFluxPressureHandling.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/createFields.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/hEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/hEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/pEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/rhoCfdemSolverPimple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/rhoCfdemSolverPimple.C -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimple/rhoEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimple/rhoEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/Make/files -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/Make/options -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/UEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/compressibleContinuityErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/compressibleContinuityErrs.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/compressibleFixedFluxPressureHandling.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/compressibleFixedFluxPressureHandling.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/createFields.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/createIncompressibleRadiationModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/createIncompressibleRadiationModel.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/hEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/hEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/pEqn.H -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/rhoCfdemSolverPimpleScalar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/rhoCfdemSolverPimpleScalar.C -------------------------------------------------------------------------------- /solvers/compressible/rhoCfdemSolverPimpleScalar/rhoEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/solvers/compressible/rhoCfdemSolverPimpleScalar/rhoEqn.H -------------------------------------------------------------------------------- /sqBendLiqCompressibleCFDEM.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/sqBendLiqCompressibleCFDEM.m4v -------------------------------------------------------------------------------- /sqBendLiqCompressibleCFDEM.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/sqBendLiqCompressibleCFDEM.ogv -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/epsilon -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/p_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/p_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/RASProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/couplingProperties_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/couplingProperties_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties.water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/thermophysicalProperties.water -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/loaddata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/loaddata.m -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/rhoCfdemSolverPimple_ErgunTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/rhoCfdemSolverPimple_ErgunTestMPI.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/runOctave: -------------------------------------------------------------------------------- 1 | octave --no-gui totalPressureDrop.m 2 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/totalPressureDrop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/octave/totalPressureDrop.m -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/probes/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue_0.0005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue_0.0005.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue_0.0005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue_0.0005.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue_0.0005.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue_0.0005.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/steps_0p1s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/steps_0p1s -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/controlDict.foam -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/funkySetFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/funkySetFieldsDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/in.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/in.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump10000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump10000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump15000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump15000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump20000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/dump20000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/forces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/forces.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/restart/liggghts.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/restart/liggghts.restart -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/restart/liggghts.restartCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/restart/liggghts.restartCFDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/log_run_liggghts_init_DEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/log_run_liggghts_init_DEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/parDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/parDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/rhoCfdemSolverPimple_ErgunTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/ErgunMPI/rhoCfdemSolverPimple_ErgunTestMPI.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/alphat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/epsilon -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/omega -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/p_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/p_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/couplingProperties_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/couplingProperties_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/foo.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/CFDEMresultRhoPimpleFoamTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/CFDEMresultRhoPimpleFoamTutorial.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/in.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/in.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump10000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump10000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump15000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump15000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump20000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/dump20000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/forces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/forces.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/restart/liggghts.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/restart/liggghts.restart -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/restart/liggghts.restartCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/restart/liggghts.restartCFDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/log_run_liggghts_init_DEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/log_run_liggghts_init_DEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/cavity/parDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/cavity/parDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/alphat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/muTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/muTilda -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/p_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/p_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/CFD.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/couplingProperties_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/couplingProperties_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/foo.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/org/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/org/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/org/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/CFD/system/org/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/in.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/in.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/dump.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/dump.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/dump10000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/dump10000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/forces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/forces.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/restart/liggghts.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/restart/liggghts.restart -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/log_run_liggghts_init_DEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/log_run_liggghts_init_DEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/parDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/parDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/pitzDaly-noParticles-rhoCfdemSolverPimple-vs-rhoPimpleFoam.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/pitzDaly-noParticles-rhoCfdemSolverPimple-vs-rhoPimpleFoam.ogv -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/pitzDalyOF5-vs-rhoCfdemSolverPimple-Time0p1sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/pitzDaily/pitzDalyOF5-vs-rhoCfdemSolverPimple-Time0p1sec.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/nuSgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/nuSgs -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/p.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/p.backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/rho -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/sSmoothField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/sSmoothField -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/vSmoothField: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/vSmoothField -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/CFD.OpenFOAM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/CFD.blockMesh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/LESProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/LESProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/RASProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/couplingProperties_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/couplingProperties_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/particleTrackProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/particleTrackProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/octave/rhoCfdemSolverPimple_settlingTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/octave/rhoCfdemSolverPimple_settlingTestMPI.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/octave/settlingVelocity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/octave/settlingVelocity.m -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/backup/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/backup/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/backup/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/backup/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict.foam -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/controlDict_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/dump.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/dump.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/restart/liggghts.restartCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/restart/liggghts.restartCFDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/velocity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/DEM/post/velocity.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/lastTimeStep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/lastTimeStep.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/log_run_parallel_rhoCfdemSolverPimple_settlingTestMPI_CFDDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/log_run_parallel_rhoCfdemSolverPimple_settlingTestMPI_CFDDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/rhoCfdemSolverPimple_settlingTestMPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/rhoCfdemSolverPimple_settlingTestMPI.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/savedStateParaView.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/savedStateParaView.pvsm -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/settlingMPI-compressible.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/settlingTestMPI/settlingMPI-compressible.ogv -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/alphat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/epsilon -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/p_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/p_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/couplingProperties_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/couplingProperties_backup -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/foo.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/in.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/in.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump10000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump10000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump15000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump15000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump20000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/dump20000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/forces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/forces.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/restart/liggghts.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/restart/liggghts.restart -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/restart/liggghts.restartCFDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/restart/liggghts.restartCFDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/log_run_liggghts_init_DEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/log_run_liggghts_init_DEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/log_run_parallel_rhoCfdemSolverPimple_ErgunTestMPI_CFDDEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/parDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/parDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/sqBendLiqCompressibleCFDEM.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimple/sqBendLiq/sqBendLiqCompressibleCFDEM.ogv -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/Allrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/Allrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Ksl -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/T -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Temp -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Tsource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Tsource -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/U -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/Us -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/alphat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/epsilon -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/k -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/nut -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/rho -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/voidfraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/0/voidfraction -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/RASProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/g -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/faces -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/owner -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/polyMesh/points -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/foo.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/octave-workspace: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_Nusselt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_Nusselt.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_pressureDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_pressureDrop.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_temperatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/rhoCfdemSolverPimpleScalar_temperatures.png -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/runOctave: -------------------------------------------------------------------------------- 1 | octave --no-gui totalPressureDropAndNusselt.m 2 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/totalPressureDropAndNusselt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/totalPressureDropAndNusselt.m -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/���V: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/octave/�Q���U: -------------------------------------------------------------------------------- 1 | Octave-1-L -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/probes/0/Temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/probes/0/Temp -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/probes/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/probes/0/p -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_inlet/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_outlet/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/postProcessing/volFlow_wall/0/surfaceFieldValue.dat -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/savedState.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/savedState.pvsm -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/controlDict.foam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/couplingParameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/couplingParameters -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/CFD/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/in.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/in.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/in.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/log.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/log.liggghts -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump.liggghts_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump.liggghts_init -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump160000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump160000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump180000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump180000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump200000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump200000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump220000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump220000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump240000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump240000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump260000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump260000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump280000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump280000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump300000.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/dump300000.liggghts_run -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/restart/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/restart/liggghts.restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/restart/liggghts.restart -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/thermo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/DEM/post/thermo.txt -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/log_run_liggghts_init_DEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/log_run_liggghts_init_DEM -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/parCFDDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/parCFDDEMrun.sh -------------------------------------------------------------------------------- /tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/parDEMrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonkomoLLC/CFDEM_compressible/HEAD/tutorials/compressible/rhoCfdemSolverPimpleScalar/packedBedTemp/parDEMrun.sh --------------------------------------------------------------------------------