├── .clang-format ├── .gitignore ├── LICENSE ├── README.md ├── etc ├── bashrc ├── compile_LIGGGHTS.sh ├── compile_LIGGGHTS_lib.sh ├── compile_MSP_CFDEMcoupling_solver.sh ├── compile_MSP_CFDEMcoupling_src.sh ├── libs │ └── libs_5.x ├── package_liggghts_list.txt ├── package_msp_cfdem_lib_list.txt ├── package_msp_cfdem_solver_list.txt └── package_undo_liggghts_list.txt ├── solvers ├── msp_cfdem_solver_IB │ ├── Make │ │ ├── files │ │ └── options │ ├── create_fields.h │ └── msp_cfdem_solver_IB.C ├── msp_cfdem_solver_IB_opti │ ├── Make │ │ ├── files │ │ └── options │ ├── create_fields.h │ └── msp_cfdem_solver_IB_opti.C ├── msp_cfdem_solver_impl_FD │ ├── Make │ │ ├── files │ │ └── options │ ├── createFields.H │ └── msp_cfdem_solver_impl_FD.C ├── msp_cfdem_solver_mix │ ├── Make │ │ ├── files │ │ └── options │ ├── continuityErrorPhiPU.H │ ├── createFields.H │ └── msp_cfdem_solver_mix.C ├── msp_cfdem_solver_piso │ ├── Make │ │ ├── files │ │ └── options │ ├── continuityErrorPhiPU.h │ ├── create_fields.h │ ├── fixedFluxPressureHandling.h │ └── msp_cfdem_solver_piso.C ├── msp_cfdem_solver_semi │ ├── Make │ │ ├── files │ │ └── options │ ├── continuityErrorPhiPU.h │ ├── create_fields.h │ ├── fixedFluxPressureHandling.h │ └── msp_cfdem_solver_semi.C ├── msp_cfdem_solver_semi_opti │ ├── Make │ │ ├── files │ │ └── options │ ├── continuityErrorPhiPU.H │ ├── createFields.H │ └── msp_cfdem_solver_semi_opti.C ├── msp_ico_foam │ ├── Make │ │ ├── files │ │ └── options │ ├── create_fields.h │ └── msp_ico_foam.C ├── msp_pimple_foam │ ├── Make │ │ ├── files │ │ └── options │ ├── createFields.H │ └── msp_pimple_foam.C └── msp_piso_foam │ ├── Make │ ├── files │ └── options │ ├── createFields.H │ └── msp_piso_foam.C ├── src ├── Make │ ├── files │ └── options ├── base │ ├── logging.h │ ├── memory │ │ ├── ref_counter.h │ │ ├── tmp.h │ │ └── x_alloc.h │ ├── run_time_selection_tables.h │ ├── string_utils.h │ ├── tensor │ │ ├── expression.h │ │ └── tensor.h │ ├── test │ │ ├── test_alloc │ │ │ ├── CMakeLists.txt │ │ │ └── main.cc │ │ ├── test_tensor │ │ │ ├── CMakeLists.txt │ │ │ └── main.cc │ │ └── test_tmp │ │ │ ├── CMakeLists.txt │ │ │ └── main.cc │ ├── traits │ │ └── traits.h │ └── type_cast.h ├── cfdem_tools │ ├── cfdem_tools.h │ └── check_model_type.C ├── cloud │ ├── cfdem_base.C │ ├── cfdem_base.h │ ├── cfdem_cloud.C │ ├── cfdem_cloud.h │ ├── cfdem_cloud_IB.C │ ├── cfdem_cloud_IB.h │ ├── cfdem_cloud_IB_opti.C │ ├── cfdem_cloud_IB_opti.h │ ├── cfdem_cloud_impl_fd.C │ ├── cfdem_cloud_impl_fd.h │ ├── cfdem_cloud_mix.C │ ├── cfdem_cloud_mix.h │ ├── cfdem_cloud_semi.C │ ├── cfdem_cloud_semi.h │ ├── coupling_properties.C │ ├── coupling_properties.h │ ├── of_version.h │ └── particle_cloud.h └── sub_model │ ├── averaging_model │ ├── averaging_model-inl.h │ ├── averaging_model.C │ ├── averaging_model.h │ ├── dense.C │ ├── dense.h │ ├── dilute.C │ ├── dilute.h │ ├── mix_dense.C │ ├── mix_dense.h │ ├── no_averaging_model.C │ └── no_averaging_model.h │ ├── data_exchange_model │ ├── data_exchange_model.C │ ├── data_exchange_model.h │ ├── two_way_mpi.C │ └── two_way_mpi.h │ ├── force_model │ ├── Archimedes.C │ ├── Archimedes.h │ ├── Archimedes_IB.C │ ├── Archimedes_IB.h │ ├── Basset_force.C │ ├── Basset_force.h │ ├── Mei_lift_force.C │ ├── Mei_lift_force.h │ ├── Shirgaonkar_IB.C │ ├── Shirgaonkar_IB.h │ ├── drag_force.C │ ├── drag_force.h │ ├── force_model.C │ ├── force_model.h │ ├── force_sub_model.C │ ├── force_sub_model.h │ ├── global_force.C │ ├── global_force.h │ ├── grad_p_force.C │ ├── grad_p_force.h │ ├── mix_Basset_force.C │ ├── mix_Basset_force.h │ ├── mix_Mei_lift_force.C │ ├── mix_Mei_lift_force.h │ ├── mix_drag_force.C │ ├── mix_drag_force.h │ ├── mix_global_force.C │ ├── mix_global_force.h │ ├── mix_grad_p_force.C │ ├── mix_grad_p_force.h │ ├── mix_virtual_mass_force.C │ ├── mix_virtual_mass_force.h │ ├── mix_visc_force.C │ ├── mix_visc_force.h │ ├── virtual_mass_force.C │ ├── virtual_mass_force.h │ ├── visc_force.C │ └── visc_force.h │ ├── liggghts_command_model │ ├── liggghts_command_model.C │ ├── liggghts_command_model.h │ ├── run_liggghts.C │ └── run_liggghts.h │ ├── locate_model │ ├── engine_search.C │ ├── engine_search.h │ ├── engine_search_IB.C │ ├── engine_search_IB.h │ ├── engine_search_mix.C │ ├── engine_search_mix.h │ ├── locate_model.C │ └── locate_model.h │ ├── mom_couple_model │ ├── explicit_couple.C │ ├── explicit_couple.h │ ├── implicit_couple.C │ ├── implicit_couple.h │ ├── mom_couple_model.C │ └── mom_couple_model.h │ └── void_fraction_model │ ├── IB_void_fraction.C │ ├── IB_void_fraction.h │ ├── centre_void_fraction.C │ ├── centre_void_fraction.h │ ├── divided_void_fraction.C │ ├── divided_void_fraction.h │ ├── mix_void_fraction.C │ ├── mix_void_fraction.h │ ├── no_void_fraction.C │ ├── no_void_fraction.h │ ├── void_fraction_model.C │ └── void_fraction_model.h ├── test ├── .gitignore ├── liquid_solid_fluidized_bed │ ├── mesh_convergence_study │ │ ├── Abraham_1 │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Abraham_2 │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow_1 │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── Gidaspow_2 │ │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ ├── mix_semi │ │ ├── force_buoyancy+drag+vm │ │ │ └── Gidaspow │ │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── phiIB │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── dynamicMeshDict │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ │ └── run.sh │ │ └── force_buoyancy+drag │ │ │ └── Gidaspow │ │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ └── semi │ │ ├── force_buoyancy+drag+vm │ │ ├── Abraham │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Dallavalle │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── DiFelice │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SchillerNaumann │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SyamlalObrien │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Yang │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── all_run.sh │ │ ├── force_buoyancy+drag │ │ ├── Abraham │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Dallavalle │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── DiFelice │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SchillerNaumann │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SyamlalObrien │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Yang │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── all_run.sh │ │ ├── force_buoyancy+drag_dry_coeff │ │ ├── Abraham │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Dallavalle │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── DiFelice │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SchillerNaumann │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SyamlalObrien │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Yang │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── all_run.sh │ │ └── restitution_and_youngs │ │ └── postproc.m ├── liquid_solid_fluidized_bed_semi │ ├── force_buoyancy+drag+vm+lift │ │ ├── Abraham │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Dallavalle │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── DiFelice │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SchillerNaumann │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SyamlalObrien │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Yang │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── all_run.sh │ ├── force_buoyancy+drag+vm │ │ ├── Abraham │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Dallavalle │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── DiFelice │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Gidaspow │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SchillerNaumann │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── SyamlalObrien │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ ├── Yang │ │ │ ├── CFD │ │ │ │ ├── 0 │ │ │ │ │ ├── Ksl │ │ │ │ │ ├── U │ │ │ │ │ ├── Us │ │ │ │ │ ├── p │ │ │ │ │ ├── rho │ │ │ │ │ └── voidFraction │ │ │ │ ├── constant │ │ │ │ │ ├── LESProperties │ │ │ │ │ ├── RASProperties │ │ │ │ │ ├── couplingProperties │ │ │ │ │ ├── g │ │ │ │ │ ├── liggghtsCommands │ │ │ │ │ ├── transportProperties │ │ │ │ │ └── turbulenceProperties │ │ │ │ └── system │ │ │ │ │ ├── blockMeshDict │ │ │ │ │ ├── controlDict │ │ │ │ │ ├── decomposeParDict │ │ │ │ │ ├── fvSchemes │ │ │ │ │ └── fvSolution │ │ │ ├── DEM │ │ │ │ ├── in.liggghts_run │ │ │ │ └── meshes │ │ │ │ │ └── cyclinder.stl │ │ │ └── run.sh │ │ └── all_run.sh │ └── force_buoyancy+drag │ │ ├── Abraham │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── Dallavalle │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── DiFelice │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── Gidaspow │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── SchillerNaumann │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── SyamlalObrien │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ ├── Yang │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── LESProperties │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.liggghts_run │ │ │ └── meshes │ │ │ │ └── cyclinder.stl │ │ └── run.sh │ │ └── all_run.sh ├── nylon_ball_in_silicon_oil_tube │ ├── impl_FD │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── volumeFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ └── in.liggghts_run │ │ └── run.sh │ ├── mix_FD │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── volumeFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ └── in.liggghts_run │ │ └── run.sh │ ├── mix_semi │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ └── in.liggghts_run │ │ └── run.sh │ └── semi │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidFraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ └── in.liggghts_run │ │ └── run.sh ├── one_particle_sediment_Re280_IB │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ ├── res │ │ ├── position_particle_1.txt │ │ └── velocity_particle_1.txt │ └── run.sh ├── one_particle_sediment_Re41_IB │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ ├── res │ │ ├── position_particle_1.txt │ │ └── velocity_particle_1.txt │ └── run.sh ├── piping_in_gap_graded_soil │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidFraction │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.liggghts_run │ │ └── meshes │ │ │ └── cyclinder.stl │ └── run.sh ├── steel_ball_sedimentation │ ├── mix_semi │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ └── in.liggghts_run │ │ └── run.sh │ └── semi │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidFraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ └── in.liggghts_run │ │ └── run.sh ├── test_Ergun_gas_solid │ ├── mix_piso │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.init │ │ │ └── in.run │ │ └── run.sh │ └── mix_semi │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ ├── in.init │ │ └── in.run │ │ └── run.sh ├── test_Ergun_liquid_solid │ ├── mix_piso │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── Ksl │ │ │ │ ├── U │ │ │ │ ├── Us │ │ │ │ ├── p │ │ │ │ ├── rho │ │ │ │ └── voidFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ └── postproc.m │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ ├── in.init │ │ │ └── in.run │ │ └── run.sh │ └── mix_semi │ │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ ├── in.init │ │ └── in.run │ │ └── run.sh ├── test_msp_cfdem_solver_IB │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── pos.mat │ │ │ ├── postproc.m │ │ │ └── vel.mat │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ ├── res_public │ │ ├── position_particle_1.txt │ │ ├── position_particle_2.txt │ │ ├── velocity_particle_1.txt │ │ └── velocity_particle_2.txt │ └── run.sh ├── test_msp_cfdem_solver_IB_opti │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── pos.mat │ │ │ ├── postproc.m │ │ │ └── vel.mat │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ ├── res │ │ ├── position_particle_1.txt │ │ ├── position_particle_2.txt │ │ ├── velocity_particle_1.txt │ │ └── velocity_particle_2.txt │ └── run.sh ├── test_msp_cfdem_solver_impl_FD │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── pos.mat │ │ │ ├── postproc.m │ │ │ └── vel.mat │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ └── run.sh ├── test_msp_cfdem_solver_mix │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ ├── pos.mat │ │ │ ├── postproc.m │ │ │ └── vel.mat │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ └── run.sh ├── test_msp_cfdem_solver_piso │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── rho │ │ │ └── voidFraction │ │ ├── constant │ │ │ ├── LESProperties │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── particleTrackProperties │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.liggghts_run │ └── run.sh ├── two_particles_sediment_Glowinski │ ├── impl_FD │ │ ├── CFD │ │ │ ├── 0 │ │ │ │ ├── U │ │ │ │ ├── p │ │ │ │ ├── phiIB │ │ │ │ ├── rho │ │ │ │ └── volumeFraction │ │ │ ├── constant │ │ │ │ ├── RASProperties │ │ │ │ ├── couplingProperties │ │ │ │ ├── dynamicMeshDict │ │ │ │ ├── g │ │ │ │ ├── liggghtsCommands │ │ │ │ ├── transportProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── octave │ │ │ │ ├── pos_1_Apte.txt │ │ │ │ ├── pos_1_simulation.txt │ │ │ │ ├── pos_2_Apte.txt │ │ │ │ ├── pos_2_simulation.txt │ │ │ │ ├── postproc.m │ │ │ │ ├── vel_1_simulation.txt │ │ │ │ ├── vel_1_simulation_fine_mesh.txt │ │ │ │ ├── vel_2_simulation.txt │ │ │ │ ├── vel_2_simulation_fine_mesh.txt │ │ │ │ ├── vel_4.txt │ │ │ │ ├── vel_5.txt │ │ │ │ ├── vel_6.txt │ │ │ │ ├── vel_Apte_1.txt │ │ │ │ ├── vel_Apte_2.txt │ │ │ │ ├── vel_Idelsohn_1.txt │ │ │ │ └── vel_Idelsohn_2.txt │ │ │ └── system │ │ │ │ ├── blockMeshDict │ │ │ │ ├── controlDict │ │ │ │ ├── decomposeParDict │ │ │ │ ├── fvSchemes │ │ │ │ └── fvSolution │ │ ├── DEM │ │ │ └── in.liggghts_run │ │ └── run.sh │ └── mix_FD │ │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ ├── octave │ │ │ └── postproc.m │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ ├── DEM │ │ └── in.liggghts_run │ │ └── run.sh └── upward_seepage_new │ ├── mix │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidFraction │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.init │ │ └── in.run │ └── run.sh │ ├── mix_FD │ ├── CFD │ │ ├── 0 │ │ │ ├── U │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ └── in.run │ └── run.sh │ ├── mix_debug_A │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidFraction │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.init │ │ └── in.run │ └── run.sh │ ├── mix_debug_B │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── expForce │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidFraction │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.init │ │ └── in.run │ └── run.sh │ ├── mix_debug_Bfull │ ├── CFD │ │ ├── 0 │ │ │ ├── Ksl │ │ │ ├── U │ │ │ ├── Us │ │ │ ├── p │ │ │ ├── phiIB │ │ │ ├── rho │ │ │ ├── voidFraction │ │ │ └── volumeFraction │ │ ├── constant │ │ │ ├── RASProperties │ │ │ ├── couplingProperties │ │ │ ├── dynamicMeshDict │ │ │ ├── g │ │ │ ├── liggghtsCommands │ │ │ ├── transportProperties │ │ │ └── turbulenceProperties │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── DEM │ │ ├── in.init │ │ └── in.run │ └── run.sh │ └── mix_fmc │ ├── CFD │ ├── 0 │ │ ├── Ksl │ │ ├── U │ │ ├── Us │ │ ├── p │ │ ├── phiIB │ │ ├── rho │ │ ├── voidFraction │ │ └── volumeFraction │ ├── constant │ │ ├── RASProperties │ │ ├── couplingProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── liggghtsCommands │ │ ├── transportProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ ├── DEM │ ├── in.init │ └── in.run │ └── run.sh ├── tools ├── compile_LIGGGHTS.sh ├── compile_msp_cfdem_lib.sh ├── compile_msp_cfdem_solver.sh └── msp_cfdem_parallel_run.sh └── 基于CFD-DEM的颗粒流体两相耦合模型的研究_丁旺.pdf /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/README.md -------------------------------------------------------------------------------- /etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/bashrc -------------------------------------------------------------------------------- /etc/compile_LIGGGHTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/compile_LIGGGHTS.sh -------------------------------------------------------------------------------- /etc/compile_LIGGGHTS_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/compile_LIGGGHTS_lib.sh -------------------------------------------------------------------------------- /etc/compile_MSP_CFDEMcoupling_solver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/compile_MSP_CFDEMcoupling_solver.sh -------------------------------------------------------------------------------- /etc/compile_MSP_CFDEMcoupling_src.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/compile_MSP_CFDEMcoupling_src.sh -------------------------------------------------------------------------------- /etc/libs/libs_5.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/libs/libs_5.x -------------------------------------------------------------------------------- /etc/package_liggghts_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/package_liggghts_list.txt -------------------------------------------------------------------------------- /etc/package_msp_cfdem_lib_list.txt: -------------------------------------------------------------------------------- 1 | lib:src 2 | -------------------------------------------------------------------------------- /etc/package_msp_cfdem_solver_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/package_msp_cfdem_solver_list.txt -------------------------------------------------------------------------------- /etc/package_undo_liggghts_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/etc/package_undo_liggghts_list.txt -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB/create_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB/create_fields.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB/msp_cfdem_solver_IB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB/msp_cfdem_solver_IB.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB_opti/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB_opti/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB_opti/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB_opti/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB_opti/create_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB_opti/create_fields.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_IB_opti/msp_cfdem_solver_IB_opti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_IB_opti/msp_cfdem_solver_IB_opti.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_impl_FD/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_impl_FD/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_impl_FD/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_impl_FD/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_impl_FD/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_impl_FD/createFields.H -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_impl_FD/msp_cfdem_solver_impl_FD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_impl_FD/msp_cfdem_solver_impl_FD.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_mix/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_mix/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_mix/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_mix/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_mix/continuityErrorPhiPU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_mix/continuityErrorPhiPU.H -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_mix/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_mix/createFields.H -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_mix/msp_cfdem_solver_mix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_mix/msp_cfdem_solver_mix.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/continuityErrorPhiPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/continuityErrorPhiPU.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/create_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/create_fields.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/fixedFluxPressureHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/fixedFluxPressureHandling.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_piso/msp_cfdem_solver_piso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_piso/msp_cfdem_solver_piso.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/continuityErrorPhiPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/continuityErrorPhiPU.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/create_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/create_fields.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/fixedFluxPressureHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/fixedFluxPressureHandling.h -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi/msp_cfdem_solver_semi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi/msp_cfdem_solver_semi.C -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi_opti/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi_opti/Make/files -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi_opti/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi_opti/Make/options -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi_opti/continuityErrorPhiPU.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi_opti/continuityErrorPhiPU.H -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi_opti/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi_opti/createFields.H -------------------------------------------------------------------------------- /solvers/msp_cfdem_solver_semi_opti/msp_cfdem_solver_semi_opti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_cfdem_solver_semi_opti/msp_cfdem_solver_semi_opti.C -------------------------------------------------------------------------------- /solvers/msp_ico_foam/Make/files: -------------------------------------------------------------------------------- 1 | msp_ico_foam.C 2 | 3 | EXE=$(MSP_CFDEM_BIN_DIR)/mspIcoFoam -------------------------------------------------------------------------------- /solvers/msp_ico_foam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_ico_foam/Make/options -------------------------------------------------------------------------------- /solvers/msp_ico_foam/create_fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_ico_foam/create_fields.h -------------------------------------------------------------------------------- /solvers/msp_ico_foam/msp_ico_foam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_ico_foam/msp_ico_foam.C -------------------------------------------------------------------------------- /solvers/msp_pimple_foam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_pimple_foam/Make/files -------------------------------------------------------------------------------- /solvers/msp_pimple_foam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_pimple_foam/Make/options -------------------------------------------------------------------------------- /solvers/msp_pimple_foam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_pimple_foam/createFields.H -------------------------------------------------------------------------------- /solvers/msp_pimple_foam/msp_pimple_foam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_pimple_foam/msp_pimple_foam.C -------------------------------------------------------------------------------- /solvers/msp_piso_foam/Make/files: -------------------------------------------------------------------------------- 1 | msp_piso_foam.C 2 | 3 | EXE = $(MSP_CFDEM_BIN_DIR)/mspPisoFoam 4 | -------------------------------------------------------------------------------- /solvers/msp_piso_foam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_piso_foam/Make/options -------------------------------------------------------------------------------- /solvers/msp_piso_foam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_piso_foam/createFields.H -------------------------------------------------------------------------------- /solvers/msp_piso_foam/msp_piso_foam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/solvers/msp_piso_foam/msp_piso_foam.C -------------------------------------------------------------------------------- /src/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/Make/files -------------------------------------------------------------------------------- /src/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/Make/options -------------------------------------------------------------------------------- /src/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/logging.h -------------------------------------------------------------------------------- /src/base/memory/ref_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/memory/ref_counter.h -------------------------------------------------------------------------------- /src/base/memory/tmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/memory/tmp.h -------------------------------------------------------------------------------- /src/base/memory/x_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/memory/x_alloc.h -------------------------------------------------------------------------------- /src/base/run_time_selection_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/run_time_selection_tables.h -------------------------------------------------------------------------------- /src/base/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/string_utils.h -------------------------------------------------------------------------------- /src/base/tensor/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/tensor/expression.h -------------------------------------------------------------------------------- /src/base/tensor/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/tensor/tensor.h -------------------------------------------------------------------------------- /src/base/test/test_alloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_alloc/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/test/test_alloc/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_alloc/main.cc -------------------------------------------------------------------------------- /src/base/test/test_tensor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_tensor/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/test/test_tensor/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_tensor/main.cc -------------------------------------------------------------------------------- /src/base/test/test_tmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_tmp/CMakeLists.txt -------------------------------------------------------------------------------- /src/base/test/test_tmp/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/test/test_tmp/main.cc -------------------------------------------------------------------------------- /src/base/traits/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/traits/traits.h -------------------------------------------------------------------------------- /src/base/type_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/base/type_cast.h -------------------------------------------------------------------------------- /src/cfdem_tools/cfdem_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cfdem_tools/cfdem_tools.h -------------------------------------------------------------------------------- /src/cfdem_tools/check_model_type.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cfdem_tools/check_model_type.C -------------------------------------------------------------------------------- /src/cloud/cfdem_base.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_base.C -------------------------------------------------------------------------------- /src/cloud/cfdem_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_base.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_IB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_IB.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_IB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_IB.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_IB_opti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_IB_opti.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_IB_opti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_IB_opti.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_impl_fd.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_impl_fd.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_impl_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_impl_fd.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_mix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_mix.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_mix.h -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_semi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_semi.C -------------------------------------------------------------------------------- /src/cloud/cfdem_cloud_semi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/cfdem_cloud_semi.h -------------------------------------------------------------------------------- /src/cloud/coupling_properties.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/coupling_properties.C -------------------------------------------------------------------------------- /src/cloud/coupling_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/coupling_properties.h -------------------------------------------------------------------------------- /src/cloud/of_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/of_version.h -------------------------------------------------------------------------------- /src/cloud/particle_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/cloud/particle_cloud.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/averaging_model-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/averaging_model-inl.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/averaging_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/averaging_model.C -------------------------------------------------------------------------------- /src/sub_model/averaging_model/averaging_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/averaging_model.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/dense.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/dense.C -------------------------------------------------------------------------------- /src/sub_model/averaging_model/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/dense.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/dilute.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/dilute.C -------------------------------------------------------------------------------- /src/sub_model/averaging_model/dilute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/dilute.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/mix_dense.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/mix_dense.C -------------------------------------------------------------------------------- /src/sub_model/averaging_model/mix_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/mix_dense.h -------------------------------------------------------------------------------- /src/sub_model/averaging_model/no_averaging_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/no_averaging_model.C -------------------------------------------------------------------------------- /src/sub_model/averaging_model/no_averaging_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/averaging_model/no_averaging_model.h -------------------------------------------------------------------------------- /src/sub_model/data_exchange_model/data_exchange_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/data_exchange_model/data_exchange_model.C -------------------------------------------------------------------------------- /src/sub_model/data_exchange_model/data_exchange_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/data_exchange_model/data_exchange_model.h -------------------------------------------------------------------------------- /src/sub_model/data_exchange_model/two_way_mpi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/data_exchange_model/two_way_mpi.C -------------------------------------------------------------------------------- /src/sub_model/data_exchange_model/two_way_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/data_exchange_model/two_way_mpi.h -------------------------------------------------------------------------------- /src/sub_model/force_model/Archimedes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Archimedes.C -------------------------------------------------------------------------------- /src/sub_model/force_model/Archimedes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Archimedes.h -------------------------------------------------------------------------------- /src/sub_model/force_model/Archimedes_IB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Archimedes_IB.C -------------------------------------------------------------------------------- /src/sub_model/force_model/Archimedes_IB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Archimedes_IB.h -------------------------------------------------------------------------------- /src/sub_model/force_model/Basset_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Basset_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/Basset_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Basset_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/Mei_lift_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Mei_lift_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/Mei_lift_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Mei_lift_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/Shirgaonkar_IB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Shirgaonkar_IB.C -------------------------------------------------------------------------------- /src/sub_model/force_model/Shirgaonkar_IB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/Shirgaonkar_IB.h -------------------------------------------------------------------------------- /src/sub_model/force_model/drag_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/drag_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/drag_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/drag_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/force_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/force_model.C -------------------------------------------------------------------------------- /src/sub_model/force_model/force_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/force_model.h -------------------------------------------------------------------------------- /src/sub_model/force_model/force_sub_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/force_sub_model.C -------------------------------------------------------------------------------- /src/sub_model/force_model/force_sub_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/force_sub_model.h -------------------------------------------------------------------------------- /src/sub_model/force_model/global_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/global_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/global_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/global_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/grad_p_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/grad_p_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/grad_p_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/grad_p_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_Basset_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_Basset_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_Basset_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_Basset_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_Mei_lift_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_Mei_lift_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_Mei_lift_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_Mei_lift_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_drag_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_drag_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_drag_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_drag_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_global_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_global_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_global_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_global_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_grad_p_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_grad_p_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_grad_p_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_grad_p_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_virtual_mass_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_virtual_mass_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_virtual_mass_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_virtual_mass_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_visc_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_visc_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/mix_visc_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/mix_visc_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/virtual_mass_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/virtual_mass_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/virtual_mass_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/virtual_mass_force.h -------------------------------------------------------------------------------- /src/sub_model/force_model/visc_force.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/visc_force.C -------------------------------------------------------------------------------- /src/sub_model/force_model/visc_force.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/force_model/visc_force.h -------------------------------------------------------------------------------- /src/sub_model/liggghts_command_model/liggghts_command_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/liggghts_command_model/liggghts_command_model.C -------------------------------------------------------------------------------- /src/sub_model/liggghts_command_model/liggghts_command_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/liggghts_command_model/liggghts_command_model.h -------------------------------------------------------------------------------- /src/sub_model/liggghts_command_model/run_liggghts.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/liggghts_command_model/run_liggghts.C -------------------------------------------------------------------------------- /src/sub_model/liggghts_command_model/run_liggghts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/liggghts_command_model/run_liggghts.h -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search.C -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search.h -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search_IB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search_IB.C -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search_IB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search_IB.h -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search_mix.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search_mix.C -------------------------------------------------------------------------------- /src/sub_model/locate_model/engine_search_mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/engine_search_mix.h -------------------------------------------------------------------------------- /src/sub_model/locate_model/locate_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/locate_model.C -------------------------------------------------------------------------------- /src/sub_model/locate_model/locate_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/locate_model/locate_model.h -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/explicit_couple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/explicit_couple.C -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/explicit_couple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/explicit_couple.h -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/implicit_couple.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/implicit_couple.C -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/implicit_couple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/implicit_couple.h -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/mom_couple_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/mom_couple_model.C -------------------------------------------------------------------------------- /src/sub_model/mom_couple_model/mom_couple_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/mom_couple_model/mom_couple_model.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/IB_void_fraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/IB_void_fraction.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/IB_void_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/IB_void_fraction.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/centre_void_fraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/centre_void_fraction.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/centre_void_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/centre_void_fraction.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/divided_void_fraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/divided_void_fraction.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/divided_void_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/divided_void_fraction.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/mix_void_fraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/mix_void_fraction.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/mix_void_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/mix_void_fraction.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/no_void_fraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/no_void_fraction.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/no_void_fraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/no_void_fraction.h -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/void_fraction_model.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/void_fraction_model.C -------------------------------------------------------------------------------- /src/sub_model/void_fraction_model/void_fraction_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/src/sub_model/void_fraction_model/void_fraction_model.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/mesh_convergence_study/Abraham_1/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/mesh_convergence_study/Abraham_1/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/mesh_convergence_study/Abraham_2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/mesh_convergence_study/Abraham_2/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag+vm/Yang/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag+vm/Yang/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag+vm/all_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag+vm/all_run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Abraham/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Abraham/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/Ksl -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/U -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/Us -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/p -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/CFD/0/rho -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/Yang/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/all_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/force_buoyancy+drag/all_run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed/semi/restitution_and_youngs/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed/semi/restitution_and_youngs/postproc.m -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag+vm/Yang/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag+vm/Yang/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag+vm/all_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag+vm/all_run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Abraham/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Abraham/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/Ksl -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/U -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/Us -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/p -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/CFD/0/rho -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/Yang/run.sh -------------------------------------------------------------------------------- /test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/all_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/liquid_solid_fluidized_bed_semi/force_buoyancy+drag/all_run.sh -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/U -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/p -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/impl_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/impl_FD/run.sh -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/U -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/p -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_FD/run.sh -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/U -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/Us -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/p -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/phiIB -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/rho -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/constant/g -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/mix_semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/mix_semi/run.sh -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/U -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/Us -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/p -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/rho -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/LESProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/LESProperties -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/g -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/nylon_ball_in_silicon_oil_tube/semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/nylon_ball_in_silicon_oil_tube/semi/run.sh -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/0/U -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/0/p -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/0/phiIB -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/0/rho -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/g -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/system/controlDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/res/position_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/res/position_particle_1.txt -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/res/velocity_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/res/velocity_particle_1.txt -------------------------------------------------------------------------------- /test/one_particle_sediment_Re280_IB/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re280_IB/run.sh -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/0/U -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/0/p -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/0/phiIB -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/0/rho -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/g -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/system/controlDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/res/position_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/res/position_particle_1.txt -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/res/velocity_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/res/velocity_particle_1.txt -------------------------------------------------------------------------------- /test/one_particle_sediment_Re41_IB/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/one_particle_sediment_Re41_IB/run.sh -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/Ksl -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/U -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/Us -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/p -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/phiIB -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/rho -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/g -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/system/controlDict -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/DEM/meshes/cyclinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/DEM/meshes/cyclinder.stl -------------------------------------------------------------------------------- /test/piping_in_gap_graded_soil/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/piping_in_gap_graded_soil/run.sh -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/U -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/Us -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/p -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/phiIB -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/rho -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/constant/g -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/mix_semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/mix_semi/run.sh -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/U -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/Us -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/p -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/rho -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/LESProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/LESProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/g -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/steel_ball_sedimentation/semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/steel_ball_sedimentation/semi/run.sh -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/Ksl -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/U -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/Us -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/p -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/rho -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/g -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/DEM/in.init -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/DEM/in.run -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_piso/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_piso/run.sh -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/U -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/Us -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/p -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/rho -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/g -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/DEM/in.init -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/DEM/in.run -------------------------------------------------------------------------------- /test/test_Ergun_gas_solid/mix_semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_gas_solid/mix_semi/run.sh -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/Ksl -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/U -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/Us -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/p -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/rho -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/constant/g -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/DEM/in.init -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/DEM/in.run -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_piso/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_piso/run.sh -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/Ksl -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/U -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/Us -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/p -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/rho -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/constant/g -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/DEM/in.init -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/DEM/in.run -------------------------------------------------------------------------------- /test/test_Ergun_liquid_solid/mix_semi/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_Ergun_liquid_solid/mix_semi/run.sh -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/0/U -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/0/p -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/0/phiIB -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/0/rho -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/g -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/octave/pos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/octave/pos.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/octave/vel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/octave/vel.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/res_public/position_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/res_public/position_particle_1.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/res_public/position_particle_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/res_public/position_particle_2.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/res_public/velocity_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/res_public/velocity_particle_1.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/res_public/velocity_particle_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/res_public/velocity_particle_2.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB/run.sh -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/0/U -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/0/p -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/0/phiIB -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/0/rho -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/g -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/octave/pos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/octave/pos.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/octave/vel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/octave/vel.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/res/position_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/res/position_particle_1.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/res/position_particle_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/res/position_particle_2.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/res/velocity_particle_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/res/velocity_particle_1.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/res/velocity_particle_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/res/velocity_particle_2.txt -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_IB_opti/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_IB_opti/run.sh -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/0/U -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/0/p -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/octave/pos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/octave/pos.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/octave/vel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/octave/vel.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_impl_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_impl_FD/run.sh -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/0/U -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/0/p -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/0/phiIB -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/0/rho -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/g -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/octave/pos.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/octave/pos.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/octave/vel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/octave/vel.mat -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_mix/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_mix/run.sh -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/Ksl -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/U -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/Us -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/p -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/rho -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/LESProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/LESProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/g -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/particleTrackProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/particleTrackProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/system/controlDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/test_msp_cfdem_solver_piso/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/test_msp_cfdem_solver_piso/run.sh -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/0/U -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/0/p -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_4.txt -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_5.txt -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/octave/vel_6.txt -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/impl_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/impl_FD/run.sh -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/0/U -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/0/p -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/octave/postproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/octave/postproc.m -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/DEM/in.liggghts_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/DEM/in.liggghts_run -------------------------------------------------------------------------------- /test/two_particles_sediment_Glowinski/mix_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/two_particles_sediment_Glowinski/mix_FD/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/Ksl -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/Us -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/DEM/in.init -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_FD/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_FD/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/Ksl -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/Us -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/DEM/in.init -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_A/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_A/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/Ksl -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/Us -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/expForce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/expForce -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/DEM/in.init -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_B/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_B/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/Ksl -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/Us -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/DEM/in.init -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_debug_Bfull/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_debug_Bfull/run.sh -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/Ksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/Ksl -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/U -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/Us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/Us -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/p -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/phiIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/phiIB -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/rho -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/voidFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/voidFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/0/volumeFraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/0/volumeFraction -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/RASProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/RASProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/couplingProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/couplingProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/dynamicMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/g -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/liggghtsCommands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/liggghtsCommands -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/transportProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/constant/turbulenceProperties -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/system/blockMeshDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/system/controlDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/system/decomposeParDict -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/system/fvSchemes -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/CFD/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/CFD/system/fvSolution -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/DEM/in.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/DEM/in.init -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/DEM/in.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/DEM/in.run -------------------------------------------------------------------------------- /test/upward_seepage_new/mix_fmc/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/test/upward_seepage_new/mix_fmc/run.sh -------------------------------------------------------------------------------- /tools/compile_LIGGGHTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/tools/compile_LIGGGHTS.sh -------------------------------------------------------------------------------- /tools/compile_msp_cfdem_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/tools/compile_msp_cfdem_lib.sh -------------------------------------------------------------------------------- /tools/compile_msp_cfdem_solver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/tools/compile_msp_cfdem_solver.sh -------------------------------------------------------------------------------- /tools/msp_cfdem_parallel_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/tools/msp_cfdem_parallel_run.sh -------------------------------------------------------------------------------- /基于CFD-DEM的颗粒流体两相耦合模型的研究_丁旺.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DwwWxx/MSP-CFDEMcoupling/HEAD/基于CFD-DEM的颗粒流体两相耦合模型的研究_丁旺.pdf --------------------------------------------------------------------------------