From 1fb2bcace336b8735f7bc1c0bfba2e78b43720a5 Mon Sep 17 00:00:00 2001 From: August Johansson Date: Tue, 22 Oct 2024 20:46:24 +0200 Subject: [PATCH] Add missing ; --- .../MaterialProperties/LFP/computeOCP_LFP_Gerver2011.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ParameterData/MaterialProperties/LFP/computeOCP_LFP_Gerver2011.m b/ParameterData/MaterialProperties/LFP/computeOCP_LFP_Gerver2011.m index fb6fc8cc..73d187a4 100644 --- a/ParameterData/MaterialProperties/LFP/computeOCP_LFP_Gerver2011.m +++ b/ParameterData/MaterialProperties/LFP/computeOCP_LFP_Gerver2011.m @@ -1,5 +1,5 @@ function [OCP, dUdT] = computeOCP_LFP_Gerver2011(c, T, cmax) - OCP = 3.41285712e+00 - 1.49721852e-02 * c/cmax + 3.54866018e+14 * exp(-3.95729493e+02 * c/cmax) - 1.45998465e+00 * exp(-1.10108622e+02 * (1 - c/cmax)) - dUdT = 0 -end \ No newline at end of file + OCP = 3.41285712e+00 - 1.49721852e-02 * c/cmax + 3.54866018e+14 * exp(-3.95729493e+02 * c/cmax) - 1.45998465e+00 * exp(-1.10108622e+02 * (1 - c/cmax)); + dUdT = 0; +end