Skip to content

Commit 9ab23bc

Browse files
committed
debug
1 parent 389258c commit 9ab23bc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/Simulation.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ using SciMLSensitivity
44
using ForwardDiff
55
using PreallocationTools
66
using LinearAlgebra
7+
using DataFrames
8+
using CSV
79

810
abstract type AbstractSimulation end
911
export AbstractSimulation

src/TestReactors.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using SciMLBase
33
using Sundials
44
using CSV
55
using DataFrames
6+
using SciMLSensitivity
67

78
@testset "Test Reactors" begin
89

@@ -140,7 +141,7 @@ using DataFrames
140141

141142
name = "oxygen"
142143
ind = findfirst(x -> x == name, liqspcnames)
143-
@test sol(sol.t[end])[ind] 0.11758959354431776 rtol = 1e-5 #test there are oxygen dissolved into the liquid
144+
@test sol(sol.t[end])[ind] 0.11758959354431776 rtol = 1e-4 #test there are oxygen dissolved into the liquid
144145

145146
end
146147

0 commit comments

Comments
 (0)