Skip to content

Commit 9491519

Browse files
sbryngelsonclaude
andcommitted
viz: replace schlieren with always-available vars in examples
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5b8d16e commit 9491519

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/documentation/visualization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Customize the appearance of plots:
6060
./mfc.sh viz case_dir/ --var pres --step 500 --png --dpi 300
6161

6262
# Logarithmic color scale
63-
./mfc.sh viz case_dir/ --var schlieren --step 1000 --png --log-scale
63+
./mfc.sh viz case_dir/ --var pres --step 1000 --png --log-scale
6464
```
6565

6666
| Option | Description | Default |
@@ -102,7 +102,7 @@ Generate MP4 videos from a range of timesteps:
102102
./mfc.sh viz case_dir/ --var pres --step 0:10000:100 --mp4
103103

104104
# Custom frame rate
105-
./mfc.sh viz case_dir/ --var schlieren --step all --mp4 --fps 24
105+
./mfc.sh viz case_dir/ --var rho --step all --mp4 --fps 24
106106

107107
# Video with fixed color range
108108
./mfc.sh viz case_dir/ --var rho --step 0:5000:50 --mp4 --vmin 0.1 --vmax 1.0

toolchain/mfc/cli/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@
892892
Argument(
893893
name="var",
894894
help=(
895-
"Variable to visualize (e.g. pres, rho, vel1, schlieren). "
895+
"Variable to visualize (e.g. pres, rho, vel1). "
896896
"Omit (or pass 'all') for a tiled layout of all variables "
897897
"(1D and 2D data) or the first variable (3D data). "
898898
"Use --list-vars to see available names."
@@ -1085,7 +1085,7 @@
10851085
Example("./mfc.sh viz case_dir/ --list-vars --step 0", "Discover available variables at step 0"),
10861086
Example("./mfc.sh viz case_dir/ --var pres --interactive", "Browser UI — scrub timesteps and switch vars"),
10871087
Example("./mfc.sh viz case_dir/ --var pres --step 1000 --png", "Save pressure PNG at step 1000"),
1088-
Example("./mfc.sh viz case_dir/ --var schlieren --step 0:10000:500 --mp4", "Encode schlieren MP4 from range"),
1088+
Example("./mfc.sh viz case_dir/ --var pres --step 0:10000:500 --mp4", "Encode pressure MP4 from range"),
10891089
Example("./mfc.sh viz case_dir/ --step 0,100,200,...,1000 --png", "Render all steps 0–1000 as images"),
10901090
Example("./mfc.sh viz case_dir/ --var pres --step 500 --slice-axis x --png", "3D: x-plane slice of pressure"),
10911091
],

0 commit comments

Comments
 (0)