From 3a49ce0b3839d14aaf52b0ff7b1920e4ddeb1dd6 Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Sat, 3 Feb 2024 11:33:54 +0200 Subject: [PATCH] Update create_first_setup.jl --- docs/literate/src/files/create_first_setup.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/literate/src/files/create_first_setup.jl b/docs/literate/src/files/create_first_setup.jl index 4459965f25e..eba8d882589 100644 --- a/docs/literate/src/files/create_first_setup.jl +++ b/docs/literate/src/files/create_first_setup.jl @@ -86,7 +86,7 @@ initial_condition = initial_condition_sinpi # The next step is to define a function of the source term corresponding to our problem. # ```math -# f(t,u,x,y) = - 2 \exp(-t) \sin\bigl(2 \pi (x - t) \bigr) \sin\bigl(2 \pi (y - t) \bigr) +# f(t,u,x,y) = - 2 e^{-t} \sin\bigl(2 \pi (x - t) \bigr) \sin\bigl(2 \pi (y - t) \bigr) # ``` # This function must take the target variable, coordinates, time and the # equation itself as arguments and return the source term as a static vector `SVector`.