├── .github └── workflows │ ├── DocPreviewCleanup.yml │ ├── Documenter.yml │ ├── TagBot.yml │ └── ci.yml ├── .gitignore ├── LICENSE ├── Project.toml ├── README.md ├── course ├── 00_julia_basics.ipynb ├── 01_one_dimensional_diffusion.ipynb ├── 02_one_dimensional_advection.ipynb ├── 03_two_dimensional_turbulence.ipynb ├── 04_buoyancy_and_boundary_conditions.ipynb ├── 05_large_eddy_simulation.ipynb ├── 06_hydrostatic_modeling.ipynb └── 07_turbulence_parameterization.ipynb ├── docs ├── Project.toml ├── make.jl └── src │ ├── index.md │ └── library │ ├── function_index.md │ ├── internals.md │ ├── outline.md │ └── public.md ├── fundamentals └── grids_fields_operations.ipynb ├── les-to-gcm ├── Project.toml └── README.md ├── snacks ├── simple_diffusion.jl └── two_dimensional_turbulence.jl └── src └── SwimLessons.jl /.github/workflows/DocPreviewCleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/.github/workflows/DocPreviewCleanup.yml -------------------------------------------------------------------------------- /.github/workflows/Documenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/.github/workflows/Documenter.yml -------------------------------------------------------------------------------- /.github/workflows/TagBot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/.github/workflows/TagBot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/LICENSE -------------------------------------------------------------------------------- /Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/Project.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/README.md -------------------------------------------------------------------------------- /course/00_julia_basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/00_julia_basics.ipynb -------------------------------------------------------------------------------- /course/01_one_dimensional_diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/01_one_dimensional_diffusion.ipynb -------------------------------------------------------------------------------- /course/02_one_dimensional_advection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/02_one_dimensional_advection.ipynb -------------------------------------------------------------------------------- /course/03_two_dimensional_turbulence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/03_two_dimensional_turbulence.ipynb -------------------------------------------------------------------------------- /course/04_buoyancy_and_boundary_conditions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/04_buoyancy_and_boundary_conditions.ipynb -------------------------------------------------------------------------------- /course/05_large_eddy_simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/05_large_eddy_simulation.ipynb -------------------------------------------------------------------------------- /course/06_hydrostatic_modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/06_hydrostatic_modeling.ipynb -------------------------------------------------------------------------------- /course/07_turbulence_parameterization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/course/07_turbulence_parameterization.ipynb -------------------------------------------------------------------------------- /docs/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/Project.toml -------------------------------------------------------------------------------- /docs/make.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/make.jl -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/library/function_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/src/library/function_index.md -------------------------------------------------------------------------------- /docs/src/library/internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/src/library/internals.md -------------------------------------------------------------------------------- /docs/src/library/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/src/library/outline.md -------------------------------------------------------------------------------- /docs/src/library/public.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/docs/src/library/public.md -------------------------------------------------------------------------------- /fundamentals/grids_fields_operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/fundamentals/grids_fields_operations.ipynb -------------------------------------------------------------------------------- /les-to-gcm/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/les-to-gcm/Project.toml -------------------------------------------------------------------------------- /les-to-gcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/les-to-gcm/README.md -------------------------------------------------------------------------------- /snacks/simple_diffusion.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/snacks/simple_diffusion.jl -------------------------------------------------------------------------------- /snacks/two_dimensional_turbulence.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/snacks/two_dimensional_turbulence.jl -------------------------------------------------------------------------------- /src/SwimLessons.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NumericalEarth/SwimLessons.jl/HEAD/src/SwimLessons.jl --------------------------------------------------------------------------------