Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f44bec7
..
Mar 31, 2026
0304dfe
Extrusion
Mar 31, 2026
b95b9f3
hehe
Mar 31, 2026
b6863a4
hehe
Mar 31, 2026
9966731
Add initial condition data files for flamelet, vortex, and landau exa…
Mar 31, 2026
97641e8
..
Mar 31, 2026
59432e7
Final Changes
Mar 31, 2026
567ffc1
..
Mar 31, 2026
95e9381
Merge upstream/master and resolve conflicts in IC and params
Mar 31, 2026
a28b006
Precheck pass
Apr 1, 2026
a39c5ef
Filename length Frontier Issue
Apr 1, 2026
7a1c5e0
AI suggestion
Apr 1, 2026
0374f70
Merge branch 'master' into ExtrusionV3
DimAdam-01 Apr 5, 2026
65de40f
Fix merge conflict in toolchain/mfc/test/cases.py
May 5, 2026
4e5a51f
Formatting + AMD Bug
May 5, 2026
843d38f
Fix implicit SAVE on files_loaded/ios/ios2, fileNames buffer size, an…
sbryngelson May 5, 2026
a6cdd95
Remove spurious half-step offset in 2D and 3D delta_x/delta_y calcula…
sbryngelson May 5, 2026
99cd729
Remove unused variables, fix stale comments, and rename HardcodedDell…
sbryngelson May 5, 2026
54e66bc
Add case_validator check for files_dir/file_extension when using extr…
sbryngelson May 5, 2026
29ff379
Fix registry.py formatting for Python 3.12 ruff compatibility
sbryngelson May 5, 2026
5dc9153
fix: relax Flamelet test tolerance from 1e-10 to 1e-5 for cross-platf…
sbryngelson May 5, 2026
0210586
Fix AMD GPU molecular_weights_nonparameter species ordering
sbryngelson May 6, 2026
955352f
Revert "Fix AMD GPU molecular_weights_nonparameter species ordering"
sbryngelson May 6, 2026
7d31479
fix: reduce flamelet test to 1 step to avoid Cray GPU SIMD FP divergence
sbryngelson May 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ docs/simulation/readme.md
docs/post_process/readme.md
docs/api/readme.md

examples/**/IC/*.dat
examples/*batch/*/
examples/**/D/*
examples/**/p*
Expand Down
4 changes: 2 additions & 2 deletions docs/documentation/case.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ The code provides three pre-built patches for dimensional extrusion of initial c
- `case(270)`: Extrude 1D data to 2D domain
- `case(370)`: Extrude 2D data to 3D domain

Setup: Only requires specifying `init_dir` and filename pattern via `zeros_default`. Grid dimensions are automatically detected from the data files.
Implementation: All variables and file handling are managed in `src/common/include/ExtrusionHardcodedIC.fpp` with no manual grid configuration needed.
Setup: Only requires specifying `files_dir` and filename pattern via `file_extension`. The files are located, for example, at `examples/1D_flamelet/IC`, and their format is `prim.XX.YY.file_extension.dat`.
Implementation: All variables and file handling are managed in the `case.py` file of the simulation.
Usage: Ideal for initializing simulations from lower-dimensional solutions, enabling users to add perturbations or modifications to the base extruded fields for flow instability studies.

#### Parameter Descriptions
Expand Down
1,200 changes: 1,200 additions & 0 deletions examples/1D_flamelet/IC/prim.1.00.000000.dat

Large diffs are not rendered by default.

1,200 changes: 1,200 additions & 0 deletions examples/1D_flamelet/IC/prim.10.00.000000.dat

Large diffs are not rendered by default.

1,200 changes: 1,200 additions & 0 deletions examples/1D_flamelet/IC/prim.11.00.000000.dat

Large diffs are not rendered by default.

1,200 changes: 1,200 additions & 0 deletions examples/1D_flamelet/IC/prim.12.00.000000.dat

Large diffs are not rendered by default.

1,200 changes: 1,200 additions & 0 deletions examples/1D_flamelet/IC/prim.13.00.000000.dat

Large diffs are not rendered by default.

Loading