summaryrefslogtreecommitdiff
path: root/c++/examples
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-04-17 00:44:13 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-04-17 00:44:13 +0200
commitc6c35555cf18a871f9ba04982570cc77fdb60415 (patch)
tree41598a1604d5f98152eb1feca18ba629779c2519 /c++/examples
parent2e6ae2ef9bb230930f5213c256e624080b08faca (diff)
wip
Diffstat (limited to 'c++/examples')
-rw-r--r--c++/examples/cavity_2d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/examples/cavity_2d.cpp b/c++/examples/cavity_2d.cpp
index 0a8e9b1..00c1741 100644
--- a/c++/examples/cavity_2d.cpp
+++ b/c++/examples/cavity_2d.cpp
@@ -95,8 +95,8 @@ void compute_const_rho_u (
dfs(i).set(dfs(i).get() * (rho/real_rho));
}
- vel[0] *= real_rho / (rho*rho)
- vel[1] *= real_rho / (rho*rho)
+ vel[0] *= real_rho / (rho*rho);
+ vel[1] *= real_rho / (rho*rho);
}
/**