-
Notifications
You must be signed in to change notification settings - Fork 39
Add Taylor–Green NS benchmark studying order reduction induced by time-dependent bcs #650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Ouardghi
wants to merge
2
commits into
Parallel-in-Time:master
Choose a base branch
from
Ouardghi:pr_NSE_Monolithic
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| StroemungsRaum_FEniCSx | ||
| ====================== | ||
|
|
||
| **StroemungsRaum_FEniCSx** is a research software project derived from the | ||
| original *StroemungsRaum* framework and developed within the context of the | ||
| BMBF-funded project | ||
|
|
||
| *“StrömungsRaum – Novel Exascale Architectures with Heterogeneous Hardware | ||
| Components for Computational Fluid Dynamics Simulations”* | ||
| (October 2022 – September 2025). | ||
|
|
||
| This repository provides a modernized implementation of the original | ||
| StroemungsRaum research codes using **FEniCSx** instead of the legacy FEniCS | ||
| framework. The migration enables compatibility with current finite element | ||
| software ecosystems and improved support for modern HPC architectures. | ||
|
|
||
| Scope of This Repository | ||
| ------------------------ | ||
| This repository contains the **Forschungszentrum Jülich (FZJ)** contribution to | ||
| the StrömungsRaum project implemented with FEniCSx, focusing on: | ||
|
|
||
| - Parallel-in-time methods | ||
| - Combined space–time parallelization | ||
| - Scalable solvers for time-dependent PDEs | ||
| - High-performance finite element implementations with PETSc and MPI | ||
| - Research on exascale-ready CFD algorithms | ||
|
|
||
| The primary objective is to expose concurrency beyond spatial parallelism and | ||
| enable efficient large-scale simulations on modern heterogeneous HPC systems. | ||
|
|
||
| Software Stack | ||
| -------------- | ||
| This project is based on the modern FEniCSx ecosystem, including: | ||
|
|
||
| - FEniCSx | ||
| - PETSc | ||
| - mpi4py | ||
| - petsc4py | ||
| - UFL | ||
| - Basix | ||
| - DOLFINx | ||
|
|
||
| Research Focus | ||
| -------------- | ||
| The software serves as a research platform for investigating: | ||
|
|
||
| - Scalable time integration methods | ||
| - Space–time parallelism | ||
| - High-order temporal discretizations | ||
| - Solver robustness for incompressible flows | ||
| - Parallel performance on heterogeneous architectures | ||
|
|
||
| Funding | ||
| ------- | ||
| Funded by the **German Federal Ministry of Education and Research (BMBF)** under | ||
| grant number **16ME0708**. | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| --- | ||
|
|
||
| name: pySDC | ||
| channels: | ||
| - conda-forge | ||
| dependencies: | ||
|
|
||
| - fenics-dolfinx=0.10.0 | ||
| - ufl=2025.2.1 | ||
| - basix=0.10.0 | ||
| - mpi4py | ||
| - petsc4py | ||
| - slepc4py | ||
| - pyvista | ||
|
Comment on lines
+6
to
+14
|
||
| - numpy | ||
| - scipy>=0.17.1 | ||
| - dill>=0.2.6 | ||
| - matplotlib>=3.0 | ||
| - pytest | ||
| - pytest-cov | ||
| - pip | ||
| - pip: | ||
| - qmat>=0.1.8 | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a new line for this new project in the CI file, i.e. just below here.
This is needed for the tests to be run at all.