Skip to content

Commit d1dce5a

Browse files
committed
Merge branch 'develop' into patch-add-logo
2 parents 555f259 + 4824ae1 commit d1dce5a

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v4
3434

3535
- name: Set up pixi
36-
uses: prefix-dev/[email protected].8
36+
uses: prefix-dev/[email protected].10
3737

3838
- name: Generate build directory
3939
run: mkdir -p ${{ env.FANS_BUILD_DIR }}

.github/workflows/build_and_test_mac.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
brew install fftw eigen
3434
3535
- name: Set up pixi
36-
uses: prefix-dev/[email protected].8
36+
uses: prefix-dev/[email protected].10
3737

3838
- name: Generate build directory
3939
run: mkdir -p ${{ env.FANS_BUILD_DIR }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# FANS Changelog
22

3+
## latest
4+
5+
- Add pixi task `h52xdmf` to generate XDMF from H5 files directly as `pixi run h52xdmf {h5filepath}`
6+
37
## v0.4.1
48

59
- remove std::sqrt from constexpr - failed on Clang https://github.com/DataAnalyticsEngineering/FANS/pull/64

pixi.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ pyrecest = {git = "https://github.com/FlorianPfaff/pyRecEst.git"}
2121
[tasks]
2222
test = "pytest -v -s"
2323
precommit = "pre-commit run --all-files"
24+
h52xdmf = { args = ["file"], cmd = "cd \"$INIT_CWD\" && python -m fans_dashboard.plotting.h52xdmf -t -v {{file}}" }

test/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,9 @@ Each test case has corresponding input JSON files in the `input_files/` director
5151
```bash
5252
mpiexec -n 2 ./FANS input_files/test_LinearElastic.json test_results.h5
5353
```
54+
55+
To quickly visualize the test results, and accompanying XDMF for the HDF5 output can be generated which can be directly opened in ParaView for 3D visualization and analysis:
56+
57+
```bash
58+
pixi run h52xdmf test_results.h5
59+
```

0 commit comments

Comments
 (0)