Skip to content

Commit 9aa8121

Browse files
Automatic build\nPublished by build of: SciML/SciMLBenchmarks.jl@6b7e20a
1 parent c21bbb2 commit 9aa8121

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

markdown/AstroChem/astrochem.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ tspan = (0.0, 1e6*seconds_per_year)
294294

295295
params = [dust2gas => 0.01, radiation_field => 1e-1, cosmic_ionisation_rate => 1e-17]
296296

297-
println("Lets try to solve the ODE:")
297+
println("Attempting to solve the ODE...")
298298

299299
sys = convert(ODESystem, complete(system))
300300
# oprob = ODEProblemExpr(sys, [], tspan, params)
@@ -303,7 +303,7 @@ ssys = structural_simplify(sys)
303303
```
304304

305305
```
306-
Lets try to solve the ODE:
306+
Attempting to solve the ODE...
307307
Model system:
308308
Equations (16):
309309
16 standard: see equations(system)
@@ -324,7 +324,7 @@ Parameters (4): see parameters(system)
324324

325325
```julia
326326
oprob = ODEProblem(ssys, [], tspan, params)
327-
println("Created the ODEproblem.")
327+
println("ODEProblem created successfully.")
328328
sol = solve(oprob, Rodas5()) # Rodas5()) # Tsit5()
329329

330330
# Generate a solution using high precision arithmetic
@@ -333,7 +333,7 @@ refsol = solve(bigprob, Rodas5P(), abstol = 1e-18, reltol = 1e-18)
333333
```
334334

335335
```
336-
Created the ODEproblem.
336+
ODEProblem created successfully.
337337
retcode: Success
338338
Interpolation: specialized 4rd order "free" stiffness-aware interpolation
339339
t: 27802-element Vector{BigFloat}:
@@ -814,21 +814,21 @@ tspan = (0.0, 1e6*seconds_per_year)
814814

815815
params = [dust2gas => 0.01, radiation_field => 1e-1, cosmic_ionisation_rate => 1e-17]
816816

817-
println("Lets try to solve the ODE:")
817+
println("Attempting to solve the ODE...")
818818

819819
sys = convert(ODESystem, complete(system))
820820
# oprob = ODEProblemExpr(sys, [], tspan, params)
821821

822822
ssys = structural_simplify(sys)
823823

824824
oprob = ODEProblem(ssys, [], tspan, params)
825-
println("Created the ODEproblem.")
825+
println("ODEProblem created successfully.")
826826
refsol = solve(oprob, Rodas5P(), abstol = 1e-14, reltol = 1e-14)
827827
```
828828

829829
```
830-
Lets try to solve the ODE:
831-
Created the ODEproblem.
830+
Attempting to solve the ODE...
831+
ODEProblem created successfully.
832832
retcode: Success
833833
Interpolation: specialized 4rd order "free" stiffness-aware interpolation
834834
t: 7173-element Vector{Float64}:
-506 Bytes
Loading
302 Bytes
Loading

script/AstroChem/astrochem.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ tspan = (0.0, 1e6*seconds_per_year)
284284

285285
params = [dust2gas => 0.01, radiation_field => 1e-1, cosmic_ionisation_rate => 1e-17]
286286

287-
println("Lets try to solve the ODE:")
287+
println("Attempting to solve the ODE...")
288288

289289
sys = convert(ODESystem, complete(system))
290290
# oprob = ODEProblemExpr(sys, [], tspan, params)
@@ -293,7 +293,7 @@ ssys = structural_simplify(sys)
293293

294294

295295
oprob = ODEProblem(ssys, [], tspan, params)
296-
println("Created the ODEproblem.")
296+
println("ODEProblem created successfully.")
297297
sol = solve(oprob, Rodas5()) # Rodas5()) # Tsit5()
298298

299299
# Generate a solution using high precision arithmetic
@@ -372,15 +372,15 @@ tspan = (0.0, 1e6*seconds_per_year)
372372

373373
params = [dust2gas => 0.01, radiation_field => 1e-1, cosmic_ionisation_rate => 1e-17]
374374

375-
println("Lets try to solve the ODE:")
375+
println("Attempting to solve the ODE...")
376376

377377
sys = convert(ODESystem, complete(system))
378378
# oprob = ODEProblemExpr(sys, [], tspan, params)
379379

380380
ssys = structural_simplify(sys)
381381

382382
oprob = ODEProblem(ssys, [], tspan, params)
383-
println("Created the ODEproblem.")
383+
println("ODEProblem created successfully.")
384384
refsol = solve(oprob, Rodas5P(), abstol = 1e-14, reltol = 1e-14)
385385

386386

0 commit comments

Comments
 (0)