Skip to content

Commit c078ab3

Browse files
committed
Fix use of scientific notation in TeX
1 parent 56978ad commit c078ab3

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

lib/DAEProblemLibrary/src/DAEProblemLibrary.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The Robertson biochemical reactions in DAE form
2828
```
2929
where ``k₁=0.04``, ``k₂=3\times10^7``, ``k₃=10^4``. For details, see:
3030
Hairer Norsett Wanner Solving Ordinary Differential Equations I - Nonstiff Problems Page 129
31-
Usually solved on ``[0,1e11]``
31+
Usually solved on ``[0,10^{11}]``
3232
"""
3333
prob_dae_resrob = DAEProblem(f, du0, u0, (0.0, 100000.0))
3434

lib/DDEProblemLibrary/src/radar5.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for ``t \in [0, 100.5]`` with history function
2626
\end{align*}
2727
```
2828
29-
for ``t \leq 0``, where ``k_1 = 1.34``, ``k_2 = 1.6e9``, ``k_3 = 8000``, ``k_4 = 4e7``,
29+
for ``t \leq 0``, where ``k_1 = 1.34``, ``k_2 = 1.6×10^9``, ``k_3 = 8000``, ``k_4 = 4×10^7``,
3030
``k_5 = 1``, ``f = 1``, ``A = 0.06``, ``B = 0.06``, and ``\tau = 0.15``.
3131
3232
# References
@@ -82,9 +82,9 @@ by
8282
\end{align*}
8383
```
8484
85-
for ``t \in [0, 10e10]`` with history function ``\phi_1(0) = 1``, ``\phi_2(t) = 0`` for
85+
for ``t \in [0, 10^{10}]`` with history function ``\phi_1(0) = 1``, ``\phi_2(t) = 0`` for
8686
``t \in [-\tau, 0]``, and ``\phi_3(0) = 0``, where ``a = 0.04``, ``b = 10_000``,
87-
``c = 3e7``, and ``\tau = 0.01``.
87+
``c = 3×10^7``, and ``\tau = 0.01``.
8888
8989
# References
9090
@@ -153,8 +153,8 @@ for ``t \in [0, 300]`` with history function
153153
\end{align*}
154154
```
155155
156-
for ``t \leq 0``, where ``\alpha = 1.8``, ``\beta = 20``, ``\gamma = 0.002``, ``r = 5e4``,
157-
``s = 1e5``, ``t_0 = 32``, ``t_1 = 119``, and ``\phi_0 = 0.75e-4``.
156+
for ``t \leq 0``, where ``\alpha = 1.8``, ``\beta = 20``, ``\gamma = 0.002``, ``r = 5\times10^4``,
157+
``s = 10^5``, ``t_0 = 32``, ``t_1 = 119``, and ``\phi_0 = 0.75×10^{-4}``.
158158
159159
# References
160160
@@ -218,7 +218,7 @@ const prob_dde_RADAR5_waltman_1 = prob_dde_RADAR5_waltman
218218
prob_dde_RADAR5_waltman_2
219219
220220
Same delay differential equation as [`prob_dde_RADAR5_waltman`] with ``t_0 = 32``,
221-
``t_1 = 111``, and ``\phi_0 = 0.5e-4``.
221+
``t_1 = 111``, and ``\phi_0 = 0.5×10^{-4}``.
222222
223223
# References
224224
@@ -232,7 +232,7 @@ const prob_dde_RADAR5_waltman_2 = remake(prob_dde_RADAR5_waltman;
232232
prob_dde_RADAR5_waltman_3
233233
234234
Same delay differential equation as [`prob_dde_RADAR5_waltman`] with ``t_0 = 33``,
235-
``t_1 = 145``, and ``\phi_0 = 1e-5``.
235+
``t_1 = 145``, and ``\phi_0 = 10^{-5}``.
236236
237237
# References
238238
@@ -246,7 +246,7 @@ const prob_dde_RADAR5_waltman_3 = remake(prob_dde_RADAR5_waltman;
246246
prob_dde_RADAR5_waltman_4
247247
248248
Same delay differential equation as [`prob_dde_RADAR5_waltman`] with ``t_0 = 34``,
249-
``t_1 = 163``, and ``\phi_0 = 0.75e-5``.
249+
``t_1 = 163``, and ``\phi_0 = 0.75×10^{-5}``.
250250
251251
# References
252252
@@ -260,7 +260,7 @@ const prob_dde_RADAR5_waltman_4 = remake(prob_dde_RADAR5_waltman;
260260
prob_dde_RADAR5_waltman_5
261261
262262
Same delay differential equation as [`prob_dde_RADAR5_waltman`] with ``t_0 = 35``,
263-
``t_1 = 197``, and ``\phi_0 = 0.5e-5``.
263+
``t_1 = 197``, and ``\phi_0 = 0.5×10^{-5}``.
264264
265265
# References
266266

lib/ODEProblemLibrary/src/ode_simple_nonlinear_prob.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ where ``k₁=0.04``, ``k₂=3\times10^7``, ``k₃=10^4``. For details, see:
130130
131131
Hairer Norsett Wanner Solving Ordinary Differential Equations I - Nonstiff Problems Page 129
132132
133-
Usually solved on ``[0,1e11]``
133+
Usually solved on ``[0,10^{11}]``
134134
"""
135135
prob_ode_rober = ODEProblem(rober, [1.0, 0.0, 0.0], (0.0, 1e11), [0.04, 3e7, 1e4])
136136

@@ -414,7 +414,7 @@ w (y_1 - y_3)
414414
\end{pmatrix}
415415
```
416416
417-
where ``s=77.27``, ``w=0.161`` and ``q=8.37510^{-6}``.
417+
where ``s=77.27``, ``w=0.161`` and ``q=8.375×10^{-6}``.
418418
419419
Reference: [demoorego.pdf](http://www.radford.edu/~thompson/vodef90web/problems/demosnodislin/Demos_Pitagora/DemoOrego/demoorego.pdf)
420420
Notebook: [Orego.ipynb](http://nbviewer.jupyter.org/github/JuliaDiffEq/DiffEqBenchmarks.jl/blob/master/StiffODE/Orego.ipynb)

lib/ODEProblemLibrary/src/strange_attractors.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ Hindmarsh-Rose equations
252252
\end{align*}
253253
```
254254
255-
with parameters ``a=1, b=3, c=1, d=5, r=1e-2, s=4, x_r=-8/5, i=5`` and initial conditions ``x(0)=1, y(0)=0, z(0)=0``
255+
with parameters ``a=1, b=3, c=1, d=5, r=10^{-2}, s=4, x_r=-8/5, i=5`` and initial conditions ``x(0)=1, y(0)=0, z(0)=0``
256256
257257
[Reference](https://en.wikipedia.org/wiki/Hindmarsh%E2%80%93Rose_model)
258258
"""

0 commit comments

Comments
 (0)