Skip to content

Commit 663ca54

Browse files
authored
Use \max in LaTeX formulas
1 parent f02d542 commit 663ca54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lessons/03_CFL_Condition.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@
223223
"\n",
224224
"What has happened is that over the time period $\\Delta t$, the wave is travelling a distance which is greater than `dx`. The length `dx` of each grid box is related to the number of total points `nx`, so stability can be enforced if the $\\Delta t$ step size is calculated with respect to the size of `dx`. \n",
225225
"\n",
226-
"$$\\sigma = \\frac{u \\Delta t}{\\Delta x} \\leq \\sigma_{max}$$\n",
226+
"$$\\sigma = \\frac{u \\Delta t}{\\Delta x} \\leq \\sigma_{\\max}$$\n",
227227
"\n",
228-
"where $u$ is the speed of the wave; $\\sigma$ is called the **Courant number** and the value of $\\sigma_{max}$ that will ensure stability depends on the discretization used. \n",
228+
"where $u$ is the speed of the wave; $\\sigma$ is called the **Courant number** and the value of $\\sigma_{\\max}$ that will ensure stability depends on the discretization used. \n",
229229
"\n",
230230
"In a new version of our code, we'll use the CFL number to calculate the appropriate time-step `dt` depending on the size of `dx`. \n",
231231
"\n"

0 commit comments

Comments
 (0)