From 191e1c8debf32140b60400e1afd2401749b13f96 Mon Sep 17 00:00:00 2001 From: IvBu <ivan.buntic@iws.uni-stuttgart.de> Date: Wed, 19 Feb 2025 08:46:52 +0100 Subject: [PATCH] [slides][materialsystem] Fix indentation. --- slides/materialsystem.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/slides/materialsystem.md b/slides/materialsystem.md index 7e95f813..29c0505d 100644 --- a/slides/materialsystem.md +++ b/slides/materialsystem.md @@ -63,10 +63,11 @@ static Scalar gasDensity(Scalar temperature, Scalar pressure) ```cpp static Scalar gasHeatCapacity(Scalar T, Scalar pressure) - { - const auto cp = shomateMethod.heatCapacity(T); // J/(mol K) - return cp / molarMass(); // J/(kg K) - } +{ + // apply Shomate method + const auto cp = shomateMethod.heatCapacity(T); // J/(mol K) + return cp / molarMass(); // J/(kg K) +} ``` <span style="font-size: 0.4em; position: relative; top: -38px; color: gray;">File: `dumux/dumux/material/components/ch4.hh`</span> -- GitLab