Skip to content

Commit fcf7646

Browse files
sbryngelsonclaude
andcommitted
Remove === section headers from Poiseuille example (CI lint)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6f880a9 commit fcf7646

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

examples/2D_poiseuille_nn/case.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
import json
2020
import math
2121

22-
# === Channel geometry (square domain) ===
22+
# -- Channel geometry (square domain) --
2323
L = 1.0 # Channel length (streamwise, x)
2424
H = 1.0 # Channel height (wall-normal, y)
2525

26-
# === Grid resolution ===
26+
# -- Grid resolution --
2727
Nx = 24 # Cells in x (streamwise, minimal — periodic)
2828
Ny = 81 # Cells in y (wall-normal)
2929

30-
# === Fluid properties ===
30+
# -- Fluid properties --
3131
rho = 1.0 # Density
3232
p0 = 1e5 # Reference pressure (high for low Mach)
3333
gamma = 1.4 # Ratio of specific heats
@@ -38,11 +38,11 @@
3838
cfl = 0.3
3939
dt = cfl * dx / c
4040

41-
# === Body force (pressure gradient substitute) ===
41+
# -- Body force (pressure gradient substitute) --
4242
# G = rho * g_x acts as dp/dx driving force
4343
g_x = 0.5
4444

45-
# === HB non-Newtonian model parameters ===
45+
# -- HB non-Newtonian model parameters --
4646
tau0 = 0.0 # Yield stress (set 0 for power-law)
4747
K = 0.1 # Consistency index
4848
nn = 2.0 # Flow behavior index (< 1 = shear-thinning)
@@ -54,7 +54,7 @@
5454
# Reference Re based on consistency index (used as baseline)
5555
Re_ref = 1.0 / K # = 100
5656

57-
# === Time control ===
57+
# -- Time control --
5858
t_end = 10.0 # End time (allow flow to reach steady state)
5959
t_save = 5.0 # Save interval
6060

0 commit comments

Comments
 (0)