├── CMakeLists.txt ├── CONTRIBUTING.md ├── DEVELOPMENT ├── HITData ├── DataTI10 │ ├── lesgo_uFiltered_nx_69_ny_32_nz_32 │ ├── lesgo_vFiltered_nx_69_ny_32_nz_32 │ ├── lesgo_wFiltered_nx_69_ny_32_nz_32 │ └── simulationdetails.txt ├── binary_uFiltered_nx_32_ny_32_nz_32 ├── binary_vFiltered_nx_32_ny_32_nz_32 ├── binary_wFiltered_nx_32_ny_32_nz_32 ├── colormaps.py ├── hit_sample.py └── hit_time_sample.py ├── LICENSE ├── README.md ├── actuator_turbine_model.f90 ├── atm_base.f90 ├── atm_input_util.f90 ├── atm_lesgo_interface.f90 ├── cfl_util.f90 ├── clocks.f90 ├── concurrent_precursor.f90 ├── convec.f90 ├── coriolis.dat ├── coriolis.f90 ├── derivatives.f90 ├── divstress_uv.f90 ├── divstress_w.f90 ├── docs ├── CNAME ├── Gemfile ├── README.md ├── _config.yml ├── _layouts │ └── default.html ├── actuator-disk.md ├── actuator-line.md ├── cgns.md ├── citing.md ├── contributors.md ├── darwin-brew.md ├── img │ ├── abl.png │ └── by-sa.png ├── indicator-function.md ├── levelset.md ├── precursor.md ├── publications.md ├── solver.md ├── start.md ├── subgrid.md ├── wall-model.md └── wind.md ├── emul_complex.f90 ├── fft.f90 ├── finalize.f90 ├── forcing.f90 ├── fringe.f90 ├── functions.f90 ├── grid.f90 ├── hit_inflow.f90 ├── inflow.f90 ├── init_random_seed.f90 ├── initial.f90 ├── initialize.f90 ├── inputATM ├── AeroData │ ├── Cylinder1.dat │ ├── Cylinder2.dat │ ├── DU21_A17.dat │ ├── DU25_A17.dat │ ├── DU30_A17.dat │ ├── DU35_A17.dat │ ├── DU40_A17.dat │ └── NACA64_A17.dat ├── NREL5MWRef ├── YawFile └── turbineArrayProperties ├── input_turbines ├── Ct_prime.dat ├── param.dat ├── theta1.dat └── theta2.dat ├── input_util.f90 ├── interpolag_Sdep.f90 ├── interpolag_Ssim.f90 ├── io.f90 ├── iwmles.f90 ├── lagrange_Sdep.f90 ├── lagrange_Ssim.f90 ├── lbc_scal.dat ├── lesgo.conf ├── level_set.f90 ├── level_set_base.f90 ├── linear_simple.f90 ├── main.f90 ├── messages.f90 ├── mpi_defs.f90 ├── mpi_transpose_mod.f90 ├── panoramix.sh ├── param.f90 ├── param_output.f90 ├── pid.f90 ├── post-processing └── matlab-scripts │ ├── README │ ├── binary_read_lesgo.m │ ├── dns_profiles.txt │ ├── getAvgForce.m │ ├── getAvgTau.m │ ├── getAvgVel2.m │ ├── getAvgVelUV.m │ ├── getAvgVelW.m │ ├── getCSOpt2.m │ ├── getParams.m │ ├── getPoint.m │ ├── getReyStress.m │ ├── getSnap.m │ ├── getSnapX.m │ ├── getSnapY.m │ └── getSnapZ.m ├── press_stag_array.f90 ├── rmsdiv.f90 ├── runfile ├── scalars.f90 ├── scaledep_dynamic.f90 ├── sgs_param.f90 ├── sgs_stag_util.f90 ├── shifted_inflow.f90 ├── sim_param.f90 ├── sponge.f90 ├── stability.f90 ├── stat_defs.f90 ├── std_dynamic.f90 ├── string_util.f90 ├── test-cases ├── DNS_Couette │ ├── binary_read_lesgo.m │ ├── lesgo.conf │ └── runfile ├── LES_Integral_Wall_Model │ ├── CMakeLists.txt │ ├── lesgo-mpi-binary │ ├── lesgo.conf │ └── runfile ├── LES_Lagrangian │ ├── CMakeLists.txt │ ├── lesgo.conf │ └── runfile ├── LES_channel_Re1000 │ ├── binary_read_lesgo.m │ ├── dns_profiles.txt │ ├── lesgo.conf │ └── runfile ├── README.txt ├── actuator_turbine_model │ ├── CMakeLists.txt │ ├── inputATM │ │ ├── AeroData │ │ │ ├── Cylinder1.dat │ │ │ ├── Cylinder2.dat │ │ │ ├── DU21_A17.dat │ │ │ ├── DU25_A17.dat │ │ │ ├── DU30_A17.dat │ │ │ ├── DU35_A17.dat │ │ │ ├── DU40_A17.dat │ │ │ └── NACA64_A17.dat │ │ ├── NREL5MWRef │ │ ├── YawFile │ │ └── turbineArrayProperties │ ├── lesgo-mpi-ATM-binary │ ├── lesgo.conf │ └── runfile ├── level_set_cubes │ ├── CMakeLists.txt │ ├── lesgo.conf │ ├── runfile │ └── trees.conf ├── precursor │ ├── blue │ │ ├── CMakeLists.txt │ │ ├── inputATM │ │ │ ├── AeroData │ │ │ │ └── camberedPlate.dat │ │ │ ├── gwsep │ │ │ └── turbineArrayProperties │ │ ├── lesgo-mpi-cps-ATM-binary │ │ └── lesgo.conf │ ├── red │ │ ├── CMakeLists.txt │ │ ├── lesgo-mpi-cps-binary │ │ └── lesgo.conf │ └── runfile └── turbines_ADM │ └── CMakeLists.txt ├── test-lesgo ├── test_filtermodule.f90 ├── time_average.f90 ├── trees.conf ├── trees_base_ls.f90 ├── trees_global_fmask_ls.f90 ├── trees_io_ls.f90 ├── trees_pre_ls.f90 ├── trees_setup_ls.f90 ├── tridag_array.f90 ├── turbine_indicator.f90 ├── turbines.f90 ├── types.f90 └── wallstress.f90 /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/DEVELOPMENT -------------------------------------------------------------------------------- /HITData/DataTI10/lesgo_uFiltered_nx_69_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/DataTI10/lesgo_uFiltered_nx_69_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/DataTI10/lesgo_vFiltered_nx_69_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/DataTI10/lesgo_vFiltered_nx_69_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/DataTI10/lesgo_wFiltered_nx_69_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/DataTI10/lesgo_wFiltered_nx_69_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/DataTI10/simulationdetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/DataTI10/simulationdetails.txt -------------------------------------------------------------------------------- /HITData/binary_uFiltered_nx_32_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/binary_uFiltered_nx_32_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/binary_vFiltered_nx_32_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/binary_vFiltered_nx_32_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/binary_wFiltered_nx_32_ny_32_nz_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/binary_wFiltered_nx_32_ny_32_nz_32 -------------------------------------------------------------------------------- /HITData/colormaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/colormaps.py -------------------------------------------------------------------------------- /HITData/hit_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/hit_sample.py -------------------------------------------------------------------------------- /HITData/hit_time_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/HITData/hit_time_sample.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/README.md -------------------------------------------------------------------------------- /actuator_turbine_model.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/actuator_turbine_model.f90 -------------------------------------------------------------------------------- /atm_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/atm_base.f90 -------------------------------------------------------------------------------- /atm_input_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/atm_input_util.f90 -------------------------------------------------------------------------------- /atm_lesgo_interface.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/atm_lesgo_interface.f90 -------------------------------------------------------------------------------- /cfl_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/cfl_util.f90 -------------------------------------------------------------------------------- /clocks.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/clocks.f90 -------------------------------------------------------------------------------- /concurrent_precursor.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/concurrent_precursor.f90 -------------------------------------------------------------------------------- /convec.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/convec.f90 -------------------------------------------------------------------------------- /coriolis.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/coriolis.dat -------------------------------------------------------------------------------- /coriolis.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/coriolis.f90 -------------------------------------------------------------------------------- /derivatives.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/derivatives.f90 -------------------------------------------------------------------------------- /divstress_uv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/divstress_uv.f90 -------------------------------------------------------------------------------- /divstress_w.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/divstress_w.f90 -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | lesgo.me.jhu.edu -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/actuator-disk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/actuator-disk.md -------------------------------------------------------------------------------- /docs/actuator-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/actuator-line.md -------------------------------------------------------------------------------- /docs/cgns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/cgns.md -------------------------------------------------------------------------------- /docs/citing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/citing.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/darwin-brew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/darwin-brew.md -------------------------------------------------------------------------------- /docs/img/abl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/img/abl.png -------------------------------------------------------------------------------- /docs/img/by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/img/by-sa.png -------------------------------------------------------------------------------- /docs/indicator-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/indicator-function.md -------------------------------------------------------------------------------- /docs/levelset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/levelset.md -------------------------------------------------------------------------------- /docs/precursor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/precursor.md -------------------------------------------------------------------------------- /docs/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/publications.md -------------------------------------------------------------------------------- /docs/solver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/solver.md -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/start.md -------------------------------------------------------------------------------- /docs/subgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/subgrid.md -------------------------------------------------------------------------------- /docs/wall-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/wall-model.md -------------------------------------------------------------------------------- /docs/wind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/docs/wind.md -------------------------------------------------------------------------------- /emul_complex.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/emul_complex.f90 -------------------------------------------------------------------------------- /fft.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/fft.f90 -------------------------------------------------------------------------------- /finalize.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/finalize.f90 -------------------------------------------------------------------------------- /forcing.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/forcing.f90 -------------------------------------------------------------------------------- /fringe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/fringe.f90 -------------------------------------------------------------------------------- /functions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/functions.f90 -------------------------------------------------------------------------------- /grid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/grid.f90 -------------------------------------------------------------------------------- /hit_inflow.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/hit_inflow.f90 -------------------------------------------------------------------------------- /inflow.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inflow.f90 -------------------------------------------------------------------------------- /init_random_seed.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/init_random_seed.f90 -------------------------------------------------------------------------------- /initial.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/initial.f90 -------------------------------------------------------------------------------- /initialize.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/initialize.f90 -------------------------------------------------------------------------------- /inputATM/AeroData/Cylinder1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/Cylinder1.dat -------------------------------------------------------------------------------- /inputATM/AeroData/Cylinder2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/Cylinder2.dat -------------------------------------------------------------------------------- /inputATM/AeroData/DU21_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/DU21_A17.dat -------------------------------------------------------------------------------- /inputATM/AeroData/DU25_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/DU25_A17.dat -------------------------------------------------------------------------------- /inputATM/AeroData/DU30_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/DU30_A17.dat -------------------------------------------------------------------------------- /inputATM/AeroData/DU35_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/DU35_A17.dat -------------------------------------------------------------------------------- /inputATM/AeroData/DU40_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/DU40_A17.dat -------------------------------------------------------------------------------- /inputATM/AeroData/NACA64_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/AeroData/NACA64_A17.dat -------------------------------------------------------------------------------- /inputATM/NREL5MWRef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/NREL5MWRef -------------------------------------------------------------------------------- /inputATM/YawFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/YawFile -------------------------------------------------------------------------------- /inputATM/turbineArrayProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/inputATM/turbineArrayProperties -------------------------------------------------------------------------------- /input_turbines/Ct_prime.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/input_turbines/Ct_prime.dat -------------------------------------------------------------------------------- /input_turbines/param.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/input_turbines/param.dat -------------------------------------------------------------------------------- /input_turbines/theta1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/input_turbines/theta1.dat -------------------------------------------------------------------------------- /input_turbines/theta2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/input_turbines/theta2.dat -------------------------------------------------------------------------------- /input_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/input_util.f90 -------------------------------------------------------------------------------- /interpolag_Sdep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/interpolag_Sdep.f90 -------------------------------------------------------------------------------- /interpolag_Ssim.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/interpolag_Ssim.f90 -------------------------------------------------------------------------------- /io.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/io.f90 -------------------------------------------------------------------------------- /iwmles.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/iwmles.f90 -------------------------------------------------------------------------------- /lagrange_Sdep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/lagrange_Sdep.f90 -------------------------------------------------------------------------------- /lagrange_Ssim.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/lagrange_Ssim.f90 -------------------------------------------------------------------------------- /lbc_scal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/lbc_scal.dat -------------------------------------------------------------------------------- /lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/lesgo.conf -------------------------------------------------------------------------------- /level_set.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/level_set.f90 -------------------------------------------------------------------------------- /level_set_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/level_set_base.f90 -------------------------------------------------------------------------------- /linear_simple.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/linear_simple.f90 -------------------------------------------------------------------------------- /main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/main.f90 -------------------------------------------------------------------------------- /messages.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/messages.f90 -------------------------------------------------------------------------------- /mpi_defs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/mpi_defs.f90 -------------------------------------------------------------------------------- /mpi_transpose_mod.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/mpi_transpose_mod.f90 -------------------------------------------------------------------------------- /panoramix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/panoramix.sh -------------------------------------------------------------------------------- /param.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/param.f90 -------------------------------------------------------------------------------- /param_output.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/param_output.f90 -------------------------------------------------------------------------------- /pid.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/pid.f90 -------------------------------------------------------------------------------- /post-processing/matlab-scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/README -------------------------------------------------------------------------------- /post-processing/matlab-scripts/binary_read_lesgo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/binary_read_lesgo.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/dns_profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/dns_profiles.txt -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getAvgForce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getAvgForce.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getAvgTau.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getAvgTau.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getAvgVel2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getAvgVel2.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getAvgVelUV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getAvgVelUV.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getAvgVelW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getAvgVelW.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getCSOpt2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getCSOpt2.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getParams.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getPoint.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getReyStress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getReyStress.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getSnap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getSnap.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getSnapX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getSnapX.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getSnapY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getSnapY.m -------------------------------------------------------------------------------- /post-processing/matlab-scripts/getSnapZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/post-processing/matlab-scripts/getSnapZ.m -------------------------------------------------------------------------------- /press_stag_array.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/press_stag_array.f90 -------------------------------------------------------------------------------- /rmsdiv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/rmsdiv.f90 -------------------------------------------------------------------------------- /runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/runfile -------------------------------------------------------------------------------- /scalars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/scalars.f90 -------------------------------------------------------------------------------- /scaledep_dynamic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/scaledep_dynamic.f90 -------------------------------------------------------------------------------- /sgs_param.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/sgs_param.f90 -------------------------------------------------------------------------------- /sgs_stag_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/sgs_stag_util.f90 -------------------------------------------------------------------------------- /shifted_inflow.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/shifted_inflow.f90 -------------------------------------------------------------------------------- /sim_param.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/sim_param.f90 -------------------------------------------------------------------------------- /sponge.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/sponge.f90 -------------------------------------------------------------------------------- /stability.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/stability.f90 -------------------------------------------------------------------------------- /stat_defs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/stat_defs.f90 -------------------------------------------------------------------------------- /std_dynamic.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/std_dynamic.f90 -------------------------------------------------------------------------------- /string_util.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/string_util.f90 -------------------------------------------------------------------------------- /test-cases/DNS_Couette/binary_read_lesgo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/DNS_Couette/binary_read_lesgo.m -------------------------------------------------------------------------------- /test-cases/DNS_Couette/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/DNS_Couette/lesgo.conf -------------------------------------------------------------------------------- /test-cases/DNS_Couette/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/DNS_Couette/runfile -------------------------------------------------------------------------------- /test-cases/LES_Integral_Wall_Model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Integral_Wall_Model/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/LES_Integral_Wall_Model/lesgo-mpi-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Integral_Wall_Model/lesgo-mpi-binary -------------------------------------------------------------------------------- /test-cases/LES_Integral_Wall_Model/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Integral_Wall_Model/lesgo.conf -------------------------------------------------------------------------------- /test-cases/LES_Integral_Wall_Model/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Integral_Wall_Model/runfile -------------------------------------------------------------------------------- /test-cases/LES_Lagrangian/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Lagrangian/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/LES_Lagrangian/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Lagrangian/lesgo.conf -------------------------------------------------------------------------------- /test-cases/LES_Lagrangian/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_Lagrangian/runfile -------------------------------------------------------------------------------- /test-cases/LES_channel_Re1000/binary_read_lesgo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_channel_Re1000/binary_read_lesgo.m -------------------------------------------------------------------------------- /test-cases/LES_channel_Re1000/dns_profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_channel_Re1000/dns_profiles.txt -------------------------------------------------------------------------------- /test-cases/LES_channel_Re1000/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_channel_Re1000/lesgo.conf -------------------------------------------------------------------------------- /test-cases/LES_channel_Re1000/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/LES_channel_Re1000/runfile -------------------------------------------------------------------------------- /test-cases/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/README.txt -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/Cylinder1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/Cylinder1.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/Cylinder2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/Cylinder2.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/DU21_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/DU21_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/DU25_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/DU25_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/DU30_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/DU30_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/DU35_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/DU35_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/DU40_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/DU40_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/AeroData/NACA64_A17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/AeroData/NACA64_A17.dat -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/NREL5MWRef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/NREL5MWRef -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/YawFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/YawFile -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/inputATM/turbineArrayProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/inputATM/turbineArrayProperties -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/lesgo-mpi-ATM-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/lesgo-mpi-ATM-binary -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/lesgo.conf -------------------------------------------------------------------------------- /test-cases/actuator_turbine_model/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/actuator_turbine_model/runfile -------------------------------------------------------------------------------- /test-cases/level_set_cubes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/level_set_cubes/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/level_set_cubes/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/level_set_cubes/lesgo.conf -------------------------------------------------------------------------------- /test-cases/level_set_cubes/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/level_set_cubes/runfile -------------------------------------------------------------------------------- /test-cases/level_set_cubes/trees.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/level_set_cubes/trees.conf -------------------------------------------------------------------------------- /test-cases/precursor/blue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/precursor/blue/inputATM/AeroData/camberedPlate.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/inputATM/AeroData/camberedPlate.dat -------------------------------------------------------------------------------- /test-cases/precursor/blue/inputATM/gwsep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/inputATM/gwsep -------------------------------------------------------------------------------- /test-cases/precursor/blue/inputATM/turbineArrayProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/inputATM/turbineArrayProperties -------------------------------------------------------------------------------- /test-cases/precursor/blue/lesgo-mpi-cps-ATM-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/lesgo-mpi-cps-ATM-binary -------------------------------------------------------------------------------- /test-cases/precursor/blue/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/blue/lesgo.conf -------------------------------------------------------------------------------- /test-cases/precursor/red/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/red/CMakeLists.txt -------------------------------------------------------------------------------- /test-cases/precursor/red/lesgo-mpi-cps-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/red/lesgo-mpi-cps-binary -------------------------------------------------------------------------------- /test-cases/precursor/red/lesgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/red/lesgo.conf -------------------------------------------------------------------------------- /test-cases/precursor/runfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/precursor/runfile -------------------------------------------------------------------------------- /test-cases/turbines_ADM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-cases/turbines_ADM/CMakeLists.txt -------------------------------------------------------------------------------- /test-lesgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test-lesgo -------------------------------------------------------------------------------- /test_filtermodule.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/test_filtermodule.f90 -------------------------------------------------------------------------------- /time_average.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/time_average.f90 -------------------------------------------------------------------------------- /trees.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees.conf -------------------------------------------------------------------------------- /trees_base_ls.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees_base_ls.f90 -------------------------------------------------------------------------------- /trees_global_fmask_ls.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees_global_fmask_ls.f90 -------------------------------------------------------------------------------- /trees_io_ls.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees_io_ls.f90 -------------------------------------------------------------------------------- /trees_pre_ls.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees_pre_ls.f90 -------------------------------------------------------------------------------- /trees_setup_ls.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/trees_setup_ls.f90 -------------------------------------------------------------------------------- /tridag_array.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/tridag_array.f90 -------------------------------------------------------------------------------- /turbine_indicator.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/turbine_indicator.f90 -------------------------------------------------------------------------------- /turbines.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/turbines.f90 -------------------------------------------------------------------------------- /types.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/types.f90 -------------------------------------------------------------------------------- /wallstress.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesgo-jhu/lesgo/HEAD/wallstress.f90 --------------------------------------------------------------------------------