| 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 |
| 2247a93f | 10-Feb-2024 |
Rezgar Shakeri <42816410+rezgarshakeri@users.noreply.github.com> |
CeedMatrixPseudoinverse utility function (#1251)
* Added CeedMatrixPseudoinverse utility and use it CeedBasisGetCollocatedGrad
* Used pseudoinverse utility in CeedBasisApplyAtPoints
* Update d
CeedMatrixPseudoinverse utility function (#1251)
* Added CeedMatrixPseudoinverse utility and use it CeedBasisGetCollocatedGrad
* Used pseudoinverse utility in CeedBasisApplyAtPoints
* Update description of CeedMatrixPseudoinverse function
Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
* Used pseudoinverse utility in CeedBasisCreateProjectionMatrices
* Updated inline comments
* Added inline comment
* Round matrix-matrix product to zero in CeedBasisCreateProjectionMatrices
* increased tolerance in ex1-volume/src/main.rs
---------
Co-authored-by: Jeremy L Thompson <jeremy@jeremylt.org>
show more ...
|
| 8ad9a6ff | 08-Feb-2024 |
James Wright <james@jameswright.xyz> |
test: Fix test name for PETSc bps |
| fab7d8a4 | 31-Jan-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
deal.II - use CEED_BASIS_NONE over CEED_BASIS_COLLOCATED |
| 694f24b0 | 31-Jan-2024 |
Jeremy L Thompson <jeremy@jeremylt.org> |
Merge pull request #1436 from peterrum/dealii
Add deal.II example |
| 8c81f8b0 | 23-Dec-2023 |
Peter Munch <peterrmuench@gmail.com> |
Add deal.II example
Co-authored-by: jeremylt <jeremy@jeremylt.org> |
| 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 |
| cefb0a82 | 14-Dec-2023 |
Jeremy L Thompson <jeremy@jeremylt.org> |
style - fix trailing spaces in non-linted files |
| 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 |
| 90dde50e | 04-Dec-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Fix initialization of point locations
* Change cell_random to use built-in DMSwarm function
* Ensure uniform point distribution is uniform across cell boundaries
* Fix total number of points in pa
Fix initialization of point locations
* Change cell_random to use built-in DMSwarm function
* Ensure uniform point distribution is uniform across cell boundaries
* Fix total number of points in parallel
show more ...
|
| 07a9c11f | 04-Dec-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Add BP tests for integration at arbitrary points |
| 78f7fce3 | 02-Dec-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Add BPs with integration at arbitrary points |
| 98285ab4 | 02-Dec-2023 |
Zach Atkins <zach.atkins@colorado.edu> |
Make file comments and PetscFunctionBegin/Return spacing consistent (#1413) |