| 1394d07e | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Packing routines for 2D boundary setup |
| b28affb2 | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Generalize advection RHSFunction for 2d and 3d |
| b767acfb | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Convert strong_form to boolean in advection |
| 94a05c6f | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
docs(fluids): Combine 2D and 3D documentation |
| 372d1924 | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Generalize advection IFunction for 2d and 3d |
| bf415d3f | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Change 2D qdata to use unpacking routines |
| 30e1b2c7 | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Generalize advection IC for 2d and 3d |
| 98d9a7e6 | 20-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Create generic MatMatN for square matrices
MatMat3 now uses MatMatN |
| 8f4d89c8 | 18-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Convert IFunction_Advection to state structs |
| 8c3b32bf | 18-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Minor stabilization refactor |
| a43bcf8e | 18-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Change skew advection threshold
3rd order requires a 20 CEED_EPSILON instead of just 5 |
| b9b033b3 | 15-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Refactor diagonal tau calculation
Also correct documentation of tau calculation |
| 4bd6ffc9 | 12-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Cleanup misc math |
| 6852f6f6 | 27-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Stats don't overwrite solution on first-step failure
- When you have an initial condition from a previous problem, it might fail on the first step. This will cause `reason != TS_CONVERGED_
fluids: Stats don't overwrite solution on first-step failure
- When you have an initial condition from a previous problem, it might fail on the first step. This will cause `reason != TS_CONVERGED_ITERATING` and thus it will continue on with the rest of the TSMonitor routine. If you have a stats file from that initial condition, it will be overwritten.
Regardless of the overwriting behavior, it *never* makes sense to write out a stats file on the first step; Using left-rectangle rule for the time averaging integration, the initial step should *never* be used, thus there is nothing to collect or write.
show more ...
|
| cf0c90ef | 11-Jan-2024 |
James Wright <james@jameswright.xyz> |
test(fluids): Advection skew initial condition |
| 74d1b6c4 | 06-Jan-2024 |
James Wright <james@jameswright.xyz> |
test(fluids): Advection cosine |
| 7b77ddfd | 11-Jan-2024 |
James Wright <james@jameswright.xyz> |
fluids: Change bubble_type to advection_ic_type
Since cosine_hill and skew aren't bubbles |
| c44b1c7d | 17-Nov-2023 |
James Wright <james@jameswright.xyz> |
fluids: Add in cosine hill and skew advection ICs |
| a36217cb | 15-Dec-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
interface - remove legacy CEED_BASIS_COLLOCATED |
| 6d506a3e | 11-Dec-2023 |
James Wright <james@jameswright.xyz> |
Merge pull request #1423 from CEED/jrwrigh/fluids_high_order_geom
fluids: Support higher-order geometry |
| a0b9cdb5 | 11-Dec-2023 |
James Wright <james@jameswright.xyz> |
fluids: Support higher-order geometry |
| 752a08a7 | 11-Dec-2023 |
James Wright <james@jameswright.xyz> |
fluids: Add uses_newtonian flag |
| 29ea4e10 | 11-Dec-2023 |
James Wright <james@jameswright.xyz> |
fluids: Ensure all outputs are set in QFunctions
- In support of #1420 |
| c982af4d | 30-Nov-2023 |
James Wright <james@jameswright.xyz> |
CI: SmartSim test asks for open socket
Technically there's a race condition here, but according to https://unix.stackexchange.com/a/132524/297140, the kernel will return many different socket number
CI: SmartSim test asks for open socket
Technically there's a race condition here, but according to https://unix.stackexchange.com/a/132524/297140, the kernel will return many different socket numbers before repeating.
show more ...
|
| 4e139b58 | 27-Nov-2023 |
James Wright <james@jameswright.xyz> |
fluids: Change SmartRedisCall -> PetscSmartRedisCall |