├── .gitlab-ci.yml ├── Calc ├── BlasiusBoundaryLayer │ ├── Blasius.ini │ ├── Blasius_uniform_mesh.ini │ ├── Blasiusmesh.geo │ └── Blasiusmesh.msh ├── Contact │ └── contact.ini ├── Cylinder │ ├── Cylinder.geo │ ├── Cylinder.ini │ ├── Cylinder.msh │ ├── Cylinder_implicit.ini │ ├── Cylinder_precond.ini │ ├── Cylinder_visc.geo │ ├── Cylinder_visc.ini │ ├── Cylinder_visc.msh │ ├── structured │ │ ├── Cylinder_10000.geo │ │ └── Cylinder_10000.msh │ └── unstructured │ │ ├── Cylinder_14000.geo │ │ ├── Cylinder_14000.msh │ │ ├── Cylinder_unstructured.geo │ │ ├── Cylinder_unstructured.msh │ │ └── Cylinder_unstructured2.geo ├── DoubleMach │ └── dmr.ini ├── ForwardFacingStep │ ├── ffs.emc2_bd │ ├── ffs.ini │ ├── ffs.mesh │ ├── ffs_subsonisch_pressureout.ini │ ├── ffs_subsonisch_pressureout.mesh │ ├── ffs_subsonisch_supersonicout.ini │ ├── ffs_subsonisch_supersonicout.mesh │ └── gmon.out ├── GaussianPulse │ ├── circgrid.geo │ ├── circgrid.msh │ ├── circgrid_101.msh │ ├── gaussianPulse.ini │ └── gaussianPulse_circgrid.ini ├── NACA4-Creator │ ├── NACA.ini │ ├── NACA.msh │ ├── NACA.script │ ├── NACAScript.pdf │ └── NACAScript.tex ├── NS_SineWave │ ├── ConvtestO1.ini │ └── ConvtestO2.ini ├── Profil │ ├── Keilprofil │ │ ├── geoFiles │ │ │ ├── keil_coarse.geo │ │ │ ├── keil_fine.geo │ │ │ ├── keil_intermediate.geo │ │ │ └── keil_ultrafine.geo │ │ ├── keil_coarse.ini │ │ ├── keil_coarse.msh │ │ ├── keil_fine.ini │ │ ├── keil_fine.msh │ │ ├── keil_intermediate.ini │ │ ├── keil_intermediate.msh │ │ ├── keil_ultrafine.ini │ │ └── keil_ultrafine.msh │ ├── NACA0012 │ │ ├── NACA0012.geo │ │ ├── NACA0012.ini │ │ ├── NACA0012.msh │ │ └── NACA0012_sharp.dat │ ├── NACA2312 │ │ ├── NACA2312.emc2_bd │ │ ├── NACA2312.ini │ │ └── NACA2312.mesh │ ├── RAE2822 │ │ ├── rae2822_LS_sharp.dat │ │ ├── rae2822_US_sharp.dat │ │ └── rae2822_sharp.dat │ └── XFOIL │ │ ├── xfoil_naca0012_cp.dat │ │ ├── xfoil_naca0012_data.dat │ │ ├── xfoil_naca0012_visc_cp.dat │ │ ├── xfoil_naca0012_vsic_data.dat │ │ ├── xfoil_naca2312_cp.dat │ │ └── xfoil_naca2312_data.dat ├── RichtmyerMeshkovInstability │ └── rmi.ini ├── RiemannProblems │ ├── sod.ini │ ├── sod_RK.ini │ ├── sod_implicit.ini │ ├── sod_o2.ini │ ├── toro1.ini │ ├── toro2.ini │ ├── toro3.ini │ ├── toro4.ini │ └── toro5.ini ├── SineWave │ ├── 1D │ │ └── SineWave1D.ini │ ├── 2D │ │ ├── SineWaveO1.ini │ │ └── SineWaveO2.ini │ └── NavierStokes │ │ ├── SineW_NavStokes_O1.ini │ │ └── SineW_NavStokes_O2.ini └── VortexStreet │ ├── VortexStreet.geo │ ├── VortexStreet.ini │ ├── VortexStreet.msh │ ├── cfdfv │ └── qualEdges.txt ├── LICENSE ├── Makefile ├── Makefile.defs ├── README.md ├── README_CI.md ├── bin └── .gitignore ├── check ├── Aufg_0 │ └── reference │ │ └── .gitkeep ├── Aufg_1 │ └── reference │ │ └── .gitkeep ├── Aufg_2 │ └── reference │ │ └── .gitkeep ├── Aufg_3 │ └── reference │ │ └── .gitkeep ├── Aufg_4 │ └── reference │ │ └── .gitkeep └── Aufg_5 │ └── reference │ └── .gitkeep ├── lib └── .gitignore ├── share ├── Makefile └── cgnslib_3.1.4-2.tar.gz ├── src ├── LeereFiles │ ├── boundary.f90 │ ├── calctimestep.f90 │ ├── explicittimestep.f90 │ ├── flux_ausmd.f90 │ ├── flux_central.f90 │ ├── flux_godunov.f90 │ ├── flux_hll.f90 │ ├── flux_hllc.f90 │ ├── flux_hlle.f90 │ ├── flux_lax_friedrichs.f90 │ ├── flux_roe.f90 │ ├── flux_steger_warming.f90 │ ├── fluxcalculation.f90 │ ├── fv.f90 │ ├── limiter.f90 │ ├── navierstokes │ │ └── fluxcalculation.f90 │ ├── reconstruction.f90 │ └── timedisc.f90 ├── Makefile ├── analyze │ ├── analyze.f90 │ └── analyze_vars.f90 ├── cfdfv.f90 ├── deplist.mk ├── euler │ ├── boundary │ │ ├── boundary.f90 │ │ └── boundary_vars.f90 │ ├── equation.f90 │ ├── equation_vars.f90 │ ├── exactfunc.f90 │ ├── flux │ │ ├── exact_riemann.f90 │ │ ├── flux_ausmd.f90 │ │ ├── flux_ausmdv.f90 │ │ ├── flux_central.f90 │ │ ├── flux_godunov.f90 │ │ ├── flux_hll.f90 │ │ ├── flux_hllc.f90 │ │ ├── flux_hlle.f90 │ │ ├── flux_lax_friedrichs.f90 │ │ ├── flux_roe.f90 │ │ ├── flux_steger_warming.f90 │ │ ├── flux_van_leer.f90 │ │ └── fluxcalculation.f90 │ ├── primcons.f90 │ └── source.f90 ├── fv │ ├── fv.f90 │ └── fv_vars.f90 ├── globals.f90 ├── initialcondition │ ├── initialcondition.f90 │ └── initialcondition_vars.f90 ├── linearsolver │ ├── linearsolver.f90 │ └── linearsolver_vars.f90 ├── mesh │ ├── mesh.f90 │ ├── mesh_readin.f90 │ └── mesh_vars.f90 ├── navierstokes │ ├── boundary │ │ ├── boundary.f90 │ │ └── boundary_vars.f90 │ ├── equation.f90 │ ├── equation_vars.f90 │ ├── exactfunc.f90 │ ├── flux │ │ ├── exact_riemann.f90 │ │ ├── flux_ausmd.f90 │ │ ├── flux_ausmdv.f90 │ │ ├── flux_central.f90 │ │ ├── flux_godunov.f90 │ │ ├── flux_hll.f90 │ │ ├── flux_hllc.f90 │ │ ├── flux_hlle.f90 │ │ ├── flux_lax_friedrichs.f90 │ │ ├── flux_roe.f90 │ │ ├── flux_steger_warming.f90 │ │ ├── flux_van_leer.f90 │ │ └── fluxcalculation.f90 │ ├── primcons.f90 │ └── source.f90 ├── output │ ├── output.f90 │ ├── output_cgns.f90 │ └── output_vars.f90 ├── readin │ ├── isovaryingstring.f90 │ ├── readin.f90 │ ├── readin_vars.f90 │ └── readintools.f90 ├── reconstruction │ ├── limiter.f90 │ ├── reconstruction.f90 │ └── reconstruction_vars.f90 ├── srcfiles.mk └── timedisc │ ├── calctimestep.f90 │ ├── explicittimestep.f90 │ ├── implicittimestep.f90 │ ├── timedisc.f90 │ └── timedisc_vars.f90 └── utils ├── NS_calculon2D.mw ├── builddeps ├── convergence_test ├── analyze_functions.py ├── change_flux ├── convergence_1d ├── convergence_2d ├── execute_cfdfv.py └── modify_prm.py ├── csvdiff.py ├── makeCheck.sh ├── relcleanup.sh └── updateReferences.sh /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Calc/BlasiusBoundaryLayer/Blasius.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/BlasiusBoundaryLayer/Blasius.ini -------------------------------------------------------------------------------- /Calc/BlasiusBoundaryLayer/Blasius_uniform_mesh.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/BlasiusBoundaryLayer/Blasius_uniform_mesh.ini -------------------------------------------------------------------------------- /Calc/BlasiusBoundaryLayer/Blasiusmesh.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/BlasiusBoundaryLayer/Blasiusmesh.geo -------------------------------------------------------------------------------- /Calc/BlasiusBoundaryLayer/Blasiusmesh.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/BlasiusBoundaryLayer/Blasiusmesh.msh -------------------------------------------------------------------------------- /Calc/Contact/contact.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Contact/contact.ini -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder.geo -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder.ini -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder.msh -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder_implicit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder_implicit.ini -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder_precond.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder_precond.ini -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder_visc.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder_visc.geo -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder_visc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder_visc.ini -------------------------------------------------------------------------------- /Calc/Cylinder/Cylinder_visc.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/Cylinder_visc.msh -------------------------------------------------------------------------------- /Calc/Cylinder/structured/Cylinder_10000.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/structured/Cylinder_10000.geo -------------------------------------------------------------------------------- /Calc/Cylinder/structured/Cylinder_10000.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/structured/Cylinder_10000.msh -------------------------------------------------------------------------------- /Calc/Cylinder/unstructured/Cylinder_14000.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/unstructured/Cylinder_14000.geo -------------------------------------------------------------------------------- /Calc/Cylinder/unstructured/Cylinder_14000.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/unstructured/Cylinder_14000.msh -------------------------------------------------------------------------------- /Calc/Cylinder/unstructured/Cylinder_unstructured.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/unstructured/Cylinder_unstructured.geo -------------------------------------------------------------------------------- /Calc/Cylinder/unstructured/Cylinder_unstructured.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/unstructured/Cylinder_unstructured.msh -------------------------------------------------------------------------------- /Calc/Cylinder/unstructured/Cylinder_unstructured2.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Cylinder/unstructured/Cylinder_unstructured2.geo -------------------------------------------------------------------------------- /Calc/DoubleMach/dmr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/DoubleMach/dmr.ini -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs.emc2_bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs.emc2_bd -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs.ini -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs.mesh -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs_subsonisch_pressureout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs_subsonisch_pressureout.ini -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs_subsonisch_pressureout.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs_subsonisch_pressureout.mesh -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs_subsonisch_supersonicout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs_subsonisch_supersonicout.ini -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/ffs_subsonisch_supersonicout.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/ffs_subsonisch_supersonicout.mesh -------------------------------------------------------------------------------- /Calc/ForwardFacingStep/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/ForwardFacingStep/gmon.out -------------------------------------------------------------------------------- /Calc/GaussianPulse/circgrid.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/GaussianPulse/circgrid.geo -------------------------------------------------------------------------------- /Calc/GaussianPulse/circgrid.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/GaussianPulse/circgrid.msh -------------------------------------------------------------------------------- /Calc/GaussianPulse/circgrid_101.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/GaussianPulse/circgrid_101.msh -------------------------------------------------------------------------------- /Calc/GaussianPulse/gaussianPulse.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/GaussianPulse/gaussianPulse.ini -------------------------------------------------------------------------------- /Calc/GaussianPulse/gaussianPulse_circgrid.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/GaussianPulse/gaussianPulse_circgrid.ini -------------------------------------------------------------------------------- /Calc/NACA4-Creator/NACA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NACA4-Creator/NACA.ini -------------------------------------------------------------------------------- /Calc/NACA4-Creator/NACA.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NACA4-Creator/NACA.msh -------------------------------------------------------------------------------- /Calc/NACA4-Creator/NACA.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NACA4-Creator/NACA.script -------------------------------------------------------------------------------- /Calc/NACA4-Creator/NACAScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NACA4-Creator/NACAScript.pdf -------------------------------------------------------------------------------- /Calc/NACA4-Creator/NACAScript.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NACA4-Creator/NACAScript.tex -------------------------------------------------------------------------------- /Calc/NS_SineWave/ConvtestO1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NS_SineWave/ConvtestO1.ini -------------------------------------------------------------------------------- /Calc/NS_SineWave/ConvtestO2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/NS_SineWave/ConvtestO2.ini -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/geoFiles/keil_coarse.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/geoFiles/keil_coarse.geo -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/geoFiles/keil_fine.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/geoFiles/keil_fine.geo -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/geoFiles/keil_intermediate.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/geoFiles/keil_intermediate.geo -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/geoFiles/keil_ultrafine.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/geoFiles/keil_ultrafine.geo -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_coarse.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_coarse.ini -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_coarse.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_coarse.msh -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_fine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_fine.ini -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_fine.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_fine.msh -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_intermediate.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_intermediate.ini -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_intermediate.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_intermediate.msh -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_ultrafine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_ultrafine.ini -------------------------------------------------------------------------------- /Calc/Profil/Keilprofil/keil_ultrafine.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/Keilprofil/keil_ultrafine.msh -------------------------------------------------------------------------------- /Calc/Profil/NACA0012/NACA0012.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA0012/NACA0012.geo -------------------------------------------------------------------------------- /Calc/Profil/NACA0012/NACA0012.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA0012/NACA0012.ini -------------------------------------------------------------------------------- /Calc/Profil/NACA0012/NACA0012.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA0012/NACA0012.msh -------------------------------------------------------------------------------- /Calc/Profil/NACA0012/NACA0012_sharp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA0012/NACA0012_sharp.dat -------------------------------------------------------------------------------- /Calc/Profil/NACA2312/NACA2312.emc2_bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA2312/NACA2312.emc2_bd -------------------------------------------------------------------------------- /Calc/Profil/NACA2312/NACA2312.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA2312/NACA2312.ini -------------------------------------------------------------------------------- /Calc/Profil/NACA2312/NACA2312.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/NACA2312/NACA2312.mesh -------------------------------------------------------------------------------- /Calc/Profil/RAE2822/rae2822_LS_sharp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/RAE2822/rae2822_LS_sharp.dat -------------------------------------------------------------------------------- /Calc/Profil/RAE2822/rae2822_US_sharp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/RAE2822/rae2822_US_sharp.dat -------------------------------------------------------------------------------- /Calc/Profil/RAE2822/rae2822_sharp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/RAE2822/rae2822_sharp.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca0012_cp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca0012_cp.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca0012_data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca0012_data.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca0012_visc_cp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca0012_visc_cp.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca0012_vsic_data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca0012_vsic_data.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca2312_cp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca2312_cp.dat -------------------------------------------------------------------------------- /Calc/Profil/XFOIL/xfoil_naca2312_data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/Profil/XFOIL/xfoil_naca2312_data.dat -------------------------------------------------------------------------------- /Calc/RichtmyerMeshkovInstability/rmi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RichtmyerMeshkovInstability/rmi.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/sod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/sod.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/sod_RK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/sod_RK.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/sod_implicit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/sod_implicit.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/sod_o2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/sod_o2.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/toro1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/toro1.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/toro2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/toro2.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/toro3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/toro3.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/toro4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/toro4.ini -------------------------------------------------------------------------------- /Calc/RiemannProblems/toro5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/RiemannProblems/toro5.ini -------------------------------------------------------------------------------- /Calc/SineWave/1D/SineWave1D.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/SineWave/1D/SineWave1D.ini -------------------------------------------------------------------------------- /Calc/SineWave/2D/SineWaveO1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/SineWave/2D/SineWaveO1.ini -------------------------------------------------------------------------------- /Calc/SineWave/2D/SineWaveO2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/SineWave/2D/SineWaveO2.ini -------------------------------------------------------------------------------- /Calc/SineWave/NavierStokes/SineW_NavStokes_O1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/SineWave/NavierStokes/SineW_NavStokes_O1.ini -------------------------------------------------------------------------------- /Calc/SineWave/NavierStokes/SineW_NavStokes_O2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/SineWave/NavierStokes/SineW_NavStokes_O2.ini -------------------------------------------------------------------------------- /Calc/VortexStreet/VortexStreet.geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/VortexStreet/VortexStreet.geo -------------------------------------------------------------------------------- /Calc/VortexStreet/VortexStreet.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/VortexStreet/VortexStreet.ini -------------------------------------------------------------------------------- /Calc/VortexStreet/VortexStreet.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Calc/VortexStreet/VortexStreet.msh -------------------------------------------------------------------------------- /Calc/VortexStreet/cfdfv: -------------------------------------------------------------------------------- 1 | ../../bin/cfdfv -------------------------------------------------------------------------------- /Calc/VortexStreet/qualEdges.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/Makefile.defs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/README.md -------------------------------------------------------------------------------- /README_CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/README_CI.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /check/Aufg_0/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/Aufg_1/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/Aufg_2/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/Aufg_3/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/Aufg_4/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /check/Aufg_5/reference/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/share/Makefile -------------------------------------------------------------------------------- /share/cgnslib_3.1.4-2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/share/cgnslib_3.1.4-2.tar.gz -------------------------------------------------------------------------------- /src/LeereFiles/boundary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/boundary.f90 -------------------------------------------------------------------------------- /src/LeereFiles/calctimestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/calctimestep.f90 -------------------------------------------------------------------------------- /src/LeereFiles/explicittimestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/explicittimestep.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_ausmd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_ausmd.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_central.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_central.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_godunov.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_godunov.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_hll.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_hll.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_hllc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_hllc.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_hlle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_hlle.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_lax_friedrichs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_lax_friedrichs.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_roe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_roe.f90 -------------------------------------------------------------------------------- /src/LeereFiles/flux_steger_warming.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/flux_steger_warming.f90 -------------------------------------------------------------------------------- /src/LeereFiles/fluxcalculation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/fluxcalculation.f90 -------------------------------------------------------------------------------- /src/LeereFiles/fv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/fv.f90 -------------------------------------------------------------------------------- /src/LeereFiles/limiter.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/limiter.f90 -------------------------------------------------------------------------------- /src/LeereFiles/navierstokes/fluxcalculation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/navierstokes/fluxcalculation.f90 -------------------------------------------------------------------------------- /src/LeereFiles/reconstruction.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/reconstruction.f90 -------------------------------------------------------------------------------- /src/LeereFiles/timedisc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/LeereFiles/timedisc.f90 -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/analyze/analyze.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/analyze/analyze.f90 -------------------------------------------------------------------------------- /src/analyze/analyze_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/analyze/analyze_vars.f90 -------------------------------------------------------------------------------- /src/cfdfv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/cfdfv.f90 -------------------------------------------------------------------------------- /src/deplist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/deplist.mk -------------------------------------------------------------------------------- /src/euler/boundary/boundary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/boundary/boundary.f90 -------------------------------------------------------------------------------- /src/euler/boundary/boundary_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/boundary/boundary_vars.f90 -------------------------------------------------------------------------------- /src/euler/equation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/equation.f90 -------------------------------------------------------------------------------- /src/euler/equation_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/equation_vars.f90 -------------------------------------------------------------------------------- /src/euler/exactfunc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/exactfunc.f90 -------------------------------------------------------------------------------- /src/euler/flux/exact_riemann.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/exact_riemann.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_ausmd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_ausmd.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_ausmdv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_ausmdv.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_central.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_central.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_godunov.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_godunov.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_hll.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_hll.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_hllc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_hllc.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_hlle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_hlle.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_lax_friedrichs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_lax_friedrichs.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_roe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_roe.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_steger_warming.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_steger_warming.f90 -------------------------------------------------------------------------------- /src/euler/flux/flux_van_leer.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/flux_van_leer.f90 -------------------------------------------------------------------------------- /src/euler/flux/fluxcalculation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/flux/fluxcalculation.f90 -------------------------------------------------------------------------------- /src/euler/primcons.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/primcons.f90 -------------------------------------------------------------------------------- /src/euler/source.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/euler/source.f90 -------------------------------------------------------------------------------- /src/fv/fv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/fv/fv.f90 -------------------------------------------------------------------------------- /src/fv/fv_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/fv/fv_vars.f90 -------------------------------------------------------------------------------- /src/globals.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/globals.f90 -------------------------------------------------------------------------------- /src/initialcondition/initialcondition.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/initialcondition/initialcondition.f90 -------------------------------------------------------------------------------- /src/initialcondition/initialcondition_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/initialcondition/initialcondition_vars.f90 -------------------------------------------------------------------------------- /src/linearsolver/linearsolver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/linearsolver/linearsolver.f90 -------------------------------------------------------------------------------- /src/linearsolver/linearsolver_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/linearsolver/linearsolver_vars.f90 -------------------------------------------------------------------------------- /src/mesh/mesh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/mesh/mesh.f90 -------------------------------------------------------------------------------- /src/mesh/mesh_readin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/mesh/mesh_readin.f90 -------------------------------------------------------------------------------- /src/mesh/mesh_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/mesh/mesh_vars.f90 -------------------------------------------------------------------------------- /src/navierstokes/boundary/boundary.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/boundary/boundary.f90 -------------------------------------------------------------------------------- /src/navierstokes/boundary/boundary_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/boundary/boundary_vars.f90 -------------------------------------------------------------------------------- /src/navierstokes/equation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/equation.f90 -------------------------------------------------------------------------------- /src/navierstokes/equation_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/equation_vars.f90 -------------------------------------------------------------------------------- /src/navierstokes/exactfunc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/exactfunc.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/exact_riemann.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/exact_riemann.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_ausmd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_ausmd.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_ausmdv.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_ausmdv.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_central.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_central.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_godunov.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_godunov.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_hll.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_hll.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_hllc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_hllc.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_hlle.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_hlle.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_lax_friedrichs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_lax_friedrichs.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_roe.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_roe.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_steger_warming.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_steger_warming.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/flux_van_leer.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/flux_van_leer.f90 -------------------------------------------------------------------------------- /src/navierstokes/flux/fluxcalculation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/flux/fluxcalculation.f90 -------------------------------------------------------------------------------- /src/navierstokes/primcons.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/primcons.f90 -------------------------------------------------------------------------------- /src/navierstokes/source.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/navierstokes/source.f90 -------------------------------------------------------------------------------- /src/output/output.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/output/output.f90 -------------------------------------------------------------------------------- /src/output/output_cgns.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/output/output_cgns.f90 -------------------------------------------------------------------------------- /src/output/output_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/output/output_vars.f90 -------------------------------------------------------------------------------- /src/readin/isovaryingstring.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/readin/isovaryingstring.f90 -------------------------------------------------------------------------------- /src/readin/readin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/readin/readin.f90 -------------------------------------------------------------------------------- /src/readin/readin_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/readin/readin_vars.f90 -------------------------------------------------------------------------------- /src/readin/readintools.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/readin/readintools.f90 -------------------------------------------------------------------------------- /src/reconstruction/limiter.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/reconstruction/limiter.f90 -------------------------------------------------------------------------------- /src/reconstruction/reconstruction.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/reconstruction/reconstruction.f90 -------------------------------------------------------------------------------- /src/reconstruction/reconstruction_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/reconstruction/reconstruction_vars.f90 -------------------------------------------------------------------------------- /src/srcfiles.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/srcfiles.mk -------------------------------------------------------------------------------- /src/timedisc/calctimestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/timedisc/calctimestep.f90 -------------------------------------------------------------------------------- /src/timedisc/explicittimestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/timedisc/explicittimestep.f90 -------------------------------------------------------------------------------- /src/timedisc/implicittimestep.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/timedisc/implicittimestep.f90 -------------------------------------------------------------------------------- /src/timedisc/timedisc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/timedisc/timedisc.f90 -------------------------------------------------------------------------------- /src/timedisc/timedisc_vars.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/src/timedisc/timedisc_vars.f90 -------------------------------------------------------------------------------- /utils/NS_calculon2D.mw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/NS_calculon2D.mw -------------------------------------------------------------------------------- /utils/builddeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/builddeps -------------------------------------------------------------------------------- /utils/convergence_test/analyze_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/analyze_functions.py -------------------------------------------------------------------------------- /utils/convergence_test/change_flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/change_flux -------------------------------------------------------------------------------- /utils/convergence_test/convergence_1d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/convergence_1d -------------------------------------------------------------------------------- /utils/convergence_test/convergence_2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/convergence_2d -------------------------------------------------------------------------------- /utils/convergence_test/execute_cfdfv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/execute_cfdfv.py -------------------------------------------------------------------------------- /utils/convergence_test/modify_prm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/convergence_test/modify_prm.py -------------------------------------------------------------------------------- /utils/csvdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/csvdiff.py -------------------------------------------------------------------------------- /utils/makeCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/makeCheck.sh -------------------------------------------------------------------------------- /utils/relcleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/relcleanup.sh -------------------------------------------------------------------------------- /utils/updateReferences.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexi-framework/cfdfv/HEAD/utils/updateReferences.sh --------------------------------------------------------------------------------