Skip to content

Commit 3912e10

Browse files
fix links to the new docs-repo (#93)
1 parent 9cb0e39 commit 3912e10

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ simulation framework for conservation laws [Trixi.jl](https://github.com/trixi-f
1919
and provides several specialized models and features specific for shallow water applications.
2020
Below is a short summary of the available features:
2121

22-
* 1D and 2D simulations on [line/quad meshes](https://trixi-framework.github.io/Trixi.jl/stable/overview/#Semidiscretizations)
22+
* 1D and 2D simulations on [line/quad meshes](https://trixi-framework.github.io/TrixiDocumentation/stable/overview/#Semidiscretizations)
2323
* Cartesian and curvilinear meshes
2424
* Conforming and non-conforming meshes
2525
* Hierarchical quadtree meshes with adaptive mesh refinement

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ using Literate
55
using Changelog: Changelog
66

77
# Provide external links to the Trixi.jl docs (project root and inventory file)
8-
links = InterLinks("Trixi" => ("https://trixi-framework.github.io/Trixi.jl/stable/",
9-
"https://trixi-framework.github.io/Trixi.jl/stable/objects.inv"))
8+
links = InterLinks("Trixi" => ("https://trixi-framework.github.io/TrixiDocumentation/stable/",
9+
"https://trixi-framework.github.io/TrixiDocumentation/stable/objects.inv"))
1010

1111
# Create tutorial section with Literature
1212
TUTORIAL_DIR = joinpath(@__DIR__, "src", "tutorials")

docs/src/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This page contains some helpful information for the development of TrixiShallowWater.jl. Further
44
information about helpful tools for package development in Julia can be found on the
5-
[development page](https://trixi-framework.github.io/Trixi.jl/stable/development/) of the Trixi.jl docs.
5+
[development page](https://trixi-framework.github.io/TrixiDocumentation/stable/development/) of the Trixi.jl docs.
66

77
## Releasing a new version of TrixiShallowWater
88

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ simulation framework for conservation laws [Trixi.jl](https://github.com/trixi-f
2020
and provides several specialized models and features specific for shallow water applications.
2121
Below is a short summary of the available features:
2222

23-
* 1D and 2D simulations on [line/quad meshes](https://trixi-framework.github.io/Trixi.jl/stable/overview/#Semidiscretizations)
23+
* 1D and 2D simulations on [line/quad meshes](https://trixi-framework.github.io/TrixiDocumentation/stable/overview/#Semidiscretizations)
2424
* Cartesian and curvilinear meshes
2525
* Conforming and non-conforming meshes
2626
* Hierarchical quadtree meshes with adaptive mesh refinement

docs/src/tutorials/elixir_shallowwater_monai_tsunami.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ ode = semidiscretize(semi, tspan);
324324
# Below, we define several callbacks for different purposes.
325325

326326
# ### Analysis Callback
327-
# The [AnalysisCallback](https://trixi-framework.github.io/Trixi.jl/stable/reference-trixi/#Trixi.AnalysisCallback)
327+
# The [AnalysisCallback](https://trixi-framework.github.io/TrixiDocumentation/stable/reference-trixi/#Trixi.AnalysisCallback)
328328
# is used to analyze the solution at regular intervals.
329329
# Extra analysis quantities such as conservation errors can be added to the callback.
330330
analysis_interval = 1000
@@ -338,7 +338,7 @@ save_solution = SaveSolutionCallback(dt = 0.5,
338338
save_final_solution = true)
339339

340340
# ### Stepsize Callback
341-
# The [StepsizeCallback](https://trixi-framework.github.io/Trixi.jl/stable/reference-trixi/#Trixi.StepsizeCallback)
341+
# The [StepsizeCallback](https://trixi-framework.github.io/TrixiDocumentation/stable/reference-trixi/#Trixi.StepsizeCallback)
342342
# calculates the time step based on a CFL condition.
343343
stepsize_callback = StepsizeCallback(cfl = 0.6)
344344

docs/src/tutorials/introduction.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ The tutorials on these pages will guide you through solving shallow water equati
66

77
Before diving into the TrixiShallowWater.jl specific tutorials, we recommend familiarizing yourself with
88
the core concepts of Trixi.jl by reading through the [Trixi.jl
9-
documentation](https://trixi-framework.github.io/Trixi.jl/stable/) and first complete the following Trixi.jl
9+
documentation](https://trixi-framework.github.io/TrixiDocumentation/stable/) and first complete the following Trixi.jl
1010
tutorials below:
1111

12-
- [First steps in Trixi.jl](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/first_steps/getting_started/)
13-
- [Introduction to DG Methods](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/scalar_linear_advection_1d/)
14-
- [DGSEM with flux differencing](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/DGSEM_FluxDiff/)
15-
- [Shock capturing with flux differencing and stage limiter](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/shock_capturing/)
16-
- [Non-periodic boundaries](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/non_periodic_boundaries/)
17-
- [Explicit time stepping](https://trixi-framework.github.io/Trixi.jl/stable/tutorials/time_stepping/)
12+
- [First steps in Trixi.jl](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/first_steps/getting_started/)
13+
- [Introduction to DG Methods](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/scalar_linear_advection_1d/)
14+
- [DGSEM with flux differencing](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/DGSEM_FluxDiff/)
15+
- [Shock capturing with flux differencing and stage limiter](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/shock_capturing/)
16+
- [Non-periodic boundaries](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/non_periodic_boundaries/)
17+
- [Explicit time stepping](https://trixi-framework.github.io/TrixiDocumentation/stable/tutorials/time_stepping/)
1818

1919
## TrixiShallowWater.jl Tutorials
2020

@@ -36,5 +36,5 @@ using the features from TrixiShallowWater.jl. Each tutorial is designed to be se
3636
## Getting Help
3737

3838
If you encounter any issues or have questions while working through the tutorials, feel free to:
39-
- Check the [Trixi.jl documentation](https://trixi-framework.github.io/Trixi.jl/stable/).
39+
- Check the [Trixi.jl documentation](https://trixi-framework.github.io/TrixiDocumentation/stable/).
4040
- Open an issue on the [TrixiShallowWater.jl GitHub repository](https://github.com/trixi-framework/TrixiShallowWater.jl/issues).

0 commit comments

Comments
 (0)