Skip to content
Snippets Groups Projects
Commit 191e1c8d authored by Ivan Buntic's avatar Ivan Buntic
Browse files

[slides][materialsystem] Fix indentation.

parent d0648802
No related branches found
No related tags found
1 merge request!296Slides update
Pipeline #55124 passed
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment