| 1abde36f | 16-Apr-2023 |
James Wright <james@jameswright.xyz> |
fluids: Move some DD SGS functions to sgs_dd_utils.h |
| 7dfc0c32 | 16-Apr-2023 |
James Wright <james@jameswright.xyz> |
fluids: Extract data-driven model input calculation |
| 66170c20 | 22-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Calculate dXdx for strong BCs directly
ie. don't use q_data_sur |
| 8756a6cc | 21-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Refactor setupgeo* functionality into helpers
- This allows for use of those helpers inside other qfunctions |
| f65959f5 | 21-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1278 from CEED/jrwrigh/blasius-simplex
fluids: Fix STG and Blasius for non-box meshes |
| 2526956e | 20-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Use enum for mesh transformation flag |
| f8839eb4 | 02-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Remove old, unused STG method (non-Ceed)
- Remove the old method for STG that uses DMAddBoundary. Completely superseded by Ceed implementation |
| 73557d35 | 02-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Specify streamwise element length for STG
- Generally for non-DMPlex box meshes, where we can't query number of box faces. |
| 9309e21c | 02-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Explicit flag for blasius mesh modification
- So that blasius example can run using external meshes without any attempt to modify them |
| 00fb7a04 | 17-Aug-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Refactor CeedInit_Magma and CeedInit_Magma_det similar to ceed-cuda-common.h and ceed-hip-common.h |
| 58549094 | 15-Aug-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Unify magma backend restriction with cuda/hip-ref, keeping runtime option for deterministic and non-deterministic using magma/det
This also opens the opportunity to make cuda/hip-ref non-determinist
Unify magma backend restriction with cuda/hip-ref, keeping runtime option for deterministic and non-deterministic using magma/det
This also opens the opportunity to make cuda/hip-ref non-deterministic by default and add cuda/hip-ref/det variants.
show more ...
|
| 15642ec9 | 18-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1297 from CEED/jed/fix-fluids-petsc-stage-log
examples/fluids: fix deprecated/dysfunctional PetscLogGetStageLog |
| 711a423a | 18-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
examples/fluids: fix deprecated/dysfunctional PetscLogGetStageLog
As a result of Toby Isaac's refactoring of the stage/events system in PETSc (for maintainability and some new features), we need thi
examples/fluids: fix deprecated/dysfunctional PetscLogGetStageLog
As a result of Toby Isaac's refactoring of the stage/events system in PETSc (for maintainability and some new features), we need this pattern.
show more ...
|
| 4da3b05b | 18-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1296 from CEED/jed/ci-rocm-5.6.0
ci: use /opt/rocm-5.6.0 |
| 628bebf4 | 18-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
ci: use /opt/rocm-5.6.0 |
| fe4b6b13 | 18-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1294 from CEED/jeremy/vec-scale
Fix vector read-write vs write access logic |
| 1a2ffd0c | 17-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1295 from CEED/sjg/petsc-examples-warnings
Silence compiler warnings for PETSc examples |
| a8d73ac5 | 17-Aug-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Fix empty initializer braces compiler warnings |
| fd8f24fa | 17-Aug-2023 |
Sebastian Grimberg <sjg@amazon.com> |
Remove some trailing semicolons from function definitions to silence compiler warnings |
| 567d69a2 | 17-Aug-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
vec - fix read-write vs write access logic |
| b0976d5a | 15-Aug-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Vector - error-free usage when length = 0 (#1291)
* Allow for error-free usage of length 0 CeedVectors
* Add tests for length 0 CeedVectors
* make clang-tidy happy
* remove unnecessary tests |
| f7a048d4 | 15-Aug-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1289 from CEED/jeremy/points-bug
Fix dimension mismatch for ApplyBasisAtPoints |
| 71a83b88 | 14-Aug-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
basis - fix dimension mismatch for ApplyBasisAtPointsn |
| 1ca28fe1 | 14-Aug-2023 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #1286 from CEED/jrwrigh/refactor_gravity
fluids: Refactor gravity option |
| a2726bdb | 14-Aug-2023 |
James Wright <james@jameswright.xyz> |
fluids: Refactor gravity option
- Use `-gravity` instead of `-g` - Enforce that the input should be a length 3 vector - Update documentation
Misc: Also update documented default value for `mu`. |