├── .github └── workflows │ └── website.yml ├── .gitignore ├── 2024-01-08__From_high_level_code_to_low_level_performance_optimizations ├── Manifest.toml ├── Project.toml ├── README.md └── talk.jl ├── 2024-03-07__Essential_Julia_packages_and_debugging ├── Manifest.toml ├── Project.toml ├── README.md └── julia_workflow.jl ├── 2024-04-08__Optimizing_Julia_code ├── Manifest.toml ├── Project.toml └── optimizing_julia.jl ├── 2024-05-13__AD_Implicit_Nonlinear_FD ├── Manifest.toml ├── Project.toml ├── addons_multiphysics_AD.jl ├── example_1.jl ├── example_2.jl ├── example_3.jl ├── example_4.jl └── example_stokes.jl ├── 2024-06-10__PseudoTransient_Intro ├── Manifest.toml ├── Moulas M3ODEL_PTRANSIENT_Seminar.pdf ├── Project.toml ├── README.md ├── diff_Functions.jl ├── elliptic1d.jl ├── elliptic1d_acc.jl └── elliptic1d_acc_nlin.jl ├── 2024-10-31__Introduction_to_AD ├── Manifest.toml ├── Project.toml ├── README.md ├── intro_to_ad.html └── intro_to_ad.jl ├── 2024-11-14__Overview_of_the_Julia_AD_ecosystem ├── Manifest.toml ├── Project.toml └── notebook.jl ├── 2024-11-28__VSCode_SSH ├── Manifest.toml ├── Project.toml ├── README.md ├── elixir_advection_basic.jl ├── my_run.jl ├── pluto_tutorial.jl └── run_blast.jl ├── 2024-12-12__AdjointSensitivities_ForwardDiff ├── Manifest.toml ├── Project.toml ├── README.md ├── examples │ ├── 1D_Diffusion │ │ ├── 1D_diffusion.jl │ │ ├── 1D_diffusion_adjoint.jl │ │ └── perform_timestepping.jl │ ├── 2D_Diffusion │ │ ├── 2D_diffusion.jl │ │ ├── 2D_diffusion_adjoint.jl │ │ └── perform_timestepping.jl │ └── 2D_Stokes │ │ ├── stokes_adjoint_FB_pure_visc.jl │ │ └── stokes_adjoint_subduction_pure_visc.jl ├── figures │ ├── 1D_diffusion_10.png │ ├── 2D_Diffusion_10.png │ ├── Falling_Block.png │ └── Subduction.png └── src │ ├── addons_multiphysics_AD.jl │ ├── adjoint_functions.jl │ └── helper_functions.jl ├── 2025-01-09__Infrastructure_GitHub_pkg_dev ├── .github │ └── workflows │ │ ├── CI.yml │ │ └── Documentation.yml ├── MyPkg │ ├── Project.toml │ ├── docs │ │ ├── .gitignore │ │ ├── Project.toml │ │ ├── assets │ │ │ └── GHPagesJR.png │ │ ├── make.jl │ │ └── src │ │ │ ├── index.md │ │ │ └── man │ │ │ ├── installation.md │ │ │ └── listfunctions.md │ ├── src │ │ ├── Example.jl │ │ └── MyPkg.jl │ └── test │ │ ├── Project.toml │ │ ├── runtests.jl │ │ ├── test_foo.jl │ │ └── test_foo2.jl └── README.md ├── 2025-01-23__Introduction_To_Trixi ├── Part1 │ ├── Introduction_to_Trixi.html │ ├── Introduction_to_Trixi.jl │ ├── Manifest.toml │ ├── Project.toml │ └── README.md └── Part2 │ ├── Manifest.toml │ ├── Project.toml │ ├── images │ ├── initial_condition_trixi_logo.pdf │ ├── mesh_hohq.jpg │ ├── mesh_trixi_logo.pdf │ └── trixi_logo.svg │ ├── trixi_applications.html │ ├── trixi_applications.jl │ └── videos │ ├── animation_bubble_amr.mp4 │ ├── animation_trixi.mp4 │ └── animation_trixi_grid.mp4 ├── 2025-02-06__Introduction_to_HOHQMesh ├── Manifest.toml ├── Project.toml ├── README.md ├── airfoil.jl ├── batman.jl ├── cardioid.jl ├── cylinder_mesh.jl ├── intro_hohqmesh.jl ├── out │ ├── BatmanLogo.control │ ├── BatmanLogo.mesh │ ├── BatmanLogo.tec │ ├── BatmanLogo.txt │ ├── airfoil.control │ ├── airfoil.mesh │ ├── airfoil.tec │ ├── airfoil.txt │ ├── box_two_circles.control │ ├── box_two_circles.inp │ ├── box_two_circles.tec │ ├── box_two_circles.txt │ ├── sample.control │ ├── sample.inp │ ├── sample.tec │ └── sample.txt ├── tutorial.jl └── von_karman.jl ├── 2025-03-06__GLMakie_GUIs ├── GUI_1.jl ├── GUI_2.jl ├── GUI_3.jl ├── GUI_4.jl ├── GUI_topo.jl ├── GUIs_GLMakie.pdf ├── Manifest.toml └── Project.toml ├── 2025-04-24__Comments_on_plotting ├── .gitignore ├── Manifest.toml ├── Project.toml ├── README.md ├── open_pluto.bat ├── plotting.html └── plotting.jl ├── 2025-05-08__Julia_workflows └── README.md ├── 2025-07-03__Uncertainty_propagation ├── Manifest.toml ├── Project.toml ├── README.md ├── open_pluto.bat └── uncertainty_without_ex.jl ├── 2025-11-13__Tools └── README.md ├── LICENSE └── README.md /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | 3 | -------------------------------------------------------------------------------- /2024-01-08__From_high_level_code_to_low_level_performance_optimizations/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-01-08__From_high_level_code_to_low_level_performance_optimizations/Manifest.toml -------------------------------------------------------------------------------- /2024-01-08__From_high_level_code_to_low_level_performance_optimizations/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2024-01-08__From_high_level_code_to_low_level_performance_optimizations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-01-08__From_high_level_code_to_low_level_performance_optimizations/README.md -------------------------------------------------------------------------------- /2024-01-08__From_high_level_code_to_low_level_performance_optimizations/talk.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-01-08__From_high_level_code_to_low_level_performance_optimizations/talk.jl -------------------------------------------------------------------------------- /2024-03-07__Essential_Julia_packages_and_debugging/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-03-07__Essential_Julia_packages_and_debugging/Manifest.toml -------------------------------------------------------------------------------- /2024-03-07__Essential_Julia_packages_and_debugging/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-03-07__Essential_Julia_packages_and_debugging/Project.toml -------------------------------------------------------------------------------- /2024-03-07__Essential_Julia_packages_and_debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-03-07__Essential_Julia_packages_and_debugging/README.md -------------------------------------------------------------------------------- /2024-03-07__Essential_Julia_packages_and_debugging/julia_workflow.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-03-07__Essential_Julia_packages_and_debugging/julia_workflow.jl -------------------------------------------------------------------------------- /2024-04-08__Optimizing_Julia_code/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-04-08__Optimizing_Julia_code/Manifest.toml -------------------------------------------------------------------------------- /2024-04-08__Optimizing_Julia_code/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-04-08__Optimizing_Julia_code/Project.toml -------------------------------------------------------------------------------- /2024-04-08__Optimizing_Julia_code/optimizing_julia.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-04-08__Optimizing_Julia_code/optimizing_julia.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/Manifest.toml -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/Project.toml -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/addons_multiphysics_AD.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/addons_multiphysics_AD.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/example_1.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/example_1.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/example_2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/example_2.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/example_3.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/example_3.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/example_4.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/example_4.jl -------------------------------------------------------------------------------- /2024-05-13__AD_Implicit_Nonlinear_FD/example_stokes.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-05-13__AD_Implicit_Nonlinear_FD/example_stokes.jl -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/Manifest.toml -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/Moulas M3ODEL_PTRANSIENT_Seminar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/Moulas M3ODEL_PTRANSIENT_Seminar.pdf -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/Project.toml -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/README.md -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/diff_Functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/diff_Functions.jl -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/elliptic1d.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/elliptic1d.jl -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/elliptic1d_acc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/elliptic1d_acc.jl -------------------------------------------------------------------------------- /2024-06-10__PseudoTransient_Intro/elliptic1d_acc_nlin.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-06-10__PseudoTransient_Intro/elliptic1d_acc_nlin.jl -------------------------------------------------------------------------------- /2024-10-31__Introduction_to_AD/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-10-31__Introduction_to_AD/Manifest.toml -------------------------------------------------------------------------------- /2024-10-31__Introduction_to_AD/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2024-10-31__Introduction_to_AD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-10-31__Introduction_to_AD/README.md -------------------------------------------------------------------------------- /2024-10-31__Introduction_to_AD/intro_to_ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-10-31__Introduction_to_AD/intro_to_ad.html -------------------------------------------------------------------------------- /2024-10-31__Introduction_to_AD/intro_to_ad.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-10-31__Introduction_to_AD/intro_to_ad.jl -------------------------------------------------------------------------------- /2024-11-14__Overview_of_the_Julia_AD_ecosystem/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-14__Overview_of_the_Julia_AD_ecosystem/Manifest.toml -------------------------------------------------------------------------------- /2024-11-14__Overview_of_the_Julia_AD_ecosystem/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2024-11-14__Overview_of_the_Julia_AD_ecosystem/notebook.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-14__Overview_of_the_Julia_AD_ecosystem/notebook.jl -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/Manifest.toml -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/Project.toml -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/README.md -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/elixir_advection_basic.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/elixir_advection_basic.jl -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/my_run.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/my_run.jl -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/pluto_tutorial.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/pluto_tutorial.jl -------------------------------------------------------------------------------- /2024-11-28__VSCode_SSH/run_blast.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-11-28__VSCode_SSH/run_blast.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/Manifest.toml -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/Project.toml -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/README.md -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/1D_diffusion.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/1D_diffusion.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/1D_diffusion_adjoint.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/1D_diffusion_adjoint.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/perform_timestepping.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/1D_Diffusion/perform_timestepping.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/2D_diffusion.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/2D_diffusion.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/2D_diffusion_adjoint.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/2D_diffusion_adjoint.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/perform_timestepping.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Diffusion/perform_timestepping.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Stokes/stokes_adjoint_FB_pure_visc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Stokes/stokes_adjoint_FB_pure_visc.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Stokes/stokes_adjoint_subduction_pure_visc.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/examples/2D_Stokes/stokes_adjoint_subduction_pure_visc.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/figures/1D_diffusion_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/figures/1D_diffusion_10.png -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/figures/2D_Diffusion_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/figures/2D_Diffusion_10.png -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/figures/Falling_Block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/figures/Falling_Block.png -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/figures/Subduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/figures/Subduction.png -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/src/addons_multiphysics_AD.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/src/addons_multiphysics_AD.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/src/adjoint_functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/src/adjoint_functions.jl -------------------------------------------------------------------------------- /2024-12-12__AdjointSensitivities_ForwardDiff/src/helper_functions.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2024-12-12__AdjointSensitivities_ForwardDiff/src/helper_functions.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/.github/workflows/CI.yml -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/.github/workflows/Documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/.github/workflows/Documentation.yml -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/Project.toml -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | site/ 3 | -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" 3 | -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/assets/GHPagesJR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/assets/GHPagesJR.png -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/make.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/make.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/index.md -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/man/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/man/installation.md -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/man/listfunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/docs/src/man/listfunctions.md -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/src/Example.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/src/Example.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/src/MyPkg.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/src/MyPkg.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" 3 | -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/runtests.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/runtests.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/test_foo.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/test_foo.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/test_foo2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/MyPkg/test/test_foo2.jl -------------------------------------------------------------------------------- /2025-01-09__Infrastructure_GitHub_pkg_dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-09__Infrastructure_GitHub_pkg_dev/README.md -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part1/Introduction_to_Trixi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part1/Introduction_to_Trixi.html -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part1/Introduction_to_Trixi.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part1/Introduction_to_Trixi.jl -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part1/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part1/Manifest.toml -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part1/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part1/Project.toml -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part1/README.md -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/Manifest.toml -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/images/initial_condition_trixi_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/images/initial_condition_trixi_logo.pdf -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/images/mesh_hohq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/images/mesh_hohq.jpg -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/images/mesh_trixi_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/images/mesh_trixi_logo.pdf -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/images/trixi_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/images/trixi_logo.svg -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/trixi_applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/trixi_applications.html -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/trixi_applications.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/trixi_applications.jl -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/videos/animation_bubble_amr.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/videos/animation_bubble_amr.mp4 -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/videos/animation_trixi.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/videos/animation_trixi.mp4 -------------------------------------------------------------------------------- /2025-01-23__Introduction_To_Trixi/Part2/videos/animation_trixi_grid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-01-23__Introduction_To_Trixi/Part2/videos/animation_trixi_grid.mp4 -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/Manifest.toml -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/Project.toml -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/README.md -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/airfoil.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/airfoil.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/batman.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/batman.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/cardioid.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/cardioid.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/cylinder_mesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/cylinder_mesh.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/intro_hohqmesh.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/intro_hohqmesh.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.control -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.mesh -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.tec -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/BatmanLogo.txt -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/airfoil.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/airfoil.control -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/airfoil.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/airfoil.mesh -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/airfoil.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/airfoil.tec -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/airfoil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/airfoil.txt -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.control -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.inp -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.tec -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/box_two_circles.txt -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/sample.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/sample.control -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/sample.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/sample.inp -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/sample.tec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/sample.tec -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/out/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/out/sample.txt -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/tutorial.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/tutorial.jl -------------------------------------------------------------------------------- /2025-02-06__Introduction_to_HOHQMesh/von_karman.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-02-06__Introduction_to_HOHQMesh/von_karman.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUI_1.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUI_1.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUI_2.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUI_2.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUI_3.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUI_3.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUI_4.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUI_4.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUI_topo.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUI_topo.jl -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/GUIs_GLMakie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/GUIs_GLMakie.pdf -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/Manifest.toml -------------------------------------------------------------------------------- /2025-03-06__GLMakie_GUIs/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-03-06__GLMakie_GUIs/Project.toml -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/.gitignore -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/Manifest.toml -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/README.md -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/open_pluto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/open_pluto.bat -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/plotting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/plotting.html -------------------------------------------------------------------------------- /2025-04-24__Comments_on_plotting/plotting.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-04-24__Comments_on_plotting/plotting.jl -------------------------------------------------------------------------------- /2025-05-08__Julia_workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-05-08__Julia_workflows/README.md -------------------------------------------------------------------------------- /2025-07-03__Uncertainty_propagation/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-07-03__Uncertainty_propagation/Manifest.toml -------------------------------------------------------------------------------- /2025-07-03__Uncertainty_propagation/Project.toml: -------------------------------------------------------------------------------- 1 | [deps] 2 | Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781" 3 | -------------------------------------------------------------------------------- /2025-07-03__Uncertainty_propagation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-07-03__Uncertainty_propagation/README.md -------------------------------------------------------------------------------- /2025-07-03__Uncertainty_propagation/open_pluto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-07-03__Uncertainty_propagation/open_pluto.bat -------------------------------------------------------------------------------- /2025-07-03__Uncertainty_propagation/uncertainty_without_ex.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-07-03__Uncertainty_propagation/uncertainty_without_ex.jl -------------------------------------------------------------------------------- /2025-11-13__Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/2025-11-13__Tools/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranocha/Julia_User_Group_Mainz/HEAD/README.md --------------------------------------------------------------------------------