├── .circleci └── config.yml ├── .gitignore ├── Doxyfile ├── Makefile ├── README.md ├── SConstruct ├── analytic ├── afd.py ├── enrs.py ├── oblique_shock.py └── sedov_taylor.py ├── convergence ├── acoustic_1d │ ├── base │ │ ├── data_file.txt │ │ ├── plotit.py │ │ ├── test.cpp │ │ ├── test.py │ │ └── test.py_old │ ├── eulerian_arepo │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── eulerian_first_order │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── eulerian_second_order │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian_arepo │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian_first_order │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ └── lagrangian_second_order │ │ ├── plotit.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py ├── acoustic_2d │ └── base │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py ├── automaker.py ├── collect_data.py ├── convergence_curve.py ├── discontinuous_advection_1d │ └── base │ │ ├── data_file.txt │ │ ├── plotit.py │ │ ├── test.cpp │ │ ├── test.py │ │ └── test.py_old ├── discontinuous_advection_1d_2 │ └── base │ │ ├── data_file.txt │ │ ├── plotit.py │ │ ├── test.cpp │ │ ├── test.py │ │ └── test.py_old ├── execute_all_runs.py ├── new_run_tests.py ├── prep_dif_res_runs.py ├── run_tests.py ├── simple_waves_1d │ ├── eulerian_arepo │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── eulerian_first_order │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── eulerian_second_order │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian_arepo │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian_first_order │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ └── lagrangian_second_order │ │ ├── data_file.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py ├── simple_waves_2d │ ├── eulerian_first_order │ │ ├── draw_rad_prof.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── eulerian_second_order │ │ ├── draw_rad_prof.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian_first_order │ │ ├── draw_rad_prof.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ └── lagrangian_second_order │ │ ├── draw_rad_prof.py │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py ├── smooth_advection_1d │ └── base │ │ ├── data_file.txt │ │ ├── plotit.py │ │ ├── test.cpp │ │ ├── test.py │ │ └── test.py_old ├── smooth_advection_2d │ ├── base │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ ├── lagrangian │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ └── round_cells │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py ├── standing_driven_waves │ ├── eulerian_first_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt │ ├── eulerian_second_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt │ ├── lagrangian_first_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt │ └── lagrangian_second_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt ├── standing_driven_waves_1d │ ├── eulerian_first_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt │ └── eulerian_second_order │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt ├── tabula_rasa.py └── two_rarefaction_1d │ └── base │ ├── data_file.txt │ ├── draw_profiles.py │ ├── test.cpp │ └── test.py ├── examples ├── Noh.cpp ├── binary_outflow.cpp ├── binary_outflow.hpp ├── binary_star.cpp ├── collide_density.cpp ├── collide_density.hpp ├── collision.cpp ├── disc_self_gravity.cpp ├── sedov_taylor.cpp ├── sedov_taylor_2nd_order.cpp ├── sedov_taylor_3d.cpp ├── sedov_taylor_error.cpp ├── sedov_taylor_force.cpp ├── sedov_taylor_heat.cpp ├── sedov_taylor_moving_mesh.cpp ├── sedov_taylor_outputs.cpp ├── sedov_taylor_parallel.cpp ├── sedov_taylor_restart.cpp └── sod_example.cpp ├── homebrew_makefile.py ├── mainpage.h ├── profiling └── test.cpp ├── refactoring_tools └── convert_old_to_new_type_cast.py ├── runs └── Makefile ├── source ├── 3D │ ├── GeometryCommon │ │ ├── Delaunay3D.cpp │ │ ├── Delaunay3D.hpp │ │ ├── Face.cpp │ │ ├── Face.hpp │ │ ├── HilbertOrder3D.cpp │ │ ├── HilbertOrder3D.hpp │ │ ├── HilbertOrder3D_Utils.cpp │ │ ├── HilbertOrder3D_Utils.hpp │ │ ├── Intersections.cpp │ │ ├── Intersections.hpp │ │ ├── Mat33.hpp │ │ ├── Mat44.hpp │ │ ├── Predicates3D.cpp │ │ ├── Predicates3D.hpp │ │ ├── RoundGrid3D.cpp │ │ ├── RoundGrid3D.hpp │ │ ├── Tessellation3D.cpp │ │ ├── Tessellation3D.hpp │ │ ├── Tetrahedron.cpp │ │ ├── Tetrahedron.hpp │ │ ├── Vector3D.cpp │ │ ├── Vector3D.hpp │ │ ├── Voronoi3D.cpp │ │ ├── Voronoi3D.hpp │ │ ├── hdf_write.cpp │ │ ├── hdf_write.hpp │ │ └── predicates.cxx │ └── r3d │ │ ├── Intersection3D.cpp │ │ ├── Intersection3D.hpp │ │ ├── r3d.c │ │ └── r3d.h ├── ANN │ ├── ANN.cpp │ ├── ANN.h │ ├── ANNperf.h │ ├── ANNx.h │ ├── bd_fix_rad_search.cpp │ ├── bd_pr_search.cpp │ ├── bd_search.cpp │ ├── bd_tree.cpp │ ├── bd_tree.h │ ├── kd_dump.cpp │ ├── kd_fix_rad_search.cpp │ ├── kd_fix_rad_search.h │ ├── kd_pr_search.cpp │ ├── kd_pr_search.h │ ├── kd_search.cpp │ ├── kd_search.h │ ├── kd_split.cpp │ ├── kd_split.h │ ├── kd_tree.cpp │ ├── kd_tree.h │ ├── kd_util.cpp │ ├── kd_util.h │ ├── pr_queue.h │ └── pr_queue_k.h ├── convergence │ ├── choose_between.hpp │ ├── external_data.cpp │ └── external_data.hpp ├── misc │ ├── bisection.cpp │ ├── bisection.hpp │ ├── cached_lazy_list.hpp │ ├── func_1_var.cpp │ ├── func_1_var.hpp │ ├── hdf5_utils.cpp │ ├── hdf5_utils.hpp │ ├── horner.cpp │ ├── horner.hpp │ ├── int2str.cpp │ ├── int2str.hpp │ ├── io3D.cpp │ ├── io3D.hpp │ ├── lazy_list.hpp │ ├── mesh_generator.cpp │ ├── mesh_generator.hpp │ ├── mesh_generator3D.cpp │ ├── mesh_generator3D.hpp │ ├── serializable.cpp │ ├── serializable.hpp │ ├── simple_io.cpp │ ├── simple_io.hpp │ ├── triplet.hpp │ ├── universal_error.cpp │ ├── universal_error.hpp │ ├── utils.cpp │ ├── utils.hpp │ └── vector_initialiser.hpp ├── mpi │ ├── ConstNumberPerProc.cpp │ ├── ConstNumberPerProc.hpp │ ├── ConstNumberPerProc3D.cpp │ ├── ConstNumberPerProc3D.hpp │ ├── HilbertProcPositions.cpp │ ├── HilbertProcPositions.hpp │ ├── MeshPointsMPI.cpp │ ├── MeshPointsMPI.hpp │ ├── ProcessorUpdate.cpp │ ├── ProcessorUpdate.hpp │ ├── ProcessorUpdate3D.cpp │ ├── ProcessorUpdate3D.hpp │ ├── SetLoad.cpp │ ├── SetLoad.hpp │ ├── SetLoad3D.cpp │ ├── SetLoad3D.hpp │ ├── SingleLineProcMove.cpp │ ├── SingleLineProcMove.hpp │ ├── mpi_commands.cpp │ └── mpi_commands.hpp ├── newtonian │ ├── common │ │ ├── LagrangianHLLC.cpp │ │ ├── LagrangianHLLC.hpp │ │ ├── LagrangianHLLC3D.cpp │ │ ├── LagrangianHLLC3D.hpp │ │ ├── Tillotson.cpp │ │ ├── Tillotson.hpp │ │ ├── TillotsonOrg.cpp │ │ ├── TillotsonOrg.hpp │ │ ├── equation_of_state.cpp │ │ ├── equation_of_state.hpp │ │ ├── ersig.cpp │ │ ├── ersig.hpp │ │ ├── hllc.cpp │ │ ├── hllc.hpp │ │ ├── hydrodynamic_variables.cpp │ │ ├── hydrodynamic_variables.hpp │ │ ├── hydrodynamics.cpp │ │ ├── hydrodynamics.hpp │ │ ├── ideal_gas.cpp │ │ ├── ideal_gas.hpp │ │ ├── riemann_solver.cpp │ │ └── riemann_solver.hpp │ ├── one_dimensional │ │ ├── arepo_interp.cpp │ │ ├── arepo_interp.hpp │ │ ├── boundary_conditions_1d.cpp │ │ ├── boundary_conditions_1d.hpp │ │ ├── cylindrical_complementary_1d.cpp │ │ ├── cylindrical_complementary_1d.hpp │ │ ├── eos_consistent1d.cpp │ │ ├── eos_consistent1d.hpp │ │ ├── eulerian1d.cpp │ │ ├── eulerian1d.hpp │ │ ├── hdf5_diagnostics1d.cpp │ │ ├── hdf5_diagnostics1d.hpp │ │ ├── hdsim.cpp │ │ ├── hdsim.hpp │ │ ├── lagrangian1d.cpp │ │ ├── lagrangian1d.hpp │ │ ├── outflow1d.cpp │ │ ├── outflow1d.hpp │ │ ├── pcm1d.cpp │ │ ├── pcm1d.hpp │ │ ├── periodic_1d.cpp │ │ ├── periodic_1d.hpp │ │ ├── physical_geometry_1d.cpp │ │ ├── physical_geometry_1d.hpp │ │ ├── plm1d.cpp │ │ ├── plm1d.hpp │ │ ├── rigid_wall_1d.cpp │ │ ├── rigid_wall_1d.hpp │ │ ├── source_term_1d.cpp │ │ ├── source_term_1d.hpp │ │ ├── spatial_distribution1d.cpp │ │ ├── spatial_distribution1d.hpp │ │ ├── spatial_reconstruction1d.cpp │ │ ├── spatial_reconstruction1d.hpp │ │ ├── vertex_motion.cpp │ │ ├── vertex_motion.hpp │ │ ├── zero_force_1d.cpp │ │ └── zero_force_1d.hpp │ ├── test_1d │ │ ├── acoustic.cpp │ │ ├── acoustic.hpp │ │ ├── collela.cpp │ │ ├── collela.hpp │ │ ├── main_loop_1d.cpp │ │ ├── main_loop_1d.hpp │ │ ├── simple_waves_ideal_gas.cpp │ │ ├── simple_waves_ideal_gas.hpp │ │ ├── sine_wave.cpp │ │ └── sine_wave.hpp │ ├── test_2d │ │ ├── RT.cpp │ │ ├── RT.hpp │ │ ├── clip_grid.cpp │ │ ├── clip_grid.hpp │ │ ├── consecutive_snapshots.cpp │ │ ├── consecutive_snapshots.hpp │ │ ├── contour.cpp │ │ ├── contour.hpp │ │ ├── index2filename.cpp │ │ ├── index2filename.hpp │ │ ├── kill_switch.cpp │ │ ├── kill_switch.hpp │ │ ├── main_loop_2d.cpp │ │ ├── main_loop_2d.hpp │ │ ├── multiple_diagnostics.cpp │ │ ├── multiple_diagnostics.hpp │ │ ├── noh2d │ │ │ ├── noh_amr.cpp │ │ │ └── noh_amr.hpp │ │ ├── piecewise.cpp │ │ ├── piecewise.hpp │ │ ├── profile_1d.cpp │ │ ├── profile_1d.hpp │ │ ├── random_pert.cpp │ │ ├── random_pert.hpp │ │ ├── trigger.cpp │ │ └── trigger.hpp │ ├── three_dimensional │ │ ├── AMR3D.cpp │ │ ├── AMR3D.hpp │ │ ├── ANNSelfGravity.cpp │ │ ├── ANNSelfGravity.hpp │ │ ├── ConditionActionFlux1.cpp │ │ ├── ConditionActionFlux1.hpp │ │ ├── ConditionExtensiveUpdater3D.cpp │ │ ├── ConditionExtensiveUpdater3D.hpp │ │ ├── ConservativeForce3D.cpp │ │ ├── ConservativeForce3D.hpp │ │ ├── CourantFriedrichsLewy.cpp │ │ ├── CourantFriedrichsLewy.hpp │ │ ├── Ghost3D.cpp │ │ ├── Ghost3D.hpp │ │ ├── Hllc3D.cpp │ │ ├── Hllc3D.hpp │ │ ├── Hllc3D_energy.cpp │ │ ├── Hllc3D_energy.hpp │ │ ├── Lagrangian3D.cpp │ │ ├── Lagrangian3D.hpp │ │ ├── LagrangianExtensiveUpdater3D.cpp │ │ ├── LagrangianExtensiveUpdater3D.hpp │ │ ├── LinearGauss3D.cpp │ │ ├── LinearGauss3D.hpp │ │ ├── Lmotion3D.cpp │ │ ├── Lmotion3D.hpp │ │ ├── MonopoleSelfGravity3D.cpp │ │ ├── MonopoleSelfGravity3D.hpp │ │ ├── OpticalDepthCalc.cpp │ │ ├── OpticalDepthCalc.hpp │ │ ├── PCM3D.cpp │ │ ├── PCM3D.hpp │ │ ├── QuadrupoleGravity3D.cpp │ │ ├── QuadrupoleGravity3D.hpp │ │ ├── RiemannSolver3D.cpp │ │ ├── RiemannSolver3D.hpp │ │ ├── RoundCells3D.cpp │ │ ├── RoundCells3D.hpp │ │ ├── SourceTerm3D.cpp │ │ ├── SourceTerm3D.hpp │ │ ├── SpatialReconstruction3D.cpp │ │ ├── SpatialReconstruction3D.hpp │ │ ├── cell_updater_3d.cpp │ │ ├── cell_updater_3d.hpp │ │ ├── computational_cell.cpp │ │ ├── computational_cell.hpp │ │ ├── conserved_3d.cpp │ │ ├── conserved_3d.hpp │ │ ├── default_cell_updater.cpp │ │ ├── default_cell_updater.hpp │ │ ├── default_extensive_updater.cpp │ │ ├── default_extensive_updater.hpp │ │ ├── eulerian_3d.cpp │ │ ├── eulerian_3d.hpp │ │ ├── extensive_updater3d.cpp │ │ ├── extensive_updater3d.hpp │ │ ├── flux_calculator_3d.cpp │ │ ├── flux_calculator_3d.hpp │ │ ├── hdf5_diagnostics_3d.cpp~ │ │ ├── hdf5_diagnostics_3d.hpp~ │ │ ├── hdsim_3d.cpp │ │ ├── hdsim_3d.hpp │ │ ├── point_motion_3d.cpp │ │ ├── point_motion_3d.hpp │ │ ├── time_step_function3D.cpp │ │ └── time_step_function3D.hpp │ └── two_dimensional │ │ ├── AreaFix.cpp │ │ ├── AreaFix.hpp │ │ ├── ColdFlowsExtensiveCalculator.cpp │ │ ├── ColdFlowsExtensiveCalculator.hpp │ │ ├── ConditionExtensiveUpdater.cpp │ │ ├── ConditionExtensiveUpdater.hpp │ │ ├── GhostPointGenerator.cpp │ │ ├── GhostPointGenerator.hpp │ │ ├── HalfPeriodicEdgeMotion.cpp │ │ ├── HalfPeriodicEdgeMotion.hpp │ │ ├── OuterBoundary.cpp │ │ ├── OuterBoundary.hpp │ │ ├── RefineStrategy.cpp │ │ ├── RefineStrategy.hpp │ │ ├── RemovalStrategy.cpp │ │ ├── RemovalStrategy.hpp │ │ ├── ResetDump.cpp │ │ ├── ResetDump.hpp │ │ ├── SourceTerm.cpp │ │ ├── SourceTerm.hpp │ │ ├── amr.cpp │ │ ├── amr.hpp │ │ ├── cache_data.cpp │ │ ├── cache_data.hpp │ │ ├── cell_updater_2d.cpp │ │ ├── cell_updater_2d.hpp │ │ ├── computational_cell_2d.cpp │ │ ├── computational_cell_2d.hpp │ │ ├── condition_action_sequence.cpp │ │ ├── condition_action_sequence.hpp │ │ ├── condition_action_sequence_2.cpp │ │ ├── condition_action_sequence_2.hpp │ │ ├── diagnostics.cpp │ │ ├── diagnostics.hpp │ │ ├── edge_velocity_calculator.cpp │ │ ├── edge_velocity_calculator.hpp │ │ ├── extensive.cpp │ │ ├── extensive.hpp │ │ ├── extensive_updater.cpp │ │ ├── extensive_updater.hpp │ │ ├── flux_calculator_2d.cpp │ │ ├── flux_calculator_2d.hpp │ │ ├── geometric_outer_boundaries │ │ ├── HalfPeriodicBox.cpp │ │ ├── HalfPeriodicBox.hpp │ │ ├── PeriodicBox.cpp │ │ ├── PeriodicBox.hpp │ │ ├── SquareBox.cpp │ │ └── SquareBox.hpp │ │ ├── ghost_point_generators │ │ ├── ConstantPrimitiveGenerator.cpp │ │ ├── ConstantPrimitiveGenerator.hpp │ │ ├── FreeFlowGhostGenerator.cpp │ │ ├── FreeFlowGhostGenerator.hpp │ │ ├── NoGhostGenerator.hpp │ │ ├── PeriodicGhostGenerator.cpp │ │ ├── PeriodicGhostGenerator.hpp │ │ ├── RigidWallGenerator.cpp │ │ ├── RigidWallGenerator.hpp │ │ ├── SeveralGhostGenerators.cpp │ │ └── SeveralGhostGenerators.hpp │ │ ├── hdf5_diagnostics.cpp │ │ ├── hdf5_diagnostics.hpp │ │ ├── hdsim2d.cpp │ │ ├── hdsim2d.hpp │ │ ├── hydrodynamics_2d.cpp │ │ ├── hydrodynamics_2d.hpp │ │ ├── interpolations │ │ ├── LinearGaussImproved.cpp │ │ ├── LinearGaussImproved.hpp │ │ ├── PCM.cpp │ │ └── PCM.hpp │ │ ├── modular_flux_calculator.cpp │ │ ├── modular_flux_calculator.hpp │ │ ├── periodic_edge_velocities.cpp │ │ ├── periodic_edge_velocities.hpp │ │ ├── physical_geometry.cpp │ │ ├── physical_geometry.hpp │ │ ├── point_motion.cpp │ │ ├── point_motion.hpp │ │ ├── point_motions │ │ ├── CentroidMotion.cpp │ │ ├── CentroidMotion.hpp │ │ ├── CustomMotion.cpp │ │ ├── CustomMotion.hpp │ │ ├── Header.h │ │ ├── duffell.cpp │ │ ├── duffell.hpp │ │ ├── eulerian.cpp │ │ ├── eulerian.hpp │ │ ├── lagrangian.cpp │ │ ├── lagrangian.hpp │ │ ├── round_cells.cpp │ │ └── round_cells.hpp │ │ ├── simple_cell_updater.cpp │ │ ├── simple_cell_updater.hpp │ │ ├── simple_cfl.cpp │ │ ├── simple_cfl.hpp │ │ ├── simple_extensive_updater.cpp │ │ ├── simple_extensive_updater.hpp │ │ ├── simple_flux_calculator.cpp │ │ ├── simple_flux_calculator.hpp │ │ ├── source_terms │ │ ├── CenterGravity.cpp │ │ ├── CenterGravity.hpp │ │ ├── ConservativeForce.cpp │ │ ├── ConservativeForce.hpp │ │ ├── ConstantGravity.cpp │ │ ├── ConstantGravity.hpp │ │ ├── SeveralSources.cpp │ │ ├── SeveralSources.hpp │ │ ├── cylindrical_complementary.cpp │ │ ├── cylindrical_complementary.hpp │ │ ├── cylindrical_geometry.cpp │ │ ├── cylindrical_geometry.hpp │ │ ├── improved_center_gravity.cpp │ │ ├── improved_center_gravity.hpp │ │ ├── zero_force.cpp │ │ └── zero_force.hpp │ │ ├── spatial_distribution2d.cpp │ │ ├── spatial_distribution2d.hpp │ │ ├── spatial_distributions │ │ ├── KeplerVelocity.cpp │ │ ├── KeplerVelocity.hpp │ │ ├── Line2D.cpp │ │ ├── Line2D.hpp │ │ ├── PowerLawDistribution.cpp │ │ ├── PowerLawDistribution.hpp │ │ ├── SineSepar.cpp │ │ ├── SineSepar.hpp │ │ ├── uniform2d.cpp │ │ └── uniform2d.hpp │ │ ├── spatial_reconstruction.cpp │ │ ├── spatial_reconstruction.hpp │ │ ├── stationary_box.cpp │ │ ├── stationary_box.hpp │ │ ├── time_step_function.cpp │ │ └── time_step_function.hpp ├── relativistic │ ├── Hllc3D_SR.cpp │ ├── Hllc3D_SR.hpp │ ├── ideal_gas_SR.cpp │ └── ideal_gas_SR.hpp └── tessellation │ ├── BCSides.cpp │ ├── BCSides.hpp │ ├── ConvexHull.cpp │ ├── ConvexHull.hpp │ ├── Delaunay.cpp │ ├── Delaunay.hpp │ ├── Edge.cpp │ ├── Edge.hpp │ ├── EdgeLengthCorrect.cpp │ ├── EdgeLengthCorrect.hpp │ ├── HilbertOrder.cpp │ ├── HilbertOrder.hpp │ ├── PolyIntersect.cpp │ ├── PolyIntersect.hpp │ ├── RoundGrid.cpp │ ├── RoundGrid.hpp │ ├── VoronoiMesh.cpp │ ├── VoronoiMesh.hpp │ ├── calc_face_vertex_velocity.cpp │ ├── calc_face_vertex_velocity.hpp │ ├── delaunay_logger.cpp │ ├── delaunay_logger.hpp │ ├── exactmath.cpp │ ├── exactmath.hpp │ ├── facet.cpp │ ├── facet.hpp │ ├── find_affected_cells.cpp │ ├── find_affected_cells.hpp │ ├── geometry.cpp │ ├── geometry.hpp │ ├── geotests.cpp │ ├── geotests.hpp │ ├── hdf5_logger.cpp │ ├── hdf5_logger.hpp │ ├── polygon_overlap_area.cpp │ ├── polygon_overlap_area.hpp │ ├── right_rectangle.cpp │ ├── right_rectangle.hpp │ ├── shape_2d.cpp │ ├── shape_2d.hpp │ ├── static_voronoi_mesh.cpp │ ├── static_voronoi_mesh.hpp │ ├── tessellation.cpp │ ├── tessellation.hpp │ ├── triangle_area.cpp │ ├── triangle_area.hpp │ ├── voronoi_logger.cpp │ └── voronoi_logger.hpp ├── tests ├── Makefile ├── automaker.py ├── newtonian │ ├── common │ │ ├── hll_acoustic_eulerian │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── hll_advection_eulerian │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── hydrostatic_convection_mass_flux │ │ │ ├── show_mesh_points.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ └── primitive_subscript │ │ │ ├── show_mesh_points.py │ │ │ ├── test.cpp │ │ │ └── test.py │ ├── one_dimensional │ │ ├── afd_1o │ │ │ ├── adiabatic_index.txt │ │ │ ├── ambient_density.txt │ │ │ ├── ambient_pressure.txt │ │ │ ├── ambient_velocity.txt │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── afd_2o_no_limiters │ │ │ ├── adiabatic_index.txt │ │ │ ├── ambient_density.txt │ │ │ ├── ambient_pressure.txt │ │ │ ├── ambient_velocity.txt │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── afd_2o_with_limiters │ │ │ ├── adiabatic_index.txt │ │ │ ├── ambient_density.txt │ │ │ ├── ambient_pressure.txt │ │ │ ├── ambient_velocity.txt │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── noh_ersig_pcm │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── noh_ersig_plm │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── periodic_bc │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── plm_interpolation │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── pure_advection │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── pure_advection_2o │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_1 │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_1_exact │ │ │ ├── convert2png.py │ │ │ ├── plot_flux.py │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_1_lagrangian │ │ │ ├── convert2png.py │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_2 │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_2_exact │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_2_lagrangian │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_3 │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_3_exact │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_problem_3_lagrangian │ │ │ ├── plotit.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_profiles_1 │ │ │ ├── draw_profiles.py │ │ │ ├── resolution.txt │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_profiles_1_2o │ │ │ ├── resolution.txt │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_profiles_1_lagrangian │ │ │ ├── draw_profiles.py │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_profiles_1_plm │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── sedov_taylor_o1e │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── sedov_taylor_o1l │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── simple_waves │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── simple_waves_2o │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── standing_waves_1o │ │ │ ├── adiabatic_index.txt │ │ │ ├── amplitude.txt │ │ │ ├── mean_density.txt │ │ │ ├── mean_pressure.txt │ │ │ ├── phase_velocity.txt │ │ │ ├── test.cpp │ │ │ ├── test.py │ │ │ └── wavelength.txt │ │ └── standing_waves_2o │ │ │ ├── adiabatic_index.txt │ │ │ ├── amplitude.txt │ │ │ ├── mean_density.txt │ │ │ ├── mean_pressure.txt │ │ │ ├── phase_velocity.txt │ │ │ ├── test.cpp │ │ │ ├── test.py │ │ │ └── wavelength.txt │ ├── three_dimensional │ │ ├── conservation_lagrangian │ │ │ ├── test.cpp │ │ │ └── test.py │ │ ├── riemann_profiles_1 │ │ │ ├── test.cpp │ │ │ └── test.py │ │ └── sedov_taylor │ │ │ ├── test.cpp │ │ │ └── test.py │ └── two_dimensional │ │ ├── acoustic │ │ ├── adiabatic_index.txt │ │ ├── ambient_density.txt │ │ ├── ambient_pressure.txt │ │ ├── amplitude.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── width.txt │ │ ├── amrconserve │ │ ├── test.cpp │ │ └── test.py │ │ ├── amrconserve2 │ │ ├── test.cpp │ │ └── test.py │ │ ├── conservation_cylindrical │ │ ├── test.cpp │ │ └── test.py │ │ ├── conservation_eulerian │ │ ├── test.cpp │ │ └── test.py │ │ ├── conservation_lagrangian │ │ ├── test.cpp │ │ └── test.py │ │ ├── driven_waves_1o │ │ ├── draw_prof_1d.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── driven_waves_2o │ │ ├── draw_prof_1d.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── eulerian_sedov_taylor │ │ ├── draw_rad_prof.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── geometric_reflection │ │ ├── show_mesh_points.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── gresho_vortex_1o │ │ ├── test.cpp │ │ └── test.py │ │ ├── gresho_vortex_2o │ │ ├── test.cpp │ │ └── test.py │ │ ├── gresho_vortex_e1o │ │ ├── test.cpp │ │ └── test.py │ │ ├── hydrostatic_moving_mesh │ │ ├── test.cpp │ │ └── test.py │ │ ├── hydrostatic_moving_mesh_2 │ │ ├── test.cpp │ │ └── test.py │ │ ├── lloyd_method │ │ ├── test.cpp │ │ └── test.py │ │ ├── noh2d │ │ ├── adiabatic_index.txt │ │ ├── collapse_velocity.txt │ │ ├── initial_density.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ │ ├── noh2dNonConserve │ │ ├── adiabatic_index.txt │ │ ├── collapse_velocity.txt │ │ ├── initial_density.txt │ │ ├── resolution.txt │ │ ├── test.cpp │ │ └── test.py │ │ ├── oblique_shock │ │ ├── test.cpp │ │ └── test.py │ │ ├── rerun │ │ ├── test.cpp │ │ └── test.py │ │ ├── riemann_profiles_messy_grid │ │ ├── draw_prof_1d.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── riemann_profiles_messy_grid_2 │ │ ├── draw_prof_1d.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── sedov_taylor_messy_grid │ │ ├── draw_rad_prof.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── simple_waves │ │ ├── adiabatic_index.txt │ │ ├── draw_rad_prof.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── simple_waves_plm_2 │ │ ├── adiabatic_index.txt │ │ ├── draw_rad_prof.py │ │ ├── test.cpp │ │ └── test.py │ │ ├── spherical_sedov_taylor │ │ ├── test.cpp │ │ └── test.py │ │ ├── standing_driven_wave_1o │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt │ │ └── standing_driven_wave_2o │ │ ├── adiabatic_index.txt │ │ ├── amplitude.txt │ │ ├── draw_prof_1d.py │ │ ├── mean_density.txt │ │ ├── mean_pressure.txt │ │ ├── phase_velocity.txt │ │ ├── test.cpp │ │ ├── test.py │ │ └── wavelength.txt ├── parallel_run_tests.py ├── rich_build.py ├── run_tests.py └── tessellation │ ├── calc_face_vertex_velocity │ ├── test.cpp │ └── test.py │ └── parallel_delaunay │ ├── test.cpp │ └── test.py └── visualisation ├── one_dimensional ├── matlab │ └── read_hdf1D.m └── python │ └── plotit.py └── two_dimensional ├── matlab ├── ReadTess.m ├── RichReadDouble.m ├── RichReadFloat.m ├── read_hdf.m ├── read_hdfMPI.m ├── read_hdfMPIold.m └── read_hdfold.m └── python ├── hdf5_voronoi_plot.py ├── multiplot.py ├── patch_plot.py └── plot_unstructured.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/SConstruct -------------------------------------------------------------------------------- /analytic/afd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/analytic/afd.py -------------------------------------------------------------------------------- /analytic/enrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/analytic/enrs.py -------------------------------------------------------------------------------- /analytic/oblique_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/analytic/oblique_shock.py -------------------------------------------------------------------------------- /analytic/sedov_taylor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/analytic/sedov_taylor.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/base/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | s 3 | 2 4 | 30 5 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/base/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/base/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/base/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/base/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/base/test.py_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/base/test.py_old -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_arepo/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_arepo/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_arepo/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_arepo/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_arepo/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_arepo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_arepo/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_first_order/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_first_order/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_first_order/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_second_order/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_second_order/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/eulerian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/eulerian_second_order/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_arepo/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_arepo/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_arepo/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_arepo/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_arepo/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_arepo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_arepo/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_first_order/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_first_order/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_first_order/test.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_second_order/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_second_order/plotit.py -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_1d/lagrangian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_1d/lagrangian_second_order/test.py -------------------------------------------------------------------------------- /convergence/acoustic_2d/base/data_file.txt: -------------------------------------------------------------------------------- 1 | l 2 | s 3 | 1 4 | 30 5 | -------------------------------------------------------------------------------- /convergence/acoustic_2d/base/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/acoustic_2d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_2d/base/test.cpp -------------------------------------------------------------------------------- /convergence/acoustic_2d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/acoustic_2d/base/test.py -------------------------------------------------------------------------------- /convergence/automaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/automaker.py -------------------------------------------------------------------------------- /convergence/collect_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/collect_data.py -------------------------------------------------------------------------------- /convergence/convergence_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/convergence_curve.py -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d/base/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | s 3 | 2 4 | 30 5 | -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d/base/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d/base/plotit.py -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d/base/test.cpp -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d/base/test.py -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d/base/test.py_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d/base/test.py_old -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d_2/base/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | s 3 | 2 4 | 30 5 | -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d_2/base/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d_2/base/plotit.py -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d_2/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d_2/base/test.cpp -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d_2/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d_2/base/test.py -------------------------------------------------------------------------------- /convergence/discontinuous_advection_1d_2/base/test.py_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/discontinuous_advection_1d_2/base/test.py_old -------------------------------------------------------------------------------- /convergence/execute_all_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/execute_all_runs.py -------------------------------------------------------------------------------- /convergence/new_run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/new_run_tests.py -------------------------------------------------------------------------------- /convergence/prep_dif_res_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/prep_dif_res_runs.py -------------------------------------------------------------------------------- /convergence/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/run_tests.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_arepo/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_arepo/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_arepo/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_arepo/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_arepo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_arepo/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_first_order/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_first_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_second_order/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/eulerian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/eulerian_second_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_arepo/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_arepo/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_arepo/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_arepo/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_arepo/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_arepo/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_first_order/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_first_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_second_order/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_1d/lagrangian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_1d/lagrangian_second_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_first_order/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_first_order/draw_rad_prof.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_first_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_second_order/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_second_order/draw_rad_prof.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_2d/eulerian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/eulerian_second_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_first_order/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_first_order/draw_rad_prof.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_first_order/test.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_second_order/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_second_order/draw_rad_prof.py -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/simple_waves_2d/lagrangian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/simple_waves_2d/lagrangian_second_order/test.py -------------------------------------------------------------------------------- /convergence/smooth_advection_1d/base/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | s 3 | 2 4 | 20 5 | -------------------------------------------------------------------------------- /convergence/smooth_advection_1d/base/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_1d/base/plotit.py -------------------------------------------------------------------------------- /convergence/smooth_advection_1d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_1d/base/test.cpp -------------------------------------------------------------------------------- /convergence/smooth_advection_1d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_1d/base/test.py -------------------------------------------------------------------------------- /convergence/smooth_advection_1d/base/test.py_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_1d/base/test.py_old -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/base/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/base/test.cpp -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/base/test.py -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/lagrangian/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/lagrangian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/lagrangian/test.cpp -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/lagrangian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/lagrangian/test.py -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/round_cells/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/round_cells/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/round_cells/test.cpp -------------------------------------------------------------------------------- /convergence/smooth_advection_2d/round_cells/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/smooth_advection_2d/round_cells/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 1e-6 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/eulerian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/eulerian_first_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_first_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 1e-3 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/eulerian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/eulerian_second_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves/eulerian_second_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.5 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/lagrangian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/lagrangian_first_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_first_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.5 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/lagrangian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves/lagrangian_second_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves/lagrangian_second_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves_1d/eulerian_first_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves_1d/eulerian_first_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_first_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/amplitude.txt: -------------------------------------------------------------------------------- 1 | 1e-6 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/resolution.txt: -------------------------------------------------------------------------------- 1 | 30 2 | -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves_1d/eulerian_second_order/test.cpp -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/standing_driven_waves_1d/eulerian_second_order/test.py -------------------------------------------------------------------------------- /convergence/standing_driven_waves_1d/eulerian_second_order/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /convergence/tabula_rasa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/tabula_rasa.py -------------------------------------------------------------------------------- /convergence/two_rarefaction_1d/base/data_file.txt: -------------------------------------------------------------------------------- 1 | e 2 | f 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /convergence/two_rarefaction_1d/base/draw_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/two_rarefaction_1d/base/draw_profiles.py -------------------------------------------------------------------------------- /convergence/two_rarefaction_1d/base/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/two_rarefaction_1d/base/test.cpp -------------------------------------------------------------------------------- /convergence/two_rarefaction_1d/base/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/convergence/two_rarefaction_1d/base/test.py -------------------------------------------------------------------------------- /examples/Noh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/Noh.cpp -------------------------------------------------------------------------------- /examples/binary_outflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/binary_outflow.cpp -------------------------------------------------------------------------------- /examples/binary_outflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/binary_outflow.hpp -------------------------------------------------------------------------------- /examples/binary_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/binary_star.cpp -------------------------------------------------------------------------------- /examples/collide_density.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/collide_density.cpp -------------------------------------------------------------------------------- /examples/collide_density.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/collide_density.hpp -------------------------------------------------------------------------------- /examples/collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/collision.cpp -------------------------------------------------------------------------------- /examples/disc_self_gravity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/disc_self_gravity.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_2nd_order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_2nd_order.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_3d.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_error.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_force.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_heat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_heat.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_moving_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_moving_mesh.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_outputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_outputs.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_parallel.cpp -------------------------------------------------------------------------------- /examples/sedov_taylor_restart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sedov_taylor_restart.cpp -------------------------------------------------------------------------------- /examples/sod_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/examples/sod_example.cpp -------------------------------------------------------------------------------- /homebrew_makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/homebrew_makefile.py -------------------------------------------------------------------------------- /mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/mainpage.h -------------------------------------------------------------------------------- /profiling/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/profiling/test.cpp -------------------------------------------------------------------------------- /refactoring_tools/convert_old_to_new_type_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/refactoring_tools/convert_old_to_new_type_cast.py -------------------------------------------------------------------------------- /runs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/runs/Makefile -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Delaunay3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Delaunay3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Delaunay3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Delaunay3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Face.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Face.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Face.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/HilbertOrder3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/HilbertOrder3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/HilbertOrder3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/HilbertOrder3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/HilbertOrder3D_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/HilbertOrder3D_Utils.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/HilbertOrder3D_Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/HilbertOrder3D_Utils.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Intersections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Intersections.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Intersections.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Intersections.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Mat33.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Mat33.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Mat44.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Mat44.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Predicates3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Predicates3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Predicates3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Predicates3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/RoundGrid3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/RoundGrid3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/RoundGrid3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/RoundGrid3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Tessellation3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Tessellation3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Tessellation3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Tessellation3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Tetrahedron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Tetrahedron.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Tetrahedron.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Tetrahedron.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Vector3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Vector3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Vector3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Vector3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Voronoi3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Voronoi3D.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/Voronoi3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/Voronoi3D.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/hdf_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/hdf_write.cpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/hdf_write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/hdf_write.hpp -------------------------------------------------------------------------------- /source/3D/GeometryCommon/predicates.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/GeometryCommon/predicates.cxx -------------------------------------------------------------------------------- /source/3D/r3d/Intersection3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/r3d/Intersection3D.cpp -------------------------------------------------------------------------------- /source/3D/r3d/Intersection3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/r3d/Intersection3D.hpp -------------------------------------------------------------------------------- /source/3D/r3d/r3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/r3d/r3d.c -------------------------------------------------------------------------------- /source/3D/r3d/r3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/3D/r3d/r3d.h -------------------------------------------------------------------------------- /source/ANN/ANN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/ANN.cpp -------------------------------------------------------------------------------- /source/ANN/ANN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/ANN.h -------------------------------------------------------------------------------- /source/ANN/ANNperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/ANNperf.h -------------------------------------------------------------------------------- /source/ANN/ANNx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/ANNx.h -------------------------------------------------------------------------------- /source/ANN/bd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/bd_fix_rad_search.cpp -------------------------------------------------------------------------------- /source/ANN/bd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/bd_pr_search.cpp -------------------------------------------------------------------------------- /source/ANN/bd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/bd_search.cpp -------------------------------------------------------------------------------- /source/ANN/bd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/bd_tree.cpp -------------------------------------------------------------------------------- /source/ANN/bd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/bd_tree.h -------------------------------------------------------------------------------- /source/ANN/kd_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_dump.cpp -------------------------------------------------------------------------------- /source/ANN/kd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_fix_rad_search.cpp -------------------------------------------------------------------------------- /source/ANN/kd_fix_rad_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_fix_rad_search.h -------------------------------------------------------------------------------- /source/ANN/kd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_pr_search.cpp -------------------------------------------------------------------------------- /source/ANN/kd_pr_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_pr_search.h -------------------------------------------------------------------------------- /source/ANN/kd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_search.cpp -------------------------------------------------------------------------------- /source/ANN/kd_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_search.h -------------------------------------------------------------------------------- /source/ANN/kd_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_split.cpp -------------------------------------------------------------------------------- /source/ANN/kd_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_split.h -------------------------------------------------------------------------------- /source/ANN/kd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_tree.cpp -------------------------------------------------------------------------------- /source/ANN/kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_tree.h -------------------------------------------------------------------------------- /source/ANN/kd_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_util.cpp -------------------------------------------------------------------------------- /source/ANN/kd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/kd_util.h -------------------------------------------------------------------------------- /source/ANN/pr_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/pr_queue.h -------------------------------------------------------------------------------- /source/ANN/pr_queue_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/ANN/pr_queue_k.h -------------------------------------------------------------------------------- /source/convergence/choose_between.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/convergence/choose_between.hpp -------------------------------------------------------------------------------- /source/convergence/external_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/convergence/external_data.cpp -------------------------------------------------------------------------------- /source/convergence/external_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/convergence/external_data.hpp -------------------------------------------------------------------------------- /source/misc/bisection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/bisection.cpp -------------------------------------------------------------------------------- /source/misc/bisection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/bisection.hpp -------------------------------------------------------------------------------- /source/misc/cached_lazy_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/cached_lazy_list.hpp -------------------------------------------------------------------------------- /source/misc/func_1_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/func_1_var.cpp -------------------------------------------------------------------------------- /source/misc/func_1_var.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/func_1_var.hpp -------------------------------------------------------------------------------- /source/misc/hdf5_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/hdf5_utils.cpp -------------------------------------------------------------------------------- /source/misc/hdf5_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/hdf5_utils.hpp -------------------------------------------------------------------------------- /source/misc/horner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/horner.cpp -------------------------------------------------------------------------------- /source/misc/horner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/horner.hpp -------------------------------------------------------------------------------- /source/misc/int2str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/int2str.cpp -------------------------------------------------------------------------------- /source/misc/int2str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/int2str.hpp -------------------------------------------------------------------------------- /source/misc/io3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/io3D.cpp -------------------------------------------------------------------------------- /source/misc/io3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/io3D.hpp -------------------------------------------------------------------------------- /source/misc/lazy_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/lazy_list.hpp -------------------------------------------------------------------------------- /source/misc/mesh_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/mesh_generator.cpp -------------------------------------------------------------------------------- /source/misc/mesh_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/mesh_generator.hpp -------------------------------------------------------------------------------- /source/misc/mesh_generator3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/mesh_generator3D.cpp -------------------------------------------------------------------------------- /source/misc/mesh_generator3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/mesh_generator3D.hpp -------------------------------------------------------------------------------- /source/misc/serializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/serializable.cpp -------------------------------------------------------------------------------- /source/misc/serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/serializable.hpp -------------------------------------------------------------------------------- /source/misc/simple_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/simple_io.cpp -------------------------------------------------------------------------------- /source/misc/simple_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/simple_io.hpp -------------------------------------------------------------------------------- /source/misc/triplet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/triplet.hpp -------------------------------------------------------------------------------- /source/misc/universal_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/universal_error.cpp -------------------------------------------------------------------------------- /source/misc/universal_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/universal_error.hpp -------------------------------------------------------------------------------- /source/misc/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/utils.cpp -------------------------------------------------------------------------------- /source/misc/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/utils.hpp -------------------------------------------------------------------------------- /source/misc/vector_initialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/misc/vector_initialiser.hpp -------------------------------------------------------------------------------- /source/mpi/ConstNumberPerProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ConstNumberPerProc.cpp -------------------------------------------------------------------------------- /source/mpi/ConstNumberPerProc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ConstNumberPerProc.hpp -------------------------------------------------------------------------------- /source/mpi/ConstNumberPerProc3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ConstNumberPerProc3D.cpp -------------------------------------------------------------------------------- /source/mpi/ConstNumberPerProc3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ConstNumberPerProc3D.hpp -------------------------------------------------------------------------------- /source/mpi/HilbertProcPositions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/HilbertProcPositions.cpp -------------------------------------------------------------------------------- /source/mpi/HilbertProcPositions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/HilbertProcPositions.hpp -------------------------------------------------------------------------------- /source/mpi/MeshPointsMPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/MeshPointsMPI.cpp -------------------------------------------------------------------------------- /source/mpi/MeshPointsMPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/MeshPointsMPI.hpp -------------------------------------------------------------------------------- /source/mpi/ProcessorUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ProcessorUpdate.cpp -------------------------------------------------------------------------------- /source/mpi/ProcessorUpdate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ProcessorUpdate.hpp -------------------------------------------------------------------------------- /source/mpi/ProcessorUpdate3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ProcessorUpdate3D.cpp -------------------------------------------------------------------------------- /source/mpi/ProcessorUpdate3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/ProcessorUpdate3D.hpp -------------------------------------------------------------------------------- /source/mpi/SetLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SetLoad.cpp -------------------------------------------------------------------------------- /source/mpi/SetLoad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SetLoad.hpp -------------------------------------------------------------------------------- /source/mpi/SetLoad3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SetLoad3D.cpp -------------------------------------------------------------------------------- /source/mpi/SetLoad3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SetLoad3D.hpp -------------------------------------------------------------------------------- /source/mpi/SingleLineProcMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SingleLineProcMove.cpp -------------------------------------------------------------------------------- /source/mpi/SingleLineProcMove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/SingleLineProcMove.hpp -------------------------------------------------------------------------------- /source/mpi/mpi_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/mpi_commands.cpp -------------------------------------------------------------------------------- /source/mpi/mpi_commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/mpi/mpi_commands.hpp -------------------------------------------------------------------------------- /source/newtonian/common/LagrangianHLLC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/LagrangianHLLC.cpp -------------------------------------------------------------------------------- /source/newtonian/common/LagrangianHLLC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/LagrangianHLLC.hpp -------------------------------------------------------------------------------- /source/newtonian/common/LagrangianHLLC3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/LagrangianHLLC3D.cpp -------------------------------------------------------------------------------- /source/newtonian/common/LagrangianHLLC3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/LagrangianHLLC3D.hpp -------------------------------------------------------------------------------- /source/newtonian/common/Tillotson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/Tillotson.cpp -------------------------------------------------------------------------------- /source/newtonian/common/Tillotson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/Tillotson.hpp -------------------------------------------------------------------------------- /source/newtonian/common/TillotsonOrg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/TillotsonOrg.cpp -------------------------------------------------------------------------------- /source/newtonian/common/TillotsonOrg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/TillotsonOrg.hpp -------------------------------------------------------------------------------- /source/newtonian/common/equation_of_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/equation_of_state.cpp -------------------------------------------------------------------------------- /source/newtonian/common/equation_of_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/equation_of_state.hpp -------------------------------------------------------------------------------- /source/newtonian/common/ersig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/ersig.cpp -------------------------------------------------------------------------------- /source/newtonian/common/ersig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/ersig.hpp -------------------------------------------------------------------------------- /source/newtonian/common/hllc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hllc.cpp -------------------------------------------------------------------------------- /source/newtonian/common/hllc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hllc.hpp -------------------------------------------------------------------------------- /source/newtonian/common/hydrodynamic_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hydrodynamic_variables.cpp -------------------------------------------------------------------------------- /source/newtonian/common/hydrodynamic_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hydrodynamic_variables.hpp -------------------------------------------------------------------------------- /source/newtonian/common/hydrodynamics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hydrodynamics.cpp -------------------------------------------------------------------------------- /source/newtonian/common/hydrodynamics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/hydrodynamics.hpp -------------------------------------------------------------------------------- /source/newtonian/common/ideal_gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/ideal_gas.cpp -------------------------------------------------------------------------------- /source/newtonian/common/ideal_gas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/ideal_gas.hpp -------------------------------------------------------------------------------- /source/newtonian/common/riemann_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/riemann_solver.cpp -------------------------------------------------------------------------------- /source/newtonian/common/riemann_solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/common/riemann_solver.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/arepo_interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/arepo_interp.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/arepo_interp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/arepo_interp.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/boundary_conditions_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/boundary_conditions_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/boundary_conditions_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/boundary_conditions_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/cylindrical_complementary_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/cylindrical_complementary_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/cylindrical_complementary_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/cylindrical_complementary_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/eos_consistent1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/eos_consistent1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/eos_consistent1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/eos_consistent1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/eulerian1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/eulerian1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/eulerian1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/eulerian1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/hdf5_diagnostics1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/hdf5_diagnostics1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/hdf5_diagnostics1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/hdf5_diagnostics1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/hdsim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/hdsim.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/hdsim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/hdsim.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/lagrangian1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/lagrangian1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/lagrangian1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/lagrangian1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/outflow1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/outflow1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/outflow1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/outflow1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/pcm1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/pcm1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/pcm1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/pcm1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/periodic_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/periodic_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/periodic_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/periodic_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/physical_geometry_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/physical_geometry_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/physical_geometry_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/physical_geometry_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/plm1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/plm1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/plm1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/plm1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/rigid_wall_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/rigid_wall_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/rigid_wall_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/rigid_wall_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/source_term_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/source_term_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/source_term_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/source_term_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/spatial_distribution1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/spatial_distribution1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/spatial_distribution1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/spatial_distribution1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/spatial_reconstruction1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/spatial_reconstruction1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/spatial_reconstruction1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/spatial_reconstruction1d.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/vertex_motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/vertex_motion.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/vertex_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/vertex_motion.hpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/zero_force_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/zero_force_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/one_dimensional/zero_force_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/one_dimensional/zero_force_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/acoustic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/acoustic.cpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/acoustic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/acoustic.hpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/collela.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/collela.cpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/collela.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/collela.hpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/main_loop_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/main_loop_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/main_loop_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/main_loop_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/simple_waves_ideal_gas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/simple_waves_ideal_gas.cpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/simple_waves_ideal_gas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/simple_waves_ideal_gas.hpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/sine_wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/sine_wave.cpp -------------------------------------------------------------------------------- /source/newtonian/test_1d/sine_wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_1d/sine_wave.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/RT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/RT.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/RT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/RT.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/clip_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/clip_grid.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/clip_grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/clip_grid.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/consecutive_snapshots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/consecutive_snapshots.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/consecutive_snapshots.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/consecutive_snapshots.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/contour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/contour.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/contour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/contour.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/index2filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/index2filename.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/index2filename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/index2filename.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/kill_switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/kill_switch.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/kill_switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/kill_switch.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/main_loop_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/main_loop_2d.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/main_loop_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/main_loop_2d.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/multiple_diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/multiple_diagnostics.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/multiple_diagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/multiple_diagnostics.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/noh2d/noh_amr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/noh2d/noh_amr.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/noh2d/noh_amr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/noh2d/noh_amr.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/piecewise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/piecewise.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/piecewise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/piecewise.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/profile_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/profile_1d.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/profile_1d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/profile_1d.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/random_pert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/random_pert.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/random_pert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/random_pert.hpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/trigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/trigger.cpp -------------------------------------------------------------------------------- /source/newtonian/test_2d/trigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/test_2d/trigger.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/AMR3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/AMR3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/AMR3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/AMR3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ANNSelfGravity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ANNSelfGravity.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ANNSelfGravity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ANNSelfGravity.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConditionActionFlux1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConditionActionFlux1.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConditionActionFlux1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConditionActionFlux1.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConditionExtensiveUpdater3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConditionExtensiveUpdater3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConditionExtensiveUpdater3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConditionExtensiveUpdater3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConservativeForce3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConservativeForce3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/ConservativeForce3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/ConservativeForce3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/CourantFriedrichsLewy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/CourantFriedrichsLewy.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/CourantFriedrichsLewy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/CourantFriedrichsLewy.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Ghost3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Ghost3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Ghost3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Ghost3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Hllc3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Hllc3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Hllc3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Hllc3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Hllc3D_energy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Hllc3D_energy.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Hllc3D_energy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Hllc3D_energy.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Lagrangian3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Lagrangian3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Lagrangian3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Lagrangian3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/LagrangianExtensiveUpdater3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/LagrangianExtensiveUpdater3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/LagrangianExtensiveUpdater3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/LagrangianExtensiveUpdater3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/LinearGauss3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/LinearGauss3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/LinearGauss3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/LinearGauss3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Lmotion3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Lmotion3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/Lmotion3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/Lmotion3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/MonopoleSelfGravity3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/MonopoleSelfGravity3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/MonopoleSelfGravity3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/MonopoleSelfGravity3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/OpticalDepthCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/OpticalDepthCalc.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/OpticalDepthCalc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/OpticalDepthCalc.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/PCM3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/PCM3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/PCM3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/PCM3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/QuadrupoleGravity3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/QuadrupoleGravity3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/QuadrupoleGravity3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/QuadrupoleGravity3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/RiemannSolver3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/RiemannSolver3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/RiemannSolver3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/RiemannSolver3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/RoundCells3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/RoundCells3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/RoundCells3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/RoundCells3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/SourceTerm3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/SourceTerm3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/SourceTerm3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/SourceTerm3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/SpatialReconstruction3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/SpatialReconstruction3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/SpatialReconstruction3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/SpatialReconstruction3D.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/cell_updater_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/cell_updater_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/cell_updater_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/cell_updater_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/computational_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/computational_cell.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/computational_cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/computational_cell.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/conserved_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/conserved_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/conserved_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/conserved_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/default_cell_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/default_cell_updater.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/default_cell_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/default_cell_updater.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/default_extensive_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/default_extensive_updater.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/default_extensive_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/default_extensive_updater.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/eulerian_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/eulerian_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/eulerian_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/eulerian_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/extensive_updater3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/extensive_updater3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/extensive_updater3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/extensive_updater3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/flux_calculator_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/flux_calculator_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/flux_calculator_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/flux_calculator_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/hdf5_diagnostics_3d.cpp~: -------------------------------------------------------------------------------- 1 | #include "hdf5_diagnostics_3d.hpp" 2 | -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/hdf5_diagnostics_3d.hpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/hdf5_diagnostics_3d.hpp~ -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/hdsim_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/hdsim_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/hdsim_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/hdsim_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/point_motion_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/point_motion_3d.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/point_motion_3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/point_motion_3d.hpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/time_step_function3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/time_step_function3D.cpp -------------------------------------------------------------------------------- /source/newtonian/three_dimensional/time_step_function3D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/three_dimensional/time_step_function3D.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/AreaFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/AreaFix.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/AreaFix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/AreaFix.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ColdFlowsExtensiveCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ColdFlowsExtensiveCalculator.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ColdFlowsExtensiveCalculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ColdFlowsExtensiveCalculator.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ConditionExtensiveUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ConditionExtensiveUpdater.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ConditionExtensiveUpdater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ConditionExtensiveUpdater.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/GhostPointGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/GhostPointGenerator.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/GhostPointGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/GhostPointGenerator.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/HalfPeriodicEdgeMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/HalfPeriodicEdgeMotion.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/HalfPeriodicEdgeMotion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/HalfPeriodicEdgeMotion.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/OuterBoundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/OuterBoundary.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/OuterBoundary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/OuterBoundary.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/RefineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/RefineStrategy.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/RefineStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/RefineStrategy.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/RemovalStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/RemovalStrategy.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/RemovalStrategy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/RemovalStrategy.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ResetDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ResetDump.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/ResetDump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/ResetDump.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/SourceTerm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/SourceTerm.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/SourceTerm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/SourceTerm.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/amr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/amr.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/amr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/amr.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/cache_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/cache_data.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/cache_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/cache_data.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/cell_updater_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/cell_updater_2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/cell_updater_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/cell_updater_2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/computational_cell_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/computational_cell_2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/computational_cell_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/computational_cell_2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/condition_action_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/condition_action_sequence.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/condition_action_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/condition_action_sequence.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/condition_action_sequence_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/condition_action_sequence_2.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/condition_action_sequence_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/condition_action_sequence_2.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/diagnostics.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/diagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/diagnostics.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/edge_velocity_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/edge_velocity_calculator.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/edge_velocity_calculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/edge_velocity_calculator.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/extensive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/extensive.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/extensive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/extensive.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/extensive_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/extensive_updater.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/extensive_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/extensive_updater.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/flux_calculator_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/flux_calculator_2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/flux_calculator_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/flux_calculator_2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hdf5_diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hdf5_diagnostics.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hdf5_diagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hdf5_diagnostics.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hdsim2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hdsim2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hdsim2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hdsim2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hydrodynamics_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hydrodynamics_2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/hydrodynamics_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/hydrodynamics_2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/interpolations/PCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/interpolations/PCM.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/interpolations/PCM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/interpolations/PCM.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/modular_flux_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/modular_flux_calculator.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/modular_flux_calculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/modular_flux_calculator.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/periodic_edge_velocities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/periodic_edge_velocities.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/periodic_edge_velocities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/periodic_edge_velocities.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/physical_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/physical_geometry.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/physical_geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/physical_geometry.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motion.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motion.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/CentroidMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/CentroidMotion.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/CentroidMotion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/CentroidMotion.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/CustomMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/CustomMotion.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/CustomMotion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/CustomMotion.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/Header.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/duffell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/duffell.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/duffell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/duffell.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/eulerian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/eulerian.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/eulerian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/eulerian.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/lagrangian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/lagrangian.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/lagrangian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/lagrangian.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/round_cells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/round_cells.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/point_motions/round_cells.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/point_motions/round_cells.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_cell_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_cell_updater.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_cell_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_cell_updater.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_cfl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_cfl.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_cfl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_cfl.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_extensive_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_extensive_updater.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_extensive_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_extensive_updater.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_flux_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_flux_calculator.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/simple_flux_calculator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/simple_flux_calculator.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/CenterGravity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/CenterGravity.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/CenterGravity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/CenterGravity.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/ConservativeForce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/ConservativeForce.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/ConservativeForce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/ConservativeForce.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/ConstantGravity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/ConstantGravity.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/ConstantGravity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/ConstantGravity.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/SeveralSources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/SeveralSources.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/SeveralSources.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/SeveralSources.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/zero_force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/zero_force.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/source_terms/zero_force.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/source_terms/zero_force.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_distribution2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_distribution2d.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_distribution2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_distribution2d.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_distributions/Line2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_distributions/Line2D.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_distributions/Line2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_distributions/Line2D.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_reconstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_reconstruction.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/spatial_reconstruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/spatial_reconstruction.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/stationary_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/stationary_box.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/stationary_box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/stationary_box.hpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/time_step_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/time_step_function.cpp -------------------------------------------------------------------------------- /source/newtonian/two_dimensional/time_step_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/newtonian/two_dimensional/time_step_function.hpp -------------------------------------------------------------------------------- /source/relativistic/Hllc3D_SR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/relativistic/Hllc3D_SR.cpp -------------------------------------------------------------------------------- /source/relativistic/Hllc3D_SR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/relativistic/Hllc3D_SR.hpp -------------------------------------------------------------------------------- /source/relativistic/ideal_gas_SR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/relativistic/ideal_gas_SR.cpp -------------------------------------------------------------------------------- /source/relativistic/ideal_gas_SR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/relativistic/ideal_gas_SR.hpp -------------------------------------------------------------------------------- /source/tessellation/BCSides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/BCSides.cpp -------------------------------------------------------------------------------- /source/tessellation/BCSides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/BCSides.hpp -------------------------------------------------------------------------------- /source/tessellation/ConvexHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/ConvexHull.cpp -------------------------------------------------------------------------------- /source/tessellation/ConvexHull.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/ConvexHull.hpp -------------------------------------------------------------------------------- /source/tessellation/Delaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/Delaunay.cpp -------------------------------------------------------------------------------- /source/tessellation/Delaunay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/Delaunay.hpp -------------------------------------------------------------------------------- /source/tessellation/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/Edge.cpp -------------------------------------------------------------------------------- /source/tessellation/Edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/Edge.hpp -------------------------------------------------------------------------------- /source/tessellation/EdgeLengthCorrect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/EdgeLengthCorrect.cpp -------------------------------------------------------------------------------- /source/tessellation/EdgeLengthCorrect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/EdgeLengthCorrect.hpp -------------------------------------------------------------------------------- /source/tessellation/HilbertOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/HilbertOrder.cpp -------------------------------------------------------------------------------- /source/tessellation/HilbertOrder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/HilbertOrder.hpp -------------------------------------------------------------------------------- /source/tessellation/PolyIntersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/PolyIntersect.cpp -------------------------------------------------------------------------------- /source/tessellation/PolyIntersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/PolyIntersect.hpp -------------------------------------------------------------------------------- /source/tessellation/RoundGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/RoundGrid.cpp -------------------------------------------------------------------------------- /source/tessellation/RoundGrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/RoundGrid.hpp -------------------------------------------------------------------------------- /source/tessellation/VoronoiMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/VoronoiMesh.cpp -------------------------------------------------------------------------------- /source/tessellation/VoronoiMesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/VoronoiMesh.hpp -------------------------------------------------------------------------------- /source/tessellation/calc_face_vertex_velocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/calc_face_vertex_velocity.cpp -------------------------------------------------------------------------------- /source/tessellation/calc_face_vertex_velocity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/calc_face_vertex_velocity.hpp -------------------------------------------------------------------------------- /source/tessellation/delaunay_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/delaunay_logger.cpp -------------------------------------------------------------------------------- /source/tessellation/delaunay_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/delaunay_logger.hpp -------------------------------------------------------------------------------- /source/tessellation/exactmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/exactmath.cpp -------------------------------------------------------------------------------- /source/tessellation/exactmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/exactmath.hpp -------------------------------------------------------------------------------- /source/tessellation/facet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/facet.cpp -------------------------------------------------------------------------------- /source/tessellation/facet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/facet.hpp -------------------------------------------------------------------------------- /source/tessellation/find_affected_cells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/find_affected_cells.cpp -------------------------------------------------------------------------------- /source/tessellation/find_affected_cells.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/find_affected_cells.hpp -------------------------------------------------------------------------------- /source/tessellation/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/geometry.cpp -------------------------------------------------------------------------------- /source/tessellation/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/geometry.hpp -------------------------------------------------------------------------------- /source/tessellation/geotests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/geotests.cpp -------------------------------------------------------------------------------- /source/tessellation/geotests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/geotests.hpp -------------------------------------------------------------------------------- /source/tessellation/hdf5_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/hdf5_logger.cpp -------------------------------------------------------------------------------- /source/tessellation/hdf5_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/hdf5_logger.hpp -------------------------------------------------------------------------------- /source/tessellation/polygon_overlap_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/polygon_overlap_area.cpp -------------------------------------------------------------------------------- /source/tessellation/polygon_overlap_area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/polygon_overlap_area.hpp -------------------------------------------------------------------------------- /source/tessellation/right_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/right_rectangle.cpp -------------------------------------------------------------------------------- /source/tessellation/right_rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/right_rectangle.hpp -------------------------------------------------------------------------------- /source/tessellation/shape_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/shape_2d.cpp -------------------------------------------------------------------------------- /source/tessellation/shape_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/shape_2d.hpp -------------------------------------------------------------------------------- /source/tessellation/static_voronoi_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/static_voronoi_mesh.cpp -------------------------------------------------------------------------------- /source/tessellation/static_voronoi_mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/static_voronoi_mesh.hpp -------------------------------------------------------------------------------- /source/tessellation/tessellation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/tessellation.cpp -------------------------------------------------------------------------------- /source/tessellation/tessellation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/tessellation.hpp -------------------------------------------------------------------------------- /source/tessellation/triangle_area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/triangle_area.cpp -------------------------------------------------------------------------------- /source/tessellation/triangle_area.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/triangle_area.hpp -------------------------------------------------------------------------------- /source/tessellation/voronoi_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/voronoi_logger.cpp -------------------------------------------------------------------------------- /source/tessellation/voronoi_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/source/tessellation/voronoi_logger.hpp -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/automaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/automaker.py -------------------------------------------------------------------------------- /tests/newtonian/common/hll_acoustic_eulerian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hll_acoustic_eulerian/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/common/hll_acoustic_eulerian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hll_acoustic_eulerian/test.py -------------------------------------------------------------------------------- /tests/newtonian/common/hll_advection_eulerian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hll_advection_eulerian/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/common/hll_advection_eulerian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hll_advection_eulerian/test.py -------------------------------------------------------------------------------- /tests/newtonian/common/hydrostatic_convection_mass_flux/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hydrostatic_convection_mass_flux/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/common/hydrostatic_convection_mass_flux/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/hydrostatic_convection_mass_flux/test.py -------------------------------------------------------------------------------- /tests/newtonian/common/primitive_subscript/show_mesh_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/primitive_subscript/show_mesh_points.py -------------------------------------------------------------------------------- /tests/newtonian/common/primitive_subscript/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/primitive_subscript/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/common/primitive_subscript/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/common/primitive_subscript/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/adiabatic_index.txt: -------------------------------------------------------------------------------- 1 | 1.66667 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/ambient_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/ambient_pressure.txt: -------------------------------------------------------------------------------- 1 | 0.6 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/ambient_velocity.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/adiabatic_index.txt: -------------------------------------------------------------------------------- 1 | 1.66667 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/ambient_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/ambient_pressure.txt: -------------------------------------------------------------------------------- 1 | 0.6 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/ambient_velocity.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_2o_no_limiters/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_no_limiters/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_2o_no_limiters/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/adiabatic_index.txt: -------------------------------------------------------------------------------- 1 | 1.66667 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/ambient_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/ambient_pressure.txt: -------------------------------------------------------------------------------- 1 | 0.6 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/ambient_velocity.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_2o_with_limiters/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/afd_2o_with_limiters/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/afd_2o_with_limiters/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/noh_ersig_pcm/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/noh_ersig_pcm/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/noh_ersig_pcm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/noh_ersig_pcm/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/noh_ersig_plm/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/noh_ersig_plm/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/noh_ersig_plm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/noh_ersig_plm/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/periodic_bc/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/periodic_bc/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/periodic_bc/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/periodic_bc/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/periodic_bc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/periodic_bc/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/plm_interpolation/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/plm_interpolation/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/plm_interpolation/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/plm_interpolation/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection_2o/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection_2o/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/pure_advection_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/pure_advection_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_1/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_1/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_1/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_1_exact/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_1_exact/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_1_exact/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_1_exact/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_1_exact/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_1_exact/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_2/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_2/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_2_exact/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_2_exact/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_2_exact/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_2_exact/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_2_exact/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_2_exact/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_3/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_3/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_3/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_3_exact/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_3_exact/plotit.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_3_exact/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_3_exact/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_problem_3_exact/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_problem_3_exact/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1/draw_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1/draw_profiles.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1_2o/resolution.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1_plm/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1_plm/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/riemann_profiles_1_plm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/riemann_profiles_1_plm/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/sedov_taylor_o1e/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/sedov_taylor_o1e/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/sedov_taylor_o1e/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/sedov_taylor_o1e/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/sedov_taylor_o1l/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/sedov_taylor_o1l/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/sedov_taylor_o1l/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/sedov_taylor_o1l/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/simple_waves/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/simple_waves/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/simple_waves/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/simple_waves/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/simple_waves_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/simple_waves_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/simple_waves_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/simple_waves_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/standing_waves_1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/standing_waves_1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_1o/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/standing_waves_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/one_dimensional/standing_waves_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/one_dimensional/standing_waves_2o/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/conservation_lagrangian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/conservation_lagrangian/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/conservation_lagrangian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/conservation_lagrangian/test.py -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/riemann_profiles_1/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/riemann_profiles_1/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/riemann_profiles_1/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/riemann_profiles_1/test.py -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/sedov_taylor/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/sedov_taylor/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/three_dimensional/sedov_taylor/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/three_dimensional/sedov_taylor/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/adiabatic_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/acoustic/adiabatic_index.txt -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/ambient_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/ambient_pressure.txt: -------------------------------------------------------------------------------- 1 | 0.6 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/amplitude.txt: -------------------------------------------------------------------------------- 1 | 1e-6 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/acoustic/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/acoustic/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/acoustic/width.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/amrconserve/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/amrconserve/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/amrconserve/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/amrconserve/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/amrconserve2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/amrconserve2/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/amrconserve2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/amrconserve2/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_cylindrical/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_cylindrical/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_cylindrical/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_cylindrical/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_eulerian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_eulerian/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_eulerian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_eulerian/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_lagrangian/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_lagrangian/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/conservation_lagrangian/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/conservation_lagrangian/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_1o/draw_prof_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_1o/draw_prof_1d.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_2o/draw_prof_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_2o/draw_prof_1d.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/driven_waves_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/driven_waves_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/eulerian_sedov_taylor/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/eulerian_sedov_taylor/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/eulerian_sedov_taylor/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/eulerian_sedov_taylor/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/geometric_reflection/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/geometric_reflection/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/geometric_reflection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/geometric_reflection/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_e1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_e1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/gresho_vortex_e1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/gresho_vortex_e1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/hydrostatic_moving_mesh/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/hydrostatic_moving_mesh/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/hydrostatic_moving_mesh/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/hydrostatic_moving_mesh/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/hydrostatic_moving_mesh_2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/hydrostatic_moving_mesh_2/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/hydrostatic_moving_mesh_2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/hydrostatic_moving_mesh_2/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/lloyd_method/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/lloyd_method/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/lloyd_method/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/lloyd_method/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/adiabatic_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/noh2d/adiabatic_index.txt -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/collapse_velocity.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/initial_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/resolution.txt: -------------------------------------------------------------------------------- 1 | 50 -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/noh2d/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2d/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/noh2d/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2dNonConserve/collapse_velocity.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2dNonConserve/initial_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2dNonConserve/resolution.txt: -------------------------------------------------------------------------------- 1 | 50 -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2dNonConserve/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/noh2dNonConserve/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/noh2dNonConserve/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/noh2dNonConserve/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/oblique_shock/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/oblique_shock/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/oblique_shock/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/oblique_shock/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/rerun/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/rerun/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/rerun/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/rerun/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/riemann_profiles_messy_grid/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/riemann_profiles_messy_grid/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/sedov_taylor_messy_grid/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/sedov_taylor_messy_grid/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/sedov_taylor_messy_grid/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/sedov_taylor_messy_grid/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves/adiabatic_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves/adiabatic_index.txt -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves/draw_rad_prof.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves_plm_2/draw_rad_prof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves_plm_2/draw_rad_prof.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves_plm_2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves_plm_2/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/simple_waves_plm_2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/simple_waves_plm_2/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/spherical_sedov_taylor/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/spherical_sedov_taylor/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/spherical_sedov_taylor/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/spherical_sedov_taylor/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/standing_driven_wave_1o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/standing_driven_wave_1o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_1o/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/amplitude.txt: -------------------------------------------------------------------------------- 1 | 0.01 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/mean_density.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/mean_pressure.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/phase_velocity.txt: -------------------------------------------------------------------------------- 1 | 0.1 2 | -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/standing_driven_wave_2o/test.cpp -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/newtonian/two_dimensional/standing_driven_wave_2o/test.py -------------------------------------------------------------------------------- /tests/newtonian/two_dimensional/standing_driven_wave_2o/wavelength.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/parallel_run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/parallel_run_tests.py -------------------------------------------------------------------------------- /tests/rich_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/rich_build.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/tessellation/calc_face_vertex_velocity/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/tessellation/calc_face_vertex_velocity/test.cpp -------------------------------------------------------------------------------- /tests/tessellation/calc_face_vertex_velocity/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/tessellation/calc_face_vertex_velocity/test.py -------------------------------------------------------------------------------- /tests/tessellation/parallel_delaunay/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/tessellation/parallel_delaunay/test.cpp -------------------------------------------------------------------------------- /tests/tessellation/parallel_delaunay/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/tests/tessellation/parallel_delaunay/test.py -------------------------------------------------------------------------------- /visualisation/one_dimensional/matlab/read_hdf1D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/one_dimensional/matlab/read_hdf1D.m -------------------------------------------------------------------------------- /visualisation/one_dimensional/python/plotit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/one_dimensional/python/plotit.py -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/ReadTess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/ReadTess.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/RichReadDouble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/RichReadDouble.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/RichReadFloat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/RichReadFloat.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/read_hdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/read_hdf.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/read_hdfMPI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/read_hdfMPI.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/read_hdfMPIold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/read_hdfMPIold.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/matlab/read_hdfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/matlab/read_hdfold.m -------------------------------------------------------------------------------- /visualisation/two_dimensional/python/hdf5_voronoi_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/python/hdf5_voronoi_plot.py -------------------------------------------------------------------------------- /visualisation/two_dimensional/python/multiplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/python/multiplot.py -------------------------------------------------------------------------------- /visualisation/two_dimensional/python/patch_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/python/patch_plot.py -------------------------------------------------------------------------------- /visualisation/two_dimensional/python/plot_unstructured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bolverk/huji-rich/HEAD/visualisation/two_dimensional/python/plot_unstructured.py --------------------------------------------------------------------------------