@@ -294,7 +294,7 @@ tspan = (0.0, 1e6*seconds_per_year)
294294
295295params = [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
299299sys = 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...
307307Model system:
308308Equations (16):
309309 16 standard: see equations(system)
@@ -324,7 +324,7 @@ Parameters (4): see parameters(system)
324324
325325``` julia
326326oprob = ODEProblem (ssys, [], tspan, params)
327- println (" Created the ODEproblem ." )
327+ println (" ODEProblem created successfully ." )
328328sol = 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 .
337337retcode: Success
338338Interpolation: specialized 4rd order "free" stiffness-aware interpolation
339339t: 27802-element Vector{BigFloat}:
@@ -814,21 +814,21 @@ tspan = (0.0, 1e6*seconds_per_year)
814814
815815params = [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
819819sys = convert (ODESystem, complete (system))
820820# oprob = ODEProblemExpr(sys, [], tspan, params)
821821
822822ssys = structural_simplify (sys)
823823
824824oprob = ODEProblem (ssys, [], tspan, params)
825- println (" Created the ODEproblem ." )
825+ println (" ODEProblem created successfully ." )
826826refsol = 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 .
832832retcode: Success
833833Interpolation: specialized 4rd order "free" stiffness-aware interpolation
834834t: 7173-element Vector{Float64}:
0 commit comments