From e3478e3868993641e768649d64d9808effa428c1 Mon Sep 17 00:00:00 2001 From: "Kenneth E. Jansen" Date: Mon, 30 Oct 2023 10:39:19 -0600 Subject: [PATCH] space style --- examples/fluids/qfunctions/newtonian.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fluids/qfunctions/newtonian.h b/examples/fluids/qfunctions/newtonian.h index 9fda495374..d4f84fce03 100644 --- a/examples/fluids/qfunctions/newtonian.h +++ b/examples/fluids/qfunctions/newtonian.h @@ -231,7 +231,7 @@ CEED_QFUNCTION_HELPER int IFunction_Newtonian(void *ctx, CeedInt Q, const CeedSc for (CeedInt j = 0; j < 5; j++) v[j][i] = wdetJ * (U_dot[j] - body_force[j]); if (context->idl_enable) { const CeedScalar sigma = LinearRampCoefficient(context->idl_amplitude, context->idl_length, context->idl_start, x_i[0]); - StoredValuesPack(Q, i, 14, 1, &sigma, jac_data); + StoredValuesPack(Q, i, 14, 1, &sigma, jac_data); CeedScalar damp_state[5] = {s.Y.pressure - P0, 0, 0, 0, 0}, idl_residual[5] = {0.}; InternalDampingLayer(context, s, sigma, damp_state, idl_residual); for (int j = 0; j < 5; j++) v[j][i] += wdetJ * idl_residual[j];