From 5a9b0fddd40599a8227c89173fc7ec3e69a074d6 Mon Sep 17 00:00:00 2001
From: Wenqing Wang <wenqing.wang@ufz.de>
Date: Tue, 16 Mar 2021 17:12:51 +0100
Subject: [PATCH] [TRM] clang-format

---
 .../ThermoRichardsMechanicsFEM-impl.h                    | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h
index dbdb60867af..015a99fffc1 100644
--- a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h
+++ b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h
@@ -427,8 +427,9 @@ void ThermoRichardsMechanicsLocalAssembler<ShapeFunctionDisplacement,
                                          x_position, t, dt);
         // secant derivative from time discretization for storage
         // use tangent, if secant is not available
-        double const DeltaS_L_Deltap_cap = (p_cap_dot_ip == 0) ? dS_L_dp_cap :
-            (S_L - S_L_prev) / (dt * p_cap_dot_ip);
+        double const DeltaS_L_Deltap_cap =
+            (p_cap_dot_ip == 0) ? dS_L_dp_cap
+                                : (S_L - S_L_prev) / (dt * p_cap_dot_ip);
 
         auto const chi = [medium, x_position, t, dt](double const S_L) {
             MPL::VariableArray vs;
@@ -670,8 +671,8 @@ void ThermoRichardsMechanicsLocalAssembler<ShapeFunctionDisplacement,
             N.transpose() * rho_LR * specific_storage_a_p * N * w;
 
         storage_p_a_S.noalias() -= N.transpose() * rho_LR *
-                                       specific_storage_a_S * DeltaS_L_Deltap_cap *
-                                       N * w;
+                                   specific_storage_a_S * DeltaS_L_Deltap_cap *
+                                   N * w;
 
         local_Jac
             .template block<pressure_size, pressure_size>(pressure_index,
-- 
GitLab