├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── banner.txt ├── doc └── tutorial │ ├── beamercolorthememetropolis.sty │ ├── beamerfontthememetropolis.sty │ ├── beamerinnerthememetropolis.sty │ ├── beamerouterthememetropolis.sty │ ├── beamerthememetropolis.sty │ ├── figs │ └── d2q9.jpg │ ├── pgfplotsthemetol.sty │ ├── src │ ├── julia-setup.tex │ └── notation.tex │ ├── tutorial.pdf │ └── tutorial.tex ├── example_sims ├── 2phase │ └── 2phase.yaml ├── couette │ └── couette_velocity-profile.yaml ├── free-surface │ ├── dam │ │ ├── dam.yaml │ │ ├── dam_bingham.yaml │ │ ├── dam_bingham2.yaml │ │ ├── dam_bingham3.yaml │ │ ├── dam_bingham4.yaml │ │ ├── dam_with_obs.yaml │ │ ├── dam_with_obs2.yaml │ │ ├── dam_with_obs3.yaml │ │ ├── dam_with_obs4.yaml │ │ └── dam_with_obs5.yaml │ ├── fill_cavity.yaml │ ├── fill_cavity2.yaml │ ├── fill_cavity3.yaml │ ├── fill_cavity4.yaml │ └── pipe │ │ ├── pipe.yaml │ │ ├── pipe2.yaml │ │ ├── pipe2g-32.yaml │ │ ├── pipe2g.yaml │ │ ├── pipe3.yaml │ │ ├── pipe3g-32.yaml │ │ ├── pipe3g-32_b-000010.yaml │ │ ├── pipe3g-32_b-000025.yaml │ │ ├── pipe3g.yaml │ │ ├── pipe4.yaml │ │ ├── pipe4g.yaml │ │ ├── pipe_with_obs.yaml │ │ ├── pipeg.yaml │ │ ├── pipeg_nu-0050.yaml │ │ └── tow.yaml ├── lid │ ├── bingham │ │ ├── bingham-lid_bn001.yaml │ │ ├── bingham-lid_bn010.yaml │ │ └── bingham-lid_bn100.yaml │ └── lid.yaml └── poiseuille │ ├── poiseuille_pressure-contours.yaml │ └── poiseuille_velocity-profile.yaml ├── inc ├── LBXFlow.jl ├── accessors.jl ├── analytical.jl ├── api.jl ├── bcs │ ├── mass.jl │ └── vprofs.jl ├── boundary.jl ├── col │ ├── bgk.jl │ ├── collision.jl │ ├── constitutive.jl │ ├── entropic.jl │ ├── equilibrium.jl │ ├── filtering.jl │ ├── forcing.jl │ ├── forcing0.jl │ ├── freecol.jl │ ├── m2phase.jl │ ├── modcol.jl │ ├── mrt.jl │ ├── mrt_matrices.jl │ ├── pmodcol.jl │ └── stdcol.jl ├── convergence.jl ├── debug.jl ├── entropy.jl ├── io │ ├── animate.jl │ ├── animate0.jl │ ├── readwrite.jl │ └── sample.jl ├── lattice.jl ├── lbxio.jl ├── multiscale.jl ├── numerics.jl ├── obstacle.jl ├── profile.jl ├── sim │ ├── adapt.jl │ ├── lazy.jl │ ├── recolor.jl │ ├── simtypes.jl │ ├── simulate.jl │ └── tracking.jl └── stability.jl ├── lbxflow.jl ├── publication_sims ├── archive │ ├── elbm │ │ ├── elbm_Re2000.yaml │ │ ├── elbm_Re5000.yaml │ │ └── elbm_Re7500.yaml │ ├── filter │ │ ├── median-filter_Re2000.yaml │ │ ├── median-filter_Re5000.yaml │ │ └── median-filter_Re7500.yaml │ ├── poise │ │ ├── chen │ │ │ ├── explicit │ │ │ │ ├── 000000.yaml │ │ │ │ ├── 000004.yaml │ │ │ │ ├── 000008.yaml │ │ │ │ └── 000012.yaml │ │ │ └── implicit │ │ │ │ ├── 000000.yaml │ │ │ │ ├── 000004.yaml │ │ │ │ ├── 000008.yaml │ │ │ │ └── 000012.yaml │ │ └── wang │ │ │ ├── explicit │ │ │ ├── 0000.yaml │ │ │ ├── 0001.yaml │ │ │ ├── 0005.yaml │ │ │ └── 0010.yaml │ │ │ └── implicit │ │ │ ├── 0000.yaml │ │ │ ├── 0001.yaml │ │ │ ├── 0005.yaml │ │ │ └── 0010.yaml │ └── power_law │ │ ├── 050.yaml │ │ ├── 075.yaml │ │ ├── 100.yaml │ │ ├── 125.yaml │ │ ├── 150.yaml │ │ └── 175.yaml ├── bgk_v_mrt │ └── poise │ │ ├── 001 │ │ ├── bgk │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ ├── mrt │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ └── svec │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ ├── 002 │ │ ├── bgk │ │ │ ├── re-003_bn-0025.yaml │ │ │ ├── re-010_bn-0025.yaml │ │ │ ├── re-100_bn-0025.yaml │ │ │ └── re-500_bn-0025.yaml │ │ ├── mrt │ │ │ ├── re-003_bn-0025.yaml │ │ │ ├── re-010_bn-0025.yaml │ │ │ ├── re-100_bn-0025.yaml │ │ │ └── re-500_bn-0025.yaml │ │ └── svec │ │ │ ├── re-003_bn-0025.yaml │ │ │ ├── re-010_bn-0025.yaml │ │ │ ├── re-100_bn-0025.yaml │ │ │ └── re-500_bn-0025.yaml │ │ ├── 003 │ │ ├── bgk │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ └── mrt │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ ├── 004 │ │ ├── bgk │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ └── 000012.yaml │ │ └── mrt │ │ │ ├── 000000.yaml │ │ │ ├── 000004.yaml │ │ │ ├── 000008.yaml │ │ │ ├── 000012.yaml │ │ │ ├── 000016.yaml │ │ │ └── 000020.yaml │ │ ├── 005 │ │ ├── bgk │ │ │ ├── 02.yaml │ │ │ ├── 04.yaml │ │ │ ├── 06.yaml │ │ │ └── 08.yaml │ │ └── mrt │ │ │ ├── 02.yaml │ │ │ ├── 04.yaml │ │ │ ├── 06.yaml │ │ │ └── 08.yaml │ │ └── 006 │ │ ├── bgk │ │ ├── 000000.yaml │ │ ├── 000004.yaml │ │ ├── 000008.yaml │ │ ├── 000012.yaml │ │ ├── 000024.yaml │ │ └── 000036.yaml │ │ ├── mrt │ │ ├── 000000.yaml │ │ ├── 000004.yaml │ │ ├── 000008.yaml │ │ ├── 000012.yaml │ │ ├── 000024.yaml │ │ └── 000036.yaml │ │ └── svec │ │ ├── 000000.yaml │ │ ├── 000004.yaml │ │ ├── 000008.yaml │ │ ├── 000012.yaml │ │ ├── 000024.yaml │ │ └── 000036.yaml ├── bingham_channel │ ├── base │ │ ├── re-003_bn-0025.yaml │ │ ├── re-010_bn-0025.yaml │ │ ├── re-050_bn-0001.yaml │ │ ├── re-050_bn-0005.yaml │ │ ├── re-050_bn-0050.yaml │ │ ├── re-050_bn-0500.yaml │ │ └── re-100_bn-0025.yaml │ ├── cavity │ │ ├── re-003_bn-0025.yaml │ │ ├── re-010_bn-0025.yaml │ │ ├── re-050_bn-0001.yaml │ │ ├── re-050_bn-0005.yaml │ │ ├── re-050_bn-0050.yaml │ │ ├── re-050_bn-0500.yaml │ │ └── re-100_bn-0025.yaml │ ├── expand │ │ ├── re-003_bn-0025.yaml │ │ ├── re-010_bn-0025.yaml │ │ ├── re-050_bn-0001.yaml │ │ ├── re-050_bn-0005.yaml │ │ ├── re-050_bn-0050.yaml │ │ ├── re-050_bn-0500.yaml │ │ └── re-100_bn-0025.yaml │ └── notch │ │ ├── re-003_bn-0025.yaml │ │ ├── re-010_bn-0025.yaml │ │ ├── re-050_bn-0001.yaml │ │ ├── re-050_bn-0005.yaml │ │ ├── re-050_bn-0050.yaml │ │ ├── re-050_bn-0500.yaml │ │ └── re-100_bn-0025.yaml ├── bingham_lid │ ├── 200 │ │ ├── filter │ │ │ ├── filter_Re5000_tau004_200grid.yaml │ │ │ ├── filter_Re5000_tau012_200grid.yaml │ │ │ └── filter_Re7500_tau004_200grid.yaml │ │ ├── mrt │ │ │ ├── mrt_Re5000_tau004_200grid.yaml │ │ │ ├── mrt_Re5000_tau012_200grid.yaml │ │ │ └── mrt_Re7500_tau004_200grid.yaml │ │ ├── svec │ │ │ ├── svec_Re5000_tau004_200grid.yaml │ │ │ ├── svec_Re5000_tau008_200grid.yaml │ │ │ ├── svec_Re5000_tau012_200grid.yaml │ │ │ └── svec_Re7500_tau004_200grid.yaml │ │ └── unregulated │ │ │ ├── unregulated_Re5000_tau004_200grid.yaml │ │ │ ├── unregulated_Re5000_tau008_200grid.yaml │ │ │ ├── unregulated_Re5000_tau012_200grid.yaml │ │ │ └── unregulated_Re7500_tau004_200grid.yaml │ ├── HL │ │ └── HL_Re2000_tau004.yaml │ ├── chen │ │ ├── chen_bingham_Re100_Bn-hundredth.yaml │ │ ├── chen_bingham_Re100_Bn-one.yaml │ │ └── chen_bingham_Re100_Bn-tenth.yaml │ ├── filter │ │ ├── filter_Re10000_tau004.yaml │ │ ├── filter_Re15000_tau004.yaml │ │ ├── filter_Re2000_tau004.yaml │ │ ├── filter_Re5000_tau004.yaml │ │ ├── filter_Re5000_tau008.yaml │ │ ├── filter_Re5000_tau012.yaml │ │ ├── filter_Re5000_tau016.yaml │ │ └── filter_Re7500_tau004.yaml │ ├── mitsoulis │ │ ├── mitsoulis_Re0_tau2.yaml │ │ └── mitsoulis_Re0_tau2_tryingdiffninj.yaml │ ├── mrt │ │ ├── mrt_Re10000_tau004.yaml │ │ ├── mrt_Re15000_tau004.yaml │ │ ├── mrt_Re2000_tau004.yaml │ │ ├── mrt_Re5000_tau004.yaml │ │ ├── mrt_Re5000_tau008.yaml │ │ ├── mrt_Re5000_tau012.yaml │ │ ├── mrt_Re5000_tau016.yaml │ │ └── mrt_Re7500_tau004.yaml │ ├── mrt_filter │ │ ├── mrt_filter_Re10000_tau004.yaml │ │ ├── mrt_filter_Re15000_tau004.yaml │ │ ├── mrt_filter_Re2000_tau004.yaml │ │ ├── mrt_filter_Re5000_tau004.yaml │ │ ├── mrt_filter_Re5000_tau008.yaml │ │ ├── mrt_filter_Re5000_tau012.yaml │ │ ├── mrt_filter_Re5000_tau016.yaml │ │ └── mrt_filter_Re7500_tau004.yaml │ ├── svec │ │ ├── svec_Re2000_tau004.yaml │ │ ├── svec_Re5000_tau004.yaml │ │ ├── svec_Re5000_tau008.yaml │ │ ├── svec_Re5000_tau012.yaml │ │ └── svec_Re7500_tau004.yaml │ └── unregulated │ │ ├── unregulated_Re2000.yaml │ │ ├── unregulated_Re2000_tau004.yaml │ │ ├── unregulated_Re5000_tau004.yaml │ │ ├── unregulated_Re5000_tau008.yaml │ │ ├── unregulated_Re5000_tau012.yaml │ │ └── unregulated_Re7500_tau004.yaml ├── for_paper │ ├── bingham_lid │ │ ├── 100 │ │ │ ├── bgk-5 │ │ │ │ ├── bingham_100_bgk-5_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-5_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_bgk-5_Bn1_Re5000.yaml │ │ │ ├── bgk-8 │ │ │ │ ├── bingham_100_bgk-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re1500.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re2000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re2500.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re3000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re3500.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re4000.yaml │ │ │ │ ├── bingham_100_bgk-8_Bn1_Re4500.yaml │ │ │ │ └── bingham_100_bgk-8_Bn1_Re5000.yaml │ │ │ ├── bgk-filter-8 │ │ │ │ ├── bingham_100_bgk-filter_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_bgk-filter_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_bgk-filter_Bn1_Re5000.yaml │ │ │ ├── mrt-8 │ │ │ │ ├── bingham_100_mrt-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-8_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_mrt-8_Bn1_Re5000.yaml │ │ │ ├── mrt-filter-8 │ │ │ │ ├── bingham_100_mrt-filter_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_mrt-filter_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_mrt-filter_Bn1_Re5000.yaml │ │ │ ├── svec-5 │ │ │ │ ├── bingham_100_svec-5_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_svec-5_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_svec-5_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_svec-5_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_svec-5_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_svec-5_Bn1_Re5000.yaml │ │ │ └── svec-8 │ │ │ │ ├── bingham_100_svec-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_100_svec-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_100_svec-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_100_svec-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_100_svec-8_Bn1_Re10000.yaml │ │ │ │ └── bingham_100_svec-8_Bn1_Re5000.yaml │ │ ├── 200 │ │ │ ├── bgk-5 │ │ │ │ ├── bingham_200_bgk-5_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-5_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_bgk-5_Bn1_Re5000.yaml │ │ │ ├── bgk-8 │ │ │ │ ├── bingham_200_bgk-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re1500.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re2000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re2500.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re3000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re3500.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re4000.yaml │ │ │ │ ├── bingham_200_bgk-8_Bn1_Re4500.yaml │ │ │ │ └── bingham_200_bgk-8_Bn1_Re5000.yaml │ │ │ ├── bgk-filter-8 │ │ │ │ ├── bingham_200_bgk-filter_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_bgk-filter_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_bgk-filter_Bn1_Re5000.yaml │ │ │ ├── mrt-8 │ │ │ │ ├── bingham_200_mrt-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-8_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_mrt-8_Bn1_Re5000.yaml │ │ │ ├── mrt-filter-8 │ │ │ │ ├── bingham_200_mrt-filter_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_mrt-filter_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_mrt-filter_Bn1_Re5000.yaml │ │ │ ├── svec-5 │ │ │ │ ├── bingham_200_svec-5_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_svec-5_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_svec-5_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_svec-5_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_svec-5_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_svec-5_Bn1_Re5000.yaml │ │ │ └── svec-8 │ │ │ │ ├── bingham_200_svec-8_Bn100_Re100.yaml │ │ │ │ ├── bingham_200_svec-8_Bn100_Re1000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn100_Re10000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn100_Re5000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn10_Re100.yaml │ │ │ │ ├── bingham_200_svec-8_Bn10_Re1000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn10_Re10000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn10_Re5000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn1_Re100.yaml │ │ │ │ ├── bingham_200_svec-8_Bn1_Re1000.yaml │ │ │ │ ├── bingham_200_svec-8_Bn1_Re10000.yaml │ │ │ │ └── bingham_200_svec-8_Bn1_Re5000.yaml │ │ └── 300 │ │ │ └── bgk-8 │ │ │ ├── bingham_300_bgk-8_Bn10_Re10000.yaml │ │ │ ├── bingham_300_bgk-8_Bn10_Re5000.yaml │ │ │ ├── bingham_300_bgk-8_Bn1_Re10000.yaml │ │ │ └── bingham_300_bgk-8_Bn1_Re5000.yaml │ ├── bingham_poise │ │ └── noise │ │ │ ├── bgk_008.yaml │ │ │ ├── bgk_ehren-000010_008.yaml │ │ │ ├── bgk_ehren-000100_008.yaml │ │ │ ├── bgk_fltr-000010_008.yaml │ │ │ ├── bgk_fltr-000100_008.yaml │ │ │ └── mrt_008.yaml │ ├── lid │ │ ├── bingham_pstudy.yaml │ │ ├── n-125_svec-1.yaml │ │ └── power-law_pstudy.yaml │ ├── poise │ │ ├── bingham_pstudy2.yaml │ │ ├── draft │ │ │ ├── bingham-fltr_pstudy.yaml │ │ │ ├── bingham_pstudy.yaml │ │ │ ├── ehren_bgk-8.yaml │ │ │ ├── ehren_bgk-8_delta-1.yaml │ │ │ ├── ehren_bgk-8_delta-1e-1.yaml │ │ │ ├── ehren_bgk-8_delta-1e-2.yaml │ │ │ ├── ehren_bgk-8_delta-1e-3.yaml │ │ │ ├── ehren_bgk-8_delta-1e-4.yaml │ │ │ ├── ehren_bgk-8_delta-1e-5.yaml │ │ │ ├── ehren_bgk-8_delta-1e1.yaml │ │ │ ├── for-opt_median_bgk-12.yaml │ │ │ ├── for-opt_median_bgk-12.yaml.bak │ │ │ ├── median_bgk-8.yaml │ │ │ ├── median_bgk-8_delta-1.yaml │ │ │ ├── median_bgk-8_delta-1e-1.yaml │ │ │ ├── median_bgk-8_delta-1e-2.yaml │ │ │ ├── median_bgk-8_delta-1e-3.yaml │ │ │ ├── median_bgk-8_delta-1e-4.yaml │ │ │ ├── median_bgk-8_delta-1e-5.yaml │ │ │ ├── median_bgk-8_delta-1e1.yaml │ │ │ ├── power-law_pstudy.yaml │ │ │ ├── tau-04_bgk-5.yaml │ │ │ ├── tau-04_bgk-8.yaml │ │ │ ├── tau-04_bgk-fltr.yaml │ │ │ ├── tau-04_mrt.yaml │ │ │ ├── tau-04_svec.yaml │ │ │ ├── tau-08_bgk-5.yaml │ │ │ ├── tau-08_bgk-8.yaml │ │ │ ├── tau-08_bgk-fltr.yaml │ │ │ ├── tau-08_mrt.yaml │ │ │ ├── tau-08_svec.yaml │ │ │ ├── tau-12_bgk-5.yaml │ │ │ ├── tau-12_bgk-8.yaml │ │ │ ├── tau-12_bgk-fltr.yaml │ │ │ ├── tau-12_mrt.yaml │ │ │ ├── tau-12_svec.yaml │ │ │ ├── tau-16_bgk-5.yaml │ │ │ ├── tau-16_bgk-8.yaml │ │ │ ├── tau-16_bgk-fltr.yaml │ │ │ ├── tau-16_mrt.yaml │ │ │ └── tau-16_svec.yaml │ │ └── power-law_pstudy.yaml │ └── power_lid │ │ ├── 100x100 │ │ ├── bgk-filter │ │ │ ├── power_bgk-filter_100_n0.5_Re100.yaml │ │ │ ├── power_bgk-filter_100_n0.5_Re1000.yaml │ │ │ ├── power_bgk-filter_100_n0.5_Re10000.yaml │ │ │ ├── power_bgk-filter_100_n0.5_Re5000.yaml │ │ │ ├── power_bgk-filter_100_n1.5_Re100.yaml │ │ │ ├── power_bgk-filter_100_n1.5_Re1000.yaml │ │ │ ├── power_bgk-filter_100_n1.5_Re10000.yaml │ │ │ └── power_bgk-filter_100_n1.5_Re5000.yaml │ │ ├── bgk │ │ │ ├── power_bgk_100_n0.5_Re100.yaml │ │ │ ├── power_bgk_100_n0.5_Re1000.yaml │ │ │ ├── power_bgk_100_n0.5_Re10000.yaml │ │ │ ├── power_bgk_100_n0.5_Re5000.yaml │ │ │ ├── power_bgk_100_n1.5_Re100.yaml │ │ │ ├── power_bgk_100_n1.5_Re1000.yaml │ │ │ ├── power_bgk_100_n1.5_Re10000.yaml │ │ │ └── power_bgk_100_n1.5_Re5000.yaml │ │ ├── mrt-filter │ │ │ ├── power_mrt-filter_100_n0.5_Re100.yaml │ │ │ ├── power_mrt-filter_100_n0.5_Re1000.yaml │ │ │ ├── power_mrt-filter_100_n0.5_Re10000.yaml │ │ │ ├── power_mrt-filter_100_n0.5_Re5000.yaml │ │ │ ├── power_mrt-filter_100_n1.5_Re100.yaml │ │ │ ├── power_mrt-filter_100_n1.5_Re1000.yaml │ │ │ ├── power_mrt-filter_100_n1.5_Re10000.yaml │ │ │ └── power_mrt-filter_100_n1.5_Re5000.yaml │ │ ├── mrt │ │ │ ├── power_mrt_100_n0.5_Re100.yaml │ │ │ ├── power_mrt_100_n0.5_Re1000.yaml │ │ │ ├── power_mrt_100_n0.5_Re10000.yaml │ │ │ ├── power_mrt_100_n0.5_Re5000.yaml │ │ │ ├── power_mrt_100_n1.5_Re100.yaml │ │ │ ├── power_mrt_100_n1.5_Re1000.yaml │ │ │ ├── power_mrt_100_n1.5_Re10000.yaml │ │ │ └── power_mrt_100_n1.5_Re5000.yaml │ │ └── svec │ │ │ ├── power_svec_100_n0.5_Re100.yaml │ │ │ ├── power_svec_100_n0.5_Re1000.yaml │ │ │ ├── power_svec_100_n0.5_Re10000.yaml │ │ │ ├── power_svec_100_n0.5_Re5000.yaml │ │ │ ├── power_svec_100_n1.5_Re100.yaml │ │ │ ├── power_svec_100_n1.5_Re1000.yaml │ │ │ ├── power_svec_100_n1.5_Re10000.yaml │ │ │ └── power_svec_100_n1.5_Re5000.yaml │ │ └── benchmarks │ │ ├── power_bgk-filter_100_n0.25_Re20000.yaml │ │ ├── power_bgk-filter_100_n0.25_Re30000.yaml │ │ ├── power_bgk-filter_100_n0.5_Re500.yaml │ │ ├── power_bgk-filter_100_n1.75_Re22000.yaml │ │ ├── power_bgk-filter_100_n1.75_Re30000.yaml │ │ ├── power_bgk-filter_256_n0.25_Re20000.yaml │ │ ├── power_bgk-filter_256_n0.25_Re30000.yaml │ │ ├── power_bgk-filter_256_n1.75_Re22000.yaml │ │ ├── power_bgk-filter_256_n1.75_Re30000.yaml │ │ ├── power_bgk_100_n0.25_Re20000.yaml │ │ ├── power_bgk_100_n0.25_Re30000.yaml │ │ ├── power_bgk_100_n0.5_Re100.yaml │ │ ├── power_bgk_100_n0.5_Re500.yaml │ │ ├── power_bgk_100_n0.75_Re100.yaml │ │ ├── power_bgk_100_n1.0_Re100.yaml │ │ ├── power_bgk_100_n1.0_Re500.yaml │ │ ├── power_bgk_100_n1.5_Re100.yaml │ │ ├── power_bgk_100_n1.5_Re500.yaml │ │ ├── power_bgk_100_n1.75_Re22000.yaml │ │ ├── power_bgk_100_n1.75_Re30000.yaml │ │ ├── power_bgk_256_n0.25_Re20000.yaml │ │ ├── power_bgk_256_n0.25_Re30000.yaml │ │ ├── power_bgk_256_n0.5_Re100.yaml │ │ ├── power_bgk_256_n0.5_Re500.yaml │ │ ├── power_bgk_256_n0.75_Re100.yaml │ │ ├── power_bgk_256_n1.0_Re100.yaml │ │ ├── power_bgk_256_n1.0_Re500.yaml │ │ ├── power_bgk_256_n1.5_Re100.yaml │ │ ├── power_bgk_256_n1.5_Re500.yaml │ │ ├── power_bgk_256_n1.75_Re22000.yaml │ │ ├── power_bgk_256_n1.75_Re30000.yaml │ │ ├── power_mrt_100_n0.5_Re100.yaml │ │ ├── power_mrt_100_n0.5_Re500.yaml │ │ ├── power_mrt_100_n0.75_Re100.yaml │ │ ├── power_mrt_100_n1.0_Re100.yaml │ │ ├── power_mrt_100_n1.0_Re500.yaml │ │ ├── power_mrt_100_n1.5_Re100.yaml │ │ ├── power_mrt_100_n1.5_Re500.yaml │ │ ├── power_mrt_256_n0.5_Re100.yaml │ │ ├── power_mrt_256_n0.5_Re500.yaml │ │ ├── power_mrt_256_n0.75_Re100.yaml │ │ ├── power_mrt_256_n1.0_Re100.yaml │ │ ├── power_mrt_256_n1.0_Re500.yaml │ │ ├── power_mrt_256_n1.5_Re100.yaml │ │ └── power_mrt_256_n1.5_Re500.yaml ├── stability_tests │ ├── test_HL_bingham_000.yaml │ ├── test_HL_bingham_004.yaml │ ├── test_HL_bingham_008.yaml │ ├── test_HL_bingham_012.yaml │ ├── test_HL_bingham_016.yaml │ ├── test_HL_bingham_020.yaml │ ├── test_filter_HL_bingham_000.yaml │ ├── test_filter_HL_bingham_004.yaml │ ├── test_filter_HL_bingham_008.yaml │ ├── test_filter_HL_bingham_012.yaml │ ├── test_filter_HL_bingham_016.yaml │ ├── test_filter_HL_bingham_020.yaml │ ├── test_filter_mrt_bingham_000.yaml │ ├── test_filter_mrt_bingham_004.yaml │ ├── test_filter_mrt_bingham_008.yaml │ ├── test_filter_mrt_bingham_012.yaml │ ├── test_filter_mrt_bingham_016.yaml │ ├── test_filter_mrt_bingham_020.yaml │ ├── test_filter_srt_bingham_000.yaml │ ├── test_filter_srt_bingham_004.yaml │ ├── test_filter_srt_bingham_008.yaml │ ├── test_filter_srt_bingham_012.yaml │ ├── test_filter_srt_bingham_016.yaml │ ├── test_filter_srt_bingham_020.yaml │ ├── test_mrt_bingham_000.yaml │ ├── test_mrt_bingham_004.yaml │ ├── test_mrt_bingham_008.yaml │ ├── test_mrt_bingham_012.yaml │ ├── test_mrt_bingham_016.yaml │ ├── test_mrt_bingham_020.yaml │ ├── test_srt_bingham_000.yaml │ ├── test_srt_bingham_004.yaml │ ├── test_srt_bingham_008.yaml │ ├── test_srt_bingham_012.yaml │ ├── test_srt_bingham_016.yaml │ └── test_srt_bingham_020.yaml ├── tows │ ├── archive │ │ ├── tow.yaml │ │ ├── tow_n-050.yaml │ │ ├── tow_n-075.yaml │ │ ├── tow_n-080.yaml │ │ ├── tow_n-090.yaml │ │ ├── tow_n-110.yaml │ │ └── tow_n-125.yaml │ ├── tow.yaml │ ├── tow_n-080.yaml │ ├── tow_n-080_vented.yaml │ ├── tow_n-090.yaml │ ├── tow_n-090_vented.yaml │ └── tow_vented.yaml ├── unregulated │ ├── unregulated_Re2000.yaml │ ├── unregulated_Re5000.yaml │ └── unregulated_Re7500.yaml └── wbs │ ├── wb │ └── wb_pstudy.yaml │ ├── wb0 │ ├── pstudy_test.yaml │ └── verify │ │ ├── dam.yaml │ │ ├── dam2.yaml │ │ └── dam3.yaml │ ├── wb1 │ ├── pstudy_test.yaml │ ├── re-0001_bn-0004_g1_cav-15x1.yaml │ ├── re-0001_bn-0004_g1_cav-30x1.yaml │ ├── re-0001_bn-0004_g1_obs-30x1.yaml │ ├── re-0001_bn-0004_g1_obs-30x2.yaml │ ├── re-0001_bn-0004_g1_obs-30xL.yaml │ ├── re-0001_bn-0004_g1_obs-40x1.yaml │ ├── re-0001_bn-0004_g1_obs-40x2.yaml │ ├── re-0001_bn-0004_g1_obs-40xL.yaml │ ├── re-0001_bn-0004_g2_cav-15x1.yaml │ ├── re-0001_bn-0004_g2_cav-30x1.yaml │ ├── re-0001_bn-0004_g2_obs-30x1.yaml │ ├── re-0001_bn-0004_g2_obs-30x2.yaml │ ├── re-0001_bn-0004_g2_obs-30xL.yaml │ ├── re-0001_bn-0004_g2_obs-40x1.yaml │ ├── re-0001_bn-0004_g2_obs-40x2.yaml │ ├── re-0001_bn-0004_g2_obs-40xL.yaml │ ├── re-0003_bn-0000_g1_cav-15x1.yaml │ ├── re-0003_bn-0000_g1_cav-30x1.yaml │ ├── re-0003_bn-0000_g1_obs-30x1.yaml │ ├── re-0003_bn-0000_g1_obs-30x2.yaml │ ├── re-0003_bn-0000_g1_obs-30xL.yaml │ ├── re-0003_bn-0000_g1_obs-40x1.yaml │ ├── re-0003_bn-0000_g1_obs-40x2.yaml │ ├── re-0003_bn-0000_g1_obs-40xL.yaml │ ├── re-0003_bn-0000_g2_cav-15x1.yaml │ ├── re-0003_bn-0000_g2_cav-30x1.yaml │ ├── re-0003_bn-0000_g2_obs-30x1.yaml │ ├── re-0003_bn-0000_g2_obs-30x2.yaml │ ├── re-0003_bn-0000_g2_obs-30xL.yaml │ ├── re-0003_bn-0000_g2_obs-40x1.yaml │ ├── re-0003_bn-0000_g2_obs-40x2.yaml │ ├── re-0003_bn-0000_g2_obs-40xL.yaml │ ├── re-0003_bn-0005_g1_cav-15x1.yaml │ ├── re-0003_bn-0005_g1_cav-30x1.yaml │ ├── re-0003_bn-0005_g1_obs-30x1.yaml │ ├── re-0003_bn-0005_g1_obs-30x2.yaml │ ├── re-0003_bn-0005_g1_obs-30xL.yaml │ ├── re-0003_bn-0005_g1_obs-40x1.yaml │ ├── re-0003_bn-0005_g1_obs-40x2.yaml │ ├── re-0003_bn-0005_g1_obs-40xL.yaml │ ├── re-0003_bn-0005_g2_cav-15x1.yaml │ ├── re-0003_bn-0005_g2_cav-30x1.yaml │ ├── re-0003_bn-0005_g2_obs-30x1.yaml │ ├── re-0003_bn-0005_g2_obs-30x2.yaml │ ├── re-0003_bn-0005_g2_obs-30xL.yaml │ ├── re-0003_bn-0005_g2_obs-40x1.yaml │ ├── re-0003_bn-0005_g2_obs-40x2.yaml │ ├── re-0003_bn-0005_g2_obs-40xL.yaml │ ├── re-0003_bn-0010_g1_cav-15x1.yaml │ ├── re-0003_bn-0010_g1_cav-30x1.yaml │ ├── re-0003_bn-0010_g1_obs-30x1.yaml │ ├── re-0003_bn-0010_g1_obs-30x2.yaml │ ├── re-0003_bn-0010_g1_obs-30xL.yaml │ ├── re-0003_bn-0010_g1_obs-40x1.yaml │ ├── re-0003_bn-0010_g1_obs-40x2.yaml │ ├── re-0003_bn-0010_g1_obs-40xL.yaml │ ├── re-0003_bn-0010_g2_cav-15x1.yaml │ ├── re-0003_bn-0010_g2_cav-30x1.yaml │ ├── re-0003_bn-0010_g2_obs-30x1.yaml │ ├── re-0003_bn-0010_g2_obs-30x2.yaml │ ├── re-0003_bn-0010_g2_obs-30xL.yaml │ ├── re-0003_bn-0010_g2_obs-40x1.yaml │ ├── re-0003_bn-0010_g2_obs-40x2.yaml │ ├── re-0003_bn-0010_g2_obs-40xL.yaml │ ├── re-0003_bn-0025_g1_cav-15x1.yaml │ ├── re-0003_bn-0025_g1_cav-30x1.yaml │ ├── re-0003_bn-0025_g1_obs-30x1.yaml │ ├── re-0003_bn-0025_g1_obs-30x2.yaml │ ├── re-0003_bn-0025_g1_obs-30xL.yaml │ ├── re-0003_bn-0025_g1_obs-40x1.yaml │ ├── re-0003_bn-0025_g1_obs-40x2.yaml │ ├── re-0003_bn-0025_g1_obs-40xL.yaml │ ├── re-0003_bn-0025_g2_cav-15x1.yaml │ ├── re-0003_bn-0025_g2_cav-30x1.yaml │ ├── re-0003_bn-0025_g2_obs-30x1.yaml │ ├── re-0003_bn-0025_g2_obs-30x2.yaml │ ├── re-0003_bn-0025_g2_obs-30xL.yaml │ ├── re-0003_bn-0025_g2_obs-40x1.yaml │ ├── re-0003_bn-0025_g2_obs-40x2.yaml │ ├── re-0003_bn-0025_g2_obs-40xL.yaml │ ├── re-0005_bn-0005_g1_cav-15x1.yaml │ ├── re-0005_bn-0005_g1_cav-30x1.yaml │ ├── re-0005_bn-0005_g1_obs-30x1.yaml │ ├── re-0005_bn-0005_g1_obs-30x2.yaml │ ├── re-0005_bn-0005_g1_obs-30xL.yaml │ ├── re-0005_bn-0005_g1_obs-40x1.yaml │ ├── re-0005_bn-0005_g1_obs-40x2.yaml │ ├── re-0005_bn-0005_g1_obs-40xL.yaml │ ├── re-0005_bn-0005_g2_cav-15x1.yaml │ ├── re-0005_bn-0005_g2_cav-30x1.yaml │ ├── re-0005_bn-0005_g2_obs-30x1.yaml │ ├── re-0005_bn-0005_g2_obs-30x2.yaml │ ├── re-0005_bn-0005_g2_obs-30xL.yaml │ ├── re-0005_bn-0005_g2_obs-40x1.yaml │ ├── re-0005_bn-0005_g2_obs-40x2.yaml │ ├── re-0005_bn-0005_g2_obs-40xL.yaml │ ├── re-0013_bn-0002_g1_cav-15x1.yaml │ ├── re-0013_bn-0002_g1_cav-30x1.yaml │ ├── re-0013_bn-0002_g1_obs-30x1.yaml │ ├── re-0013_bn-0002_g1_obs-30x2.yaml │ ├── re-0013_bn-0002_g1_obs-30xL.yaml │ ├── re-0013_bn-0002_g1_obs-40x1.yaml │ ├── re-0013_bn-0002_g1_obs-40x2.yaml │ ├── re-0013_bn-0002_g1_obs-40xL.yaml │ ├── re-0013_bn-0002_g2_cav-15x1.yaml │ ├── re-0013_bn-0002_g2_cav-30x1.yaml │ ├── re-0013_bn-0002_g2_obs-30x1.yaml │ ├── re-0013_bn-0002_g2_obs-30x2.yaml │ ├── re-0013_bn-0002_g2_obs-30xL.yaml │ ├── re-0013_bn-0002_g2_obs-40x1.yaml │ ├── re-0013_bn-0002_g2_obs-40x2.yaml │ └── re-0013_bn-0002_g2_obs-40xL.yaml │ ├── wb2 │ └── pstudy_test.yaml │ ├── wb3 │ └── wb_pstudy.yaml │ ├── wb4 │ ├── debug │ │ ├── re-0050_bn-00005_wt-0025_no-obs.yaml │ │ ├── re-0050_bn-00005_wt-2500.yaml │ │ ├── re-0050_bn-00005_wt-2500_obs-15x1.yaml │ │ ├── re-0050_bn-0005_wt-0025_no-obs.yaml │ │ ├── re-0050_bn-0005_wt-0025_no-obs_mrt.yaml │ │ ├── re-0050_bn-0005_wt-0025_obs-15x1_2.yaml │ │ └── re-0050_bn-0005_wt-0250_no-obs.yaml │ └── wb_pstudy.yaml │ └── wb5 │ └── wb_pstudy.yaml ├── scripts ├── calc_fill.jl ├── compile_pstudy.py ├── cumsimp.m ├── dump_bak.jl ├── flowfun.m ├── install-dependencies.jl ├── opt_contract_qx.jl ├── opt_delta.jl ├── opt_delta2.jl ├── paper_params.jl ├── plot_analytical.jl ├── pvd.jl ├── renum_figs.py ├── rf.jl └── stream_func_from_file.m └── test ├── archive ├── test_coltype_bgk_newt_01.yaml ├── test_coltype_bgk_newt_02.yaml ├── test_coltype_bgk_newt_03.yaml ├── test_coltype_mrt_newt_01.yaml ├── test_const_bingham_explicit_0_1.yaml ├── test_const_bingham_explicit_0_2.yaml ├── test_const_bingham_explicit_0_3.yaml ├── test_const_bingham_implicit_0_1.yaml ├── test_const_hb_explicit_0_1.yaml ├── test_const_hb_explicit_0_2.yaml ├── test_const_hb_explicit_0_3.yaml ├── test_const_hb_explicit_1e-6--5e-5_1.yaml ├── test_const_hb_implicit_0_1.yaml ├── test_dam_basic_stability_01.yaml ├── test_dam_basic_stability_02.yaml ├── test_dam_basic_stability_03.yaml ├── test_dam_basic_stability_04.yaml ├── test_dam_gs_stability_01.yaml ├── test_dam_gs_stability_02.yaml ├── test_dam_obs_stability_01.yaml ├── test_dam_vcf_stability_01.yaml ├── test_dam_vcf_stability_02.yaml ├── test_entropic_mrt_involution_1.yaml ├── test_entropic_mrt_involution_2.yaml ├── test_entropic_newton_search_involution_1.yaml ├── test_entropic_search_lid_Re5000.yaml ├── test_entropic_search_lid_Re7500.yaml ├── test_entropic_srt_bingham_004.yaml ├── test_entropic_srt_bingham_008.yaml ├── test_entropic_srt_bingham_012.yaml ├── test_entropic_srt_involution_1.yaml ├── test_entropic_srt_involution_2.yaml ├── test_entropic_srt_involution_3.yaml ├── test_entropic_srt_involution_4.yaml ├── test_entropic_srt_involution_5.yaml ├── test_entropic_srt_involution_6.yaml ├── test_entropic_srt_involution_7.yaml ├── test_entropic_srt_involution_8.yaml ├── test_entropic_srt_involution_9.yaml ├── test_entropic_stef_search_involution_1.yaml ├── test_entropic_stef_search_involution_2.yaml ├── test_entropic_stef_search_involution_3.yaml ├── test_entropic_stef_srt_bingham_004.yaml ├── test_entropic_stef_srt_bingham_008.yaml ├── test_feqHL.yaml ├── test_filter_srt_2.yaml ├── test_filter_srt_3.yaml ├── test_filter_srt_4.yaml ├── test_filter_srt_5.yaml ├── test_filter_srt_6.yaml ├── test_filter_srt_bingham_004_1.yaml ├── test_filter_srt_bingham_004_2.yaml ├── test_filter_srt_bingham_004_3.yaml ├── test_filter_srt_bingham_008_1.yaml ├── test_filter_srt_bingham_008_2.yaml ├── test_filter_srt_bingham_008_3.yaml ├── test_filter_srt_bingham_012_1.yaml ├── test_filter_srt_bingham_012_2.yaml ├── test_filter_srt_bingham_012_3.yaml ├── test_filter_srt_bingham_012_4.yaml ├── test_hb_implicit_0_1_0.yaml ├── test_hb_implicit_luo_2--5.yaml ├── test_hb_mrt_0.5_2.not-ready ├── test_hb_srt_0.5_2.yaml ├── test_highre_1.yaml ├── test_highre_2.yaml ├── test_modcol_mrt_LBGK.yaml ├── test_modcol_mrt_luo.yaml ├── test_modcol_srt_guo_1.yaml ├── test_modcol_srt_guo_2.yaml ├── test_modcol_srt_korner_1.yaml ├── test_modcol_srt_korner_2.yaml ├── test_modcol_srt_korner_3.yaml ├── test_modcol_srt_korner_4.yaml ├── test_modcol_srt_sukop_1.yaml ├── test_modcol_srt_sukop_2.yaml ├── test_modcol_srt_sukop_3.yaml ├── test_mrt_bingham_explicit_fallah_0_1.yaml ├── test_mrt_bingham_explicit_fallah_1e-6--1e-5_1.yaml ├── test_mrt_bingham_explicit_fallah_1e-6--1e-5_1_with-plot.yaml ├── test_mrt_bingham_explicit_luo_0_1.yaml ├── test_mrt_bingham_explicit_luo_1e-6--1e-5_1.yaml ├── test_mrt_bingham_implicit_fallah_0_1.yaml ├── test_mrt_bingham_implicit_fallah_1e-6--1e-5_1.yaml ├── test_mrt_bingham_implicit_luo_0_1.yaml ├── test_mrt_bingham_implicit_luo_1e-6--1e-5_1.yaml ├── test_mrt_hb_1_0.yaml ├── test_mrt_hb_explicit_fallah_1e-6--1e-5_1_with-plot.yaml ├── test_mrt_hb_explicit_luo_0_1.yaml ├── test_mrt_hb_explicit_luo_1e-6--1e-5_1.yaml ├── test_mrt_hb_implicit_luo_1e-6--1e-5_1.yaml ├── test_obstacle_stability.yaml ├── test_pmodcol_srt_korner_2.not-ready ├── test_power_law_implicit_luo_2--5.yaml ├── test_power_law_srt_0.5_1.yaml ├── test_power_law_srt_0.5_2.yaml ├── vtest_collide.jl ├── vtest_lattice.jl ├── vtest_step.jl └── vtest_stream.jl ├── run_tests_parallel.jl ├── run_tests_serial.jl ├── test_bing_bgk_1.yaml ├── test_bing_bgk_2.yaml ├── test_bing_bgk_3.yaml ├── test_bing_bgk_4.yaml ├── test_bing_mrt_1.yaml ├── test_bing_mrt_2.yaml ├── test_bing_mrt_3.yaml ├── test_bing_mrt_4.yaml ├── test_bing_mrt_5.yaml ├── test_constitutive.jl ├── test_dam_basic_stability_01.yaml ├── test_dam_basic_stability_02.yaml ├── test_dam_basic_stability_03.yaml ├── test_dam_basic_stability_04.yaml ├── test_filter_srt_1.yaml ├── test_filter_srt_2.yaml ├── test_filter_srt_3.yaml ├── test_filter_srt_4.yaml ├── test_filter_srt_5.yaml ├── test_filter_srt_6.yaml ├── test_hb_bgk_1.yaml ├── test_hb_bgk_2.yaml ├── test_hb_mrt_1.yaml ├── test_hb_mrt_2.yaml ├── test_hb_mrt_3.yaml ├── test_multiscale.jl ├── test_newt_bgk_1.yaml ├── test_newt_bgk_2.yaml ├── test_newt_bgk_3.yaml ├── test_newt_bgk_4.yaml ├── test_newt_bgk_5.yaml ├── test_newt_bgk_6.yaml ├── test_newt_bgk_7.yaml ├── test_newt_mrt_1.yaml ├── test_newt_mrt_2.yaml ├── test_newt_mrt_3.yaml ├── test_newt_mrt_4.yaml ├── test_newt_mrt_5.yaml ├── test_pl_bgk_1.yaml ├── test_pl_bgk_2.yaml ├── test_pl_bgk_3.yaml ├── test_pl_mrt_1.yaml ├── test_pl_mrt_2.yaml └── test_tracking.jl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/README.md -------------------------------------------------------------------------------- /banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/banner.txt -------------------------------------------------------------------------------- /doc/tutorial/beamercolorthememetropolis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/beamercolorthememetropolis.sty -------------------------------------------------------------------------------- /doc/tutorial/beamerfontthememetropolis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/beamerfontthememetropolis.sty -------------------------------------------------------------------------------- /doc/tutorial/beamerinnerthememetropolis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/beamerinnerthememetropolis.sty -------------------------------------------------------------------------------- /doc/tutorial/beamerouterthememetropolis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/beamerouterthememetropolis.sty -------------------------------------------------------------------------------- /doc/tutorial/beamerthememetropolis.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/beamerthememetropolis.sty -------------------------------------------------------------------------------- /doc/tutorial/figs/d2q9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/figs/d2q9.jpg -------------------------------------------------------------------------------- /doc/tutorial/pgfplotsthemetol.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/pgfplotsthemetol.sty -------------------------------------------------------------------------------- /doc/tutorial/src/julia-setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/src/julia-setup.tex -------------------------------------------------------------------------------- /doc/tutorial/src/notation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/src/notation.tex -------------------------------------------------------------------------------- /doc/tutorial/tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/tutorial.pdf -------------------------------------------------------------------------------- /doc/tutorial/tutorial.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/doc/tutorial/tutorial.tex -------------------------------------------------------------------------------- /example_sims/2phase/2phase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/2phase/2phase.yaml -------------------------------------------------------------------------------- /example_sims/couette/couette_velocity-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/couette/couette_velocity-profile.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_bingham.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_bingham.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_bingham2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_bingham2.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_bingham3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_bingham3.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_bingham4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_bingham4.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_with_obs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_with_obs.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_with_obs2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_with_obs2.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_with_obs3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_with_obs3.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_with_obs4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_with_obs4.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/dam/dam_with_obs5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/dam/dam_with_obs5.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/fill_cavity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/fill_cavity.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/fill_cavity2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/fill_cavity2.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/fill_cavity3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/fill_cavity3.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/fill_cavity4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/fill_cavity4.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe2.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe2g-32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe2g-32.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe2g.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe2g.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe3.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe3g-32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe3g-32.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe3g-32_b-000010.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe3g-32_b-000010.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe3g-32_b-000025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe3g-32_b-000025.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe3g.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe3g.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe4.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe4g.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe4g.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipe_with_obs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipe_with_obs.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipeg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipeg.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/pipeg_nu-0050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/pipeg_nu-0050.yaml -------------------------------------------------------------------------------- /example_sims/free-surface/pipe/tow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/free-surface/pipe/tow.yaml -------------------------------------------------------------------------------- /example_sims/lid/bingham/bingham-lid_bn001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/lid/bingham/bingham-lid_bn001.yaml -------------------------------------------------------------------------------- /example_sims/lid/bingham/bingham-lid_bn010.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/lid/bingham/bingham-lid_bn010.yaml -------------------------------------------------------------------------------- /example_sims/lid/bingham/bingham-lid_bn100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/lid/bingham/bingham-lid_bn100.yaml -------------------------------------------------------------------------------- /example_sims/lid/lid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/lid/lid.yaml -------------------------------------------------------------------------------- /example_sims/poiseuille/poiseuille_pressure-contours.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/poiseuille/poiseuille_pressure-contours.yaml -------------------------------------------------------------------------------- /example_sims/poiseuille/poiseuille_velocity-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/example_sims/poiseuille/poiseuille_velocity-profile.yaml -------------------------------------------------------------------------------- /inc/LBXFlow.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/LBXFlow.jl -------------------------------------------------------------------------------- /inc/accessors.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/accessors.jl -------------------------------------------------------------------------------- /inc/analytical.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/analytical.jl -------------------------------------------------------------------------------- /inc/api.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/api.jl -------------------------------------------------------------------------------- /inc/bcs/mass.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/bcs/mass.jl -------------------------------------------------------------------------------- /inc/bcs/vprofs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/bcs/vprofs.jl -------------------------------------------------------------------------------- /inc/boundary.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/boundary.jl -------------------------------------------------------------------------------- /inc/col/bgk.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/bgk.jl -------------------------------------------------------------------------------- /inc/col/collision.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/collision.jl -------------------------------------------------------------------------------- /inc/col/constitutive.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/constitutive.jl -------------------------------------------------------------------------------- /inc/col/entropic.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/entropic.jl -------------------------------------------------------------------------------- /inc/col/equilibrium.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/equilibrium.jl -------------------------------------------------------------------------------- /inc/col/filtering.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/filtering.jl -------------------------------------------------------------------------------- /inc/col/forcing.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/forcing.jl -------------------------------------------------------------------------------- /inc/col/forcing0.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/forcing0.jl -------------------------------------------------------------------------------- /inc/col/freecol.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/freecol.jl -------------------------------------------------------------------------------- /inc/col/m2phase.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/m2phase.jl -------------------------------------------------------------------------------- /inc/col/modcol.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/modcol.jl -------------------------------------------------------------------------------- /inc/col/mrt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/mrt.jl -------------------------------------------------------------------------------- /inc/col/mrt_matrices.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/mrt_matrices.jl -------------------------------------------------------------------------------- /inc/col/pmodcol.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/pmodcol.jl -------------------------------------------------------------------------------- /inc/col/stdcol.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/col/stdcol.jl -------------------------------------------------------------------------------- /inc/convergence.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/convergence.jl -------------------------------------------------------------------------------- /inc/debug.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/debug.jl -------------------------------------------------------------------------------- /inc/entropy.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/entropy.jl -------------------------------------------------------------------------------- /inc/io/animate.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/io/animate.jl -------------------------------------------------------------------------------- /inc/io/animate0.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/io/animate0.jl -------------------------------------------------------------------------------- /inc/io/readwrite.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/io/readwrite.jl -------------------------------------------------------------------------------- /inc/io/sample.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/io/sample.jl -------------------------------------------------------------------------------- /inc/lattice.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/lattice.jl -------------------------------------------------------------------------------- /inc/lbxio.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/lbxio.jl -------------------------------------------------------------------------------- /inc/multiscale.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/multiscale.jl -------------------------------------------------------------------------------- /inc/numerics.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/numerics.jl -------------------------------------------------------------------------------- /inc/obstacle.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/obstacle.jl -------------------------------------------------------------------------------- /inc/profile.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/profile.jl -------------------------------------------------------------------------------- /inc/sim/adapt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/adapt.jl -------------------------------------------------------------------------------- /inc/sim/lazy.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/lazy.jl -------------------------------------------------------------------------------- /inc/sim/recolor.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/recolor.jl -------------------------------------------------------------------------------- /inc/sim/simtypes.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/simtypes.jl -------------------------------------------------------------------------------- /inc/sim/simulate.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/simulate.jl -------------------------------------------------------------------------------- /inc/sim/tracking.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/sim/tracking.jl -------------------------------------------------------------------------------- /inc/stability.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/inc/stability.jl -------------------------------------------------------------------------------- /lbxflow.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/lbxflow.jl -------------------------------------------------------------------------------- /publication_sims/archive/elbm/elbm_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/elbm/elbm_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/elbm/elbm_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/elbm/elbm_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/elbm/elbm_Re7500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/elbm/elbm_Re7500.yaml -------------------------------------------------------------------------------- /publication_sims/archive/filter/median-filter_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/filter/median-filter_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/filter/median-filter_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/filter/median-filter_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/filter/median-filter_Re7500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/filter/median-filter_Re7500.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/explicit/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/explicit/000000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/explicit/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/explicit/000004.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/explicit/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/explicit/000008.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/explicit/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/explicit/000012.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/implicit/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/implicit/000000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/implicit/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/implicit/000004.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/implicit/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/implicit/000008.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/chen/implicit/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/chen/implicit/000012.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/explicit/0000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/explicit/0000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/explicit/0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/explicit/0001.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/explicit/0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/explicit/0005.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/explicit/0010.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/explicit/0010.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/implicit/0000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/implicit/0000.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/implicit/0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/implicit/0001.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/implicit/0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/implicit/0005.yaml -------------------------------------------------------------------------------- /publication_sims/archive/poise/wang/implicit/0010.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/poise/wang/implicit/0010.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/050.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/075.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/075.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/100.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/125.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/125.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/150.yaml -------------------------------------------------------------------------------- /publication_sims/archive/power_law/175.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/archive/power_law/175.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/bgk/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/bgk/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/bgk/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/bgk/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/bgk/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/bgk/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/bgk/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/bgk/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/mrt/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/mrt/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/mrt/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/mrt/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/mrt/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/mrt/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/mrt/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/mrt/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/svec/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/svec/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/svec/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/svec/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/svec/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/svec/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/001/svec/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/001/svec/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/bgk/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/bgk/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/bgk/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/bgk/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/bgk/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/bgk/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/bgk/re-500_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/bgk/re-500_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/mrt/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/mrt/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/mrt/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/mrt/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/mrt/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/mrt/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/mrt/re-500_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/mrt/re-500_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/svec/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/svec/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/svec/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/svec/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/svec/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/svec/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/002/svec/re-500_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/002/svec/re-500_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/bgk/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/bgk/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/bgk/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/bgk/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/bgk/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/bgk/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/bgk/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/bgk/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/mrt/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/mrt/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/mrt/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/mrt/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/mrt/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/mrt/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/003/mrt/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/003/mrt/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/bgk/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/bgk/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/bgk/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/bgk/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/bgk/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/bgk/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/bgk/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/bgk/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000016.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/004/mrt/000020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/004/mrt/000020.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/bgk/02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/bgk/02.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/bgk/04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/bgk/04.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/bgk/06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/bgk/06.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/bgk/08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/bgk/08.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/mrt/02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/mrt/02.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/mrt/04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/mrt/04.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/mrt/06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/mrt/06.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/005/mrt/08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/005/mrt/08.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000024.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/bgk/000036.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/bgk/000036.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000024.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/mrt/000036.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/mrt/000036.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000000.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000004.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000008.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000012.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000024.yaml -------------------------------------------------------------------------------- /publication_sims/bgk_v_mrt/poise/006/svec/000036.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bgk_v_mrt/poise/006/svec/000036.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-050_bn-0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-050_bn-0001.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-050_bn-0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-050_bn-0005.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-050_bn-0050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-050_bn-0050.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-050_bn-0500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-050_bn-0500.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/base/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/base/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-050_bn-0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-050_bn-0001.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-050_bn-0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-050_bn-0005.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-050_bn-0050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-050_bn-0050.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-050_bn-0500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-050_bn-0500.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/cavity/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/cavity/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-050_bn-0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-050_bn-0001.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-050_bn-0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-050_bn-0005.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-050_bn-0050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-050_bn-0050.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-050_bn-0500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-050_bn-0500.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/expand/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/expand/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-003_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-003_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-010_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-010_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-050_bn-0001.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-050_bn-0001.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-050_bn-0005.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-050_bn-0005.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-050_bn-0050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-050_bn-0050.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-050_bn-0500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-050_bn-0500.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_channel/notch/re-100_bn-0025.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_channel/notch/re-100_bn-0025.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/filter/filter_Re5000_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/filter/filter_Re5000_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/filter/filter_Re5000_tau012_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/filter/filter_Re5000_tau012_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/filter/filter_Re7500_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/filter/filter_Re7500_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/mrt/mrt_Re5000_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/mrt/mrt_Re5000_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/mrt/mrt_Re5000_tau012_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/mrt/mrt_Re5000_tau012_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/mrt/mrt_Re7500_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/mrt/mrt_Re7500_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/svec/svec_Re5000_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/svec/svec_Re5000_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/svec/svec_Re5000_tau008_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/svec/svec_Re5000_tau008_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/svec/svec_Re5000_tau012_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/svec/svec_Re5000_tau012_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/200/svec/svec_Re7500_tau004_200grid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/200/svec/svec_Re7500_tau004_200grid.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/HL/HL_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/HL/HL_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-hundredth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-hundredth.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-one.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-tenth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/chen/chen_bingham_Re100_Bn-tenth.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re10000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re10000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re15000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re15000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re5000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re5000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re5000_tau008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re5000_tau008.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re5000_tau012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re5000_tau012.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re5000_tau016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re5000_tau016.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/filter/filter_Re7500_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/filter/filter_Re7500_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mitsoulis/mitsoulis_Re0_tau2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mitsoulis/mitsoulis_Re0_tau2.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mitsoulis/mitsoulis_Re0_tau2_tryingdiffninj.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mitsoulis/mitsoulis_Re0_tau2_tryingdiffninj.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re10000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re10000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re15000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re15000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re5000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re5000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re5000_tau008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re5000_tau008.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re5000_tau012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re5000_tau012.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re5000_tau016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re5000_tau016.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt/mrt_Re7500_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt/mrt_Re7500_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re10000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re10000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re15000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re15000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau008.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau012.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re5000_tau016.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/mrt_filter/mrt_filter_Re7500_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/mrt_filter/mrt_filter_Re7500_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/svec/svec_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/svec/svec_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/svec/svec_Re5000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/svec/svec_Re5000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/svec/svec_Re5000_tau008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/svec/svec_Re5000_tau008.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/svec/svec_Re5000_tau012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/svec/svec_Re5000_tau012.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/svec/svec_Re7500_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/svec/svec_Re7500_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re2000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re2000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau008.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re5000_tau012.yaml -------------------------------------------------------------------------------- /publication_sims/bingham_lid/unregulated/unregulated_Re7500_tau004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/bingham_lid/unregulated/unregulated_Re7500_tau004.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-5/bingham_100_bgk-5_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re1500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re1500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re2500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re2500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re3000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re3000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re3500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re3500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re4000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re4000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re4500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re4500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/bgk-8/bingham_100_bgk-8_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/100/mrt-8/bingham_100_mrt-8_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-5/bingham_200_bgk-5_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re1500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re1500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re2500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re2500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re3000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re3000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re3500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re3500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re4000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re4000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re4500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re4500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/bgk-8/bingham_200_bgk-8_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn10_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn10_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/200/mrt-8/bingham_200_mrt-8_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_lid/300/bgk-8/bingham_300_bgk-8_Bn1_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_lid/300/bgk-8/bingham_300_bgk-8_Bn1_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/bgk_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/bgk_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/bgk_ehren-000010_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/bgk_ehren-000010_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/bgk_ehren-000100_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/bgk_ehren-000100_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/bgk_fltr-000010_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/bgk_fltr-000010_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/bgk_fltr-000100_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/bgk_fltr-000100_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/bingham_poise/noise/mrt_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/bingham_poise/noise/mrt_008.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/lid/bingham_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/lid/bingham_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/lid/n-125_svec-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/lid/n-125_svec-1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/lid/power-law_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/lid/power-law_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/bingham_pstudy2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/bingham_pstudy2.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/bingham-fltr_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/bingham-fltr_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/bingham_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/bingham_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-2.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-3.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-4.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/ehren_bgk-8_delta-1e1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/for-opt_median_bgk-12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/for-opt_median_bgk-12.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/for-opt_median_bgk-12.yaml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/for-opt_median_bgk-12.yaml.bak -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-2.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-3.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-4.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/median_bgk-8_delta-1e1.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/power-law_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/power-law_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-04_bgk-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-04_bgk-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-04_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-04_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-04_bgk-fltr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-04_bgk-fltr.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-04_mrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-04_mrt.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-04_svec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-04_svec.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-08_bgk-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-08_bgk-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-08_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-08_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-08_bgk-fltr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-08_bgk-fltr.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-08_mrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-08_mrt.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-08_svec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-08_svec.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-12_bgk-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-12_bgk-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-12_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-12_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-12_bgk-fltr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-12_bgk-fltr.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-12_mrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-12_mrt.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-12_svec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-12_svec.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-16_bgk-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-16_bgk-5.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-16_bgk-8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-16_bgk-8.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-16_bgk-fltr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-16_bgk-fltr.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-16_mrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-16_mrt.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/draft/tau-16_svec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/draft/tau-16_svec.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/poise/power-law_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/poise/power-law_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re10000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re10000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n0.5_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re10000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re10000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/bgk/power_bgk_100_n1.5_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re10000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re10000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n0.5_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re10000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re10000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/mrt/power_mrt_100_n1.5_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re10000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re10000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n0.5_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n1.5_Re1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/100x100/svec/power_svec_100_n1.5_Re1000.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.75_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n0.75_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.0_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.0_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.0_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.0_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_100_n1.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.75_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n0.75_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.0_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.0_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.0_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.0_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_bgk_256_n1.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.75_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n0.75_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.0_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.0_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.0_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.0_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_100_n1.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.75_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n0.75_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.0_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.0_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.0_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.0_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.5_Re100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.5_Re100.yaml -------------------------------------------------------------------------------- /publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.5_Re500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/for_paper/power_lid/benchmarks/power_mrt_256_n1.5_Re500.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_HL_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_HL_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_HL_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_HL_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_mrt_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_mrt_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_filter_srt_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_filter_srt_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_mrt_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_mrt_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_000.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_004.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_008.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_012.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_016.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_016.yaml -------------------------------------------------------------------------------- /publication_sims/stability_tests/test_srt_bingham_020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/stability_tests/test_srt_bingham_020.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-050.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-050.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-075.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-075.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-080.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-080.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-090.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-090.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-110.yaml -------------------------------------------------------------------------------- /publication_sims/tows/archive/tow_n-125.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/archive/tow_n-125.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow_n-080.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow_n-080.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow_n-080_vented.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow_n-080_vented.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow_n-090.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow_n-090.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow_n-090_vented.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow_n-090_vented.yaml -------------------------------------------------------------------------------- /publication_sims/tows/tow_vented.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/tows/tow_vented.yaml -------------------------------------------------------------------------------- /publication_sims/unregulated/unregulated_Re2000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/unregulated/unregulated_Re2000.yaml -------------------------------------------------------------------------------- /publication_sims/unregulated/unregulated_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/unregulated/unregulated_Re5000.yaml -------------------------------------------------------------------------------- /publication_sims/unregulated/unregulated_Re7500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/unregulated/unregulated_Re7500.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb/wb_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb/wb_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb0/pstudy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb0/pstudy_test.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb0/verify/dam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb0/verify/dam.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb0/verify/dam2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb0/verify/dam2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb0/verify/dam3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb0/verify/dam3.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/pstudy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/pstudy_test.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0001_bn-0004_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0000_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0005_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0010_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0003_bn-0025_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0005_bn-0005_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g1_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_cav-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_cav-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_cav-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_cav-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-30xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40x2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40xL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb1/re-0013_bn-0002_g2_obs-40xL.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb2/pstudy_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb2/pstudy_test.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb3/wb_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb3/wb_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-0025_no-obs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-0025_no-obs.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-2500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-2500.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-2500_obs-15x1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-00005_wt-2500_obs-15x1.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_no-obs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_no-obs.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_no-obs_mrt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_no-obs_mrt.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_obs-15x1_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0025_obs-15x1_2.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0250_no-obs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/debug/re-0050_bn-0005_wt-0250_no-obs.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb4/wb_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb4/wb_pstudy.yaml -------------------------------------------------------------------------------- /publication_sims/wbs/wb5/wb_pstudy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/publication_sims/wbs/wb5/wb_pstudy.yaml -------------------------------------------------------------------------------- /scripts/calc_fill.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/calc_fill.jl -------------------------------------------------------------------------------- /scripts/compile_pstudy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/compile_pstudy.py -------------------------------------------------------------------------------- /scripts/cumsimp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/cumsimp.m -------------------------------------------------------------------------------- /scripts/dump_bak.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/dump_bak.jl -------------------------------------------------------------------------------- /scripts/flowfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/flowfun.m -------------------------------------------------------------------------------- /scripts/install-dependencies.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/install-dependencies.jl -------------------------------------------------------------------------------- /scripts/opt_contract_qx.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/opt_contract_qx.jl -------------------------------------------------------------------------------- /scripts/opt_delta.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/opt_delta.jl -------------------------------------------------------------------------------- /scripts/opt_delta2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/opt_delta2.jl -------------------------------------------------------------------------------- /scripts/paper_params.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/paper_params.jl -------------------------------------------------------------------------------- /scripts/plot_analytical.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/plot_analytical.jl -------------------------------------------------------------------------------- /scripts/pvd.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/pvd.jl -------------------------------------------------------------------------------- /scripts/renum_figs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/renum_figs.py -------------------------------------------------------------------------------- /scripts/rf.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/rf.jl -------------------------------------------------------------------------------- /scripts/stream_func_from_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/scripts/stream_func_from_file.m -------------------------------------------------------------------------------- /test/archive/test_coltype_bgk_newt_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_coltype_bgk_newt_01.yaml -------------------------------------------------------------------------------- /test/archive/test_coltype_bgk_newt_02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_coltype_bgk_newt_02.yaml -------------------------------------------------------------------------------- /test/archive/test_coltype_bgk_newt_03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_coltype_bgk_newt_03.yaml -------------------------------------------------------------------------------- /test/archive/test_coltype_mrt_newt_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_coltype_mrt_newt_01.yaml -------------------------------------------------------------------------------- /test/archive/test_const_bingham_explicit_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_bingham_explicit_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_const_bingham_explicit_0_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_bingham_explicit_0_2.yaml -------------------------------------------------------------------------------- /test/archive/test_const_bingham_explicit_0_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_bingham_explicit_0_3.yaml -------------------------------------------------------------------------------- /test/archive/test_const_bingham_implicit_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_bingham_implicit_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_const_hb_explicit_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_hb_explicit_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_const_hb_explicit_0_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_hb_explicit_0_2.yaml -------------------------------------------------------------------------------- /test/archive/test_const_hb_explicit_0_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_hb_explicit_0_3.yaml -------------------------------------------------------------------------------- /test/archive/test_const_hb_explicit_1e-6--5e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_hb_explicit_1e-6--5e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_const_hb_implicit_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_const_hb_implicit_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_basic_stability_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_basic_stability_01.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_basic_stability_02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_basic_stability_02.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_basic_stability_03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_basic_stability_03.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_basic_stability_04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_basic_stability_04.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_gs_stability_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_gs_stability_01.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_gs_stability_02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_gs_stability_02.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_obs_stability_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_obs_stability_01.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_vcf_stability_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_vcf_stability_01.yaml -------------------------------------------------------------------------------- /test/archive/test_dam_vcf_stability_02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_dam_vcf_stability_02.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_mrt_involution_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_mrt_involution_1.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_mrt_involution_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_mrt_involution_2.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_newton_search_involution_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_newton_search_involution_1.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_search_lid_Re5000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_search_lid_Re5000.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_search_lid_Re7500.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_search_lid_Re7500.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_bingham_004.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_bingham_008.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_bingham_012.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_bingham_012.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_1.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_2.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_3.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_4.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_5.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_6.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_7.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_8.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_srt_involution_9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_srt_involution_9.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_stef_search_involution_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_stef_search_involution_1.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_stef_search_involution_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_stef_search_involution_2.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_stef_search_involution_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_stef_search_involution_3.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_stef_srt_bingham_004.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_stef_srt_bingham_004.yaml -------------------------------------------------------------------------------- /test/archive/test_entropic_stef_srt_bingham_008.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_entropic_stef_srt_bingham_008.yaml -------------------------------------------------------------------------------- /test/archive/test_feqHL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_feqHL.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_2.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_3.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_4.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_5.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_6.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_004_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_004_1.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_004_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_004_2.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_004_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_004_3.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_008_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_008_1.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_008_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_008_2.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_008_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_008_3.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_012_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_012_1.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_012_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_012_2.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_012_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_012_3.yaml -------------------------------------------------------------------------------- /test/archive/test_filter_srt_bingham_012_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_filter_srt_bingham_012_4.yaml -------------------------------------------------------------------------------- /test/archive/test_hb_implicit_0_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_hb_implicit_0_1_0.yaml -------------------------------------------------------------------------------- /test/archive/test_hb_implicit_luo_2--5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_hb_implicit_luo_2--5.yaml -------------------------------------------------------------------------------- /test/archive/test_hb_mrt_0.5_2.not-ready: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_hb_mrt_0.5_2.not-ready -------------------------------------------------------------------------------- /test/archive/test_hb_srt_0.5_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_hb_srt_0.5_2.yaml -------------------------------------------------------------------------------- /test/archive/test_highre_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_highre_1.yaml -------------------------------------------------------------------------------- /test/archive/test_highre_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_highre_2.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_mrt_LBGK.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_mrt_LBGK.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_mrt_luo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_mrt_luo.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_guo_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_guo_1.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_guo_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_guo_2.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_korner_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_korner_1.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_korner_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_korner_2.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_korner_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_korner_3.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_korner_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_korner_4.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_sukop_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_sukop_1.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_sukop_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_sukop_2.yaml -------------------------------------------------------------------------------- /test/archive/test_modcol_srt_sukop_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_modcol_srt_sukop_3.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_explicit_fallah_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_explicit_fallah_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_explicit_fallah_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_explicit_fallah_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_explicit_fallah_1e-6--1e-5_1_with-plot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_explicit_fallah_1e-6--1e-5_1_with-plot.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_explicit_luo_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_explicit_luo_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_explicit_luo_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_explicit_luo_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_implicit_fallah_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_implicit_fallah_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_implicit_fallah_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_implicit_fallah_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_implicit_luo_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_implicit_luo_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_bingham_implicit_luo_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_bingham_implicit_luo_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_hb_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_hb_1_0.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_hb_explicit_fallah_1e-6--1e-5_1_with-plot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_hb_explicit_fallah_1e-6--1e-5_1_with-plot.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_hb_explicit_luo_0_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_hb_explicit_luo_0_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_hb_explicit_luo_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_hb_explicit_luo_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_mrt_hb_implicit_luo_1e-6--1e-5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_mrt_hb_implicit_luo_1e-6--1e-5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_obstacle_stability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_obstacle_stability.yaml -------------------------------------------------------------------------------- /test/archive/test_pmodcol_srt_korner_2.not-ready: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_pmodcol_srt_korner_2.not-ready -------------------------------------------------------------------------------- /test/archive/test_power_law_implicit_luo_2--5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_power_law_implicit_luo_2--5.yaml -------------------------------------------------------------------------------- /test/archive/test_power_law_srt_0.5_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_power_law_srt_0.5_1.yaml -------------------------------------------------------------------------------- /test/archive/test_power_law_srt_0.5_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/test_power_law_srt_0.5_2.yaml -------------------------------------------------------------------------------- /test/archive/vtest_collide.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/vtest_collide.jl -------------------------------------------------------------------------------- /test/archive/vtest_lattice.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/vtest_lattice.jl -------------------------------------------------------------------------------- /test/archive/vtest_step.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/vtest_step.jl -------------------------------------------------------------------------------- /test/archive/vtest_stream.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/archive/vtest_stream.jl -------------------------------------------------------------------------------- /test/run_tests_parallel.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/run_tests_parallel.jl -------------------------------------------------------------------------------- /test/run_tests_serial.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/run_tests_serial.jl -------------------------------------------------------------------------------- /test/test_bing_bgk_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_bgk_1.yaml -------------------------------------------------------------------------------- /test/test_bing_bgk_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_bgk_2.yaml -------------------------------------------------------------------------------- /test/test_bing_bgk_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_bgk_3.yaml -------------------------------------------------------------------------------- /test/test_bing_bgk_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_bgk_4.yaml -------------------------------------------------------------------------------- /test/test_bing_mrt_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_mrt_1.yaml -------------------------------------------------------------------------------- /test/test_bing_mrt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_mrt_2.yaml -------------------------------------------------------------------------------- /test/test_bing_mrt_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_mrt_3.yaml -------------------------------------------------------------------------------- /test/test_bing_mrt_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_mrt_4.yaml -------------------------------------------------------------------------------- /test/test_bing_mrt_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_bing_mrt_5.yaml -------------------------------------------------------------------------------- /test/test_constitutive.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_constitutive.jl -------------------------------------------------------------------------------- /test/test_dam_basic_stability_01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_dam_basic_stability_01.yaml -------------------------------------------------------------------------------- /test/test_dam_basic_stability_02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_dam_basic_stability_02.yaml -------------------------------------------------------------------------------- /test/test_dam_basic_stability_03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_dam_basic_stability_03.yaml -------------------------------------------------------------------------------- /test/test_dam_basic_stability_04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_dam_basic_stability_04.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_1.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_2.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_3.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_4.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_5.yaml -------------------------------------------------------------------------------- /test/test_filter_srt_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_filter_srt_6.yaml -------------------------------------------------------------------------------- /test/test_hb_bgk_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_hb_bgk_1.yaml -------------------------------------------------------------------------------- /test/test_hb_bgk_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_hb_bgk_2.yaml -------------------------------------------------------------------------------- /test/test_hb_mrt_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_hb_mrt_1.yaml -------------------------------------------------------------------------------- /test/test_hb_mrt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_hb_mrt_2.yaml -------------------------------------------------------------------------------- /test/test_hb_mrt_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_hb_mrt_3.yaml -------------------------------------------------------------------------------- /test/test_multiscale.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_multiscale.jl -------------------------------------------------------------------------------- /test/test_newt_bgk_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_1.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_2.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_3.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_4.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_5.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_6.yaml -------------------------------------------------------------------------------- /test/test_newt_bgk_7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_bgk_7.yaml -------------------------------------------------------------------------------- /test/test_newt_mrt_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_mrt_1.yaml -------------------------------------------------------------------------------- /test/test_newt_mrt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_mrt_2.yaml -------------------------------------------------------------------------------- /test/test_newt_mrt_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_mrt_3.yaml -------------------------------------------------------------------------------- /test/test_newt_mrt_4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_mrt_4.yaml -------------------------------------------------------------------------------- /test/test_newt_mrt_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_newt_mrt_5.yaml -------------------------------------------------------------------------------- /test/test_pl_bgk_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_pl_bgk_1.yaml -------------------------------------------------------------------------------- /test/test_pl_bgk_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_pl_bgk_2.yaml -------------------------------------------------------------------------------- /test/test_pl_bgk_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_pl_bgk_3.yaml -------------------------------------------------------------------------------- /test/test_pl_mrt_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_pl_mrt_1.yaml -------------------------------------------------------------------------------- /test/test_pl_mrt_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_pl_mrt_2.yaml -------------------------------------------------------------------------------- /test/test_tracking.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grasingerm/lbxflow/HEAD/test/test_tracking.jl --------------------------------------------------------------------------------