├── .gitignore ├── 1dim ├── hydro1d.jl └── rsolvers1d.jl ├── LICENSE ├── README.md ├── hydro.sublime-project ├── src ├── boundaries.jl ├── eos.jl ├── gravity.jl ├── grid.jl ├── hydro.jl ├── integrators.jl ├── reconstruct.jl ├── rsolvers.jl ├── viscosity.jl └── visualize.jl └── tests ├── 1dim_hd.jl └── 2dim_hd.jl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | #* 3 | .# 4 | *workspace 5 | *~ -------------------------------------------------------------------------------- /1dim/hydro1d.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/1dim/hydro1d.jl -------------------------------------------------------------------------------- /1dim/rsolvers1d.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/1dim/rsolvers1d.jl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/README.md -------------------------------------------------------------------------------- /hydro.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/hydro.sublime-project -------------------------------------------------------------------------------- /src/boundaries.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/boundaries.jl -------------------------------------------------------------------------------- /src/eos.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/eos.jl -------------------------------------------------------------------------------- /src/gravity.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/gravity.jl -------------------------------------------------------------------------------- /src/grid.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/grid.jl -------------------------------------------------------------------------------- /src/hydro.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/hydro.jl -------------------------------------------------------------------------------- /src/integrators.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/integrators.jl -------------------------------------------------------------------------------- /src/reconstruct.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/reconstruct.jl -------------------------------------------------------------------------------- /src/rsolvers.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/rsolvers.jl -------------------------------------------------------------------------------- /src/viscosity.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/viscosity.jl -------------------------------------------------------------------------------- /src/visualize.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/src/visualize.jl -------------------------------------------------------------------------------- /tests/1dim_hd.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/tests/1dim_hd.jl -------------------------------------------------------------------------------- /tests/2dim_hd.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natj/hydro/HEAD/tests/2dim_hd.jl --------------------------------------------------------------------------------