diff --git a/src/parameters/AerosolFerrihydrite.jl b/src/parameters/AerosolFerrihydrite.jl index 05ee69b5cc..f1762383b2 100644 --- a/src/parameters/AerosolFerrihydrite.jl +++ b/src/parameters/AerosolFerrihydrite.jl @@ -22,7 +22,7 @@ function Ferrihydrite( ) where {FT} (; data) = toml_dict return Ferrihydrite( - FT(data["Alpert2022_J_deposition_m_Ferrihydrate"]["value"]), - FT(data["Alpert2022_J_deposition_c_Ferrihydrate"]["value"]), + FT(data["Alpert2022_J_deposition_m_Ferrihydrite"]["value"]), + FT(data["Alpert2022_J_deposition_c_Ferrihydrite"]["value"]), ) end diff --git a/test/gpu_tests.jl b/test/gpu_tests.jl index 7af0b131c5..486a0d909a 100644 --- a/test/gpu_tests.jl +++ b/test/gpu_tests.jl @@ -849,9 +849,9 @@ function test_gpu(FT) kernel!(output, kaolinite, feldspar, ferrihydrite, Delta_a_w; ndrange) # test if deposition_J is callable and returns reasonable values - @test Array(output)[1] ≈ FT(153.65772539109) - @test Array(output)[2] ≈ FT(31.870032033791) - @test Array(output)[3] ≈ FT(31.870032033791) + @test Array(output)[1] ≈ FT(4.2565721578929405e10) + @test Array(output)[2] ≈ FT(5.693312205851678e6) + @test Array(output)[3] ≈ FT(802555.3607426438) dims = (1, 2) (; output, ndrange) = setup_output(dims, FT)