From 32c227af39bdce623133818dc17f2cb15b974b22 Mon Sep 17 00:00:00 2001 From: Alexandre Magueresse Date: Mon, 15 Apr 2024 16:32:38 +1000 Subject: [PATCH 1/2] Fixed constructor of RungeKutta with only one solver, removed symbol FE --- src/ODEs/ODESolvers.jl | 2 +- src/ODEs/ODESolvers/TableausEX.jl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ODEs/ODESolvers.jl b/src/ODEs/ODESolvers.jl index c17b9d52c..b00fa297b 100644 --- a/src/ODEs/ODESolvers.jl +++ b/src/ODEs/ODESolvers.jl @@ -202,5 +202,5 @@ function RungeKutta( end function RungeKutta(sysslvr_nl::NonlinearSolver, dt::Real, tableau) - RungeKutta(sysslvr_nl, sysslvr_nl, dt, name) + RungeKutta(sysslvr_nl, sysslvr_nl, dt, tableau) end diff --git a/src/ODEs/ODESolvers/TableausEX.jl b/src/ODEs/ODESolvers/TableausEX.jl index b21376580..4dd51b583 100644 --- a/src/ODEs/ODESolvers/TableausEX.jl +++ b/src/ODEs/ODESolvers/TableausEX.jl @@ -10,7 +10,6 @@ end """ EXRK_Euler_1_1 - FE """ struct EXRK_Euler_1_1 <: TableauName end From e4645af772ea8319a484b4be567e1e40253c3109 Mon Sep 17 00:00:00 2001 From: Jordi Manyer Fuertes Date: Tue, 5 Nov 2024 13:42:39 +1100 Subject: [PATCH 2/2] Update NEWS.md --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 6a84321ed..1130e10a2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -20,6 +20,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `AbstractSymTensorValue`, an abstract type for second order symmetric tensors, and `SymTracelessTensorValue` (aliased to `QTensorValue`), a type for traceless symmetric tensors. `SymTensorValue` is now subtype of `AbstractSymTensorValue`. - A convergence test for Poisson problem of `QTensorValue` unknown field validates the implementation. + ### Fixed + + - Fixed constructor of RungeKutta with only one solver. Since PR[#999](https://github.com/gridap/Gridap.jl/pull/999). + ## [0.18.6] - 2024-08-29 ### Fixed