From 74d901663e7bf9fe9ed4ee58102fa301ce8da538 Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Sun, 11 Feb 2024 18:05:24 +0200 Subject: [PATCH] Update docs/literate/src/files/behind_the_scenes_simulation_setup.jl Co-authored-by: Daniel Doehring --- docs/literate/src/files/behind_the_scenes_simulation_setup.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/literate/src/files/behind_the_scenes_simulation_setup.jl b/docs/literate/src/files/behind_the_scenes_simulation_setup.jl index 5f575a4c77b..a7988eaa304 100644 --- a/docs/literate/src/files/behind_the_scenes_simulation_setup.jl +++ b/docs/literate/src/files/behind_the_scenes_simulation_setup.jl @@ -9,7 +9,7 @@ # Trixi.jl follows the method of lines concept for solving partial differential equations. # Firstly, the partial differential equations (PDEs) are reduced to a (potentially huge) system of ordinary differential equations (ODEs) -# by discretizing the space. Subsequently, these new ODEs are solved with methods available in +# by discretizing the spatial derivatives. Subsequently, these new ODEs are solved with methods available in # OrdinaryDiffEq.jl or those specifically implemented in Trixi.jl. The following steps elucidate # the process of transitioning from PDEs to ODEs within the framework of Trixi.jl.