| aef1eb53 | 30-Aug-2022 |
Leila Ghaffari <49916147+LeilaGhaffari@users.noreply.github.com> |
Fluids - Some fixes missing from #1039 (#1056)
* Fluids - Blasius: drop theta0, style, and update README
* Fluids - Add regression test for laminar blasius |
| e0d1a4df | 28-Aug-2022 |
Leila Ghaffari <49916147+LeilaGhaffari@users.noreply.github.com> |
Fluids - Compressible Blasius boundary layer (#1039)
* Fluids - Compressible Blasius boundary layer solution
* Fluids - Blasius: default delta0 = 4.2e-3
* Fluids - Use the new helper functions
Fluids - Compressible Blasius boundary layer (#1039)
* Fluids - Compressible Blasius boundary layer solution
* Fluids - Blasius: default delta0 = 4.2e-3
* Fluids - Use the new helper functions in blasius
* Update examples/fluids/qfunctions/blasius_exact.h
Co-authored-by: Jed Brown <jed@jedbrown.org>
* Update examples/fluids/qfunctions/blasius_exact.h
Co-authored-by: Jed Brown <jed@jedbrown.org>
* Fluids - remove blasius_exact.h
* Fluids - N_Chebyshev: 10 -> 20
Co-authored-by: Jed Brown <jed@jedbrown.org>
show more ...
|
| 3636f6a4 | 26-Aug-2022 |
James Wright <james@jameswright.xyz> |
fluids: Switch to StateVar enum |
| 76555bec | 19-Aug-2022 |
James Wright <james@jameswright.xyz> |
fluids: Use newtonian with StateFromQi*_t func pointers
This to "unify" the primitive and conservative formulations of the newtonian solver. By passing function pointers to a helper function, the co
fluids: Use newtonian with StateFromQi*_t func pointers
This to "unify" the primitive and conservative formulations of the newtonian solver. By passing function pointers to a helper function, the compiler can optimize for a given state function(s).
show more ...
|
| d4559bbe | 26-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Use StateFromQi* for newt boundary QFs |
| c5740391 | 26-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Add FluxTotal_Boundary, Refactor newt BI QFs
- Refactoring the newtonian boundary integral QFunctions |
| 34ea8d65 | 22-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Rename primitive booleans, misc formatting |
| d0cce58a | 05-Aug-2022 |
Jeremy L Thompson <jeremy@jeremylt.org> |
QF headers for typedefs and macros (#1036)
* jit - qf headers for typedefs and macros
* jit - smaller list of permitted files
* ceed - only include ceed.h in QF source |
| d867c9cc | 01-Aug-2022 |
Rezgar Shakeri <42816410+rezgarshakeri@users.noreply.github.com> |
Fixed dXdx definition in setupgeo2d.h (#1034) |
| 8ed70ad9 | 29-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Fix for loop variable initialization |
| d1b9ef12 | 23-Jul-2022 |
Leila Ghaffari <49916147+LeilaGhaffari@users.noreply.github.com> |
Fluids - Minor Refactor (#995)
* Fluids - remove *.bin* since it exists in libCEED/.gitignore
* cleanup
* WIP: Fluids - use FluxInviscid_fwd() for computing the flux jacobean
strong_conv is
Fluids - Minor Refactor (#995)
* Fluids - remove *.bin* since it exists in libCEED/.gitignore
* cleanup
* WIP: Fluids - use FluxInviscid_fwd() for computing the flux jacobean
strong_conv is not reproduced and stab is not computed correctly
* WIP: working on variational notation for stabilization
* Fluids - fix missing parts after rebasing onto main
* Fluids - fix SU in the IFunction
* Fluids - refactor stabilization
* Fluids - move stab helper functions to stabilization.h
* Fluids - minor style
* Fluids - minor refactor
* Fluids - add regression test for primitive variables
* Fluids - use UnpackState_*()
* Fluids - more refactoring of stabilization
* Fluids - DC: use utility functions
* Fluids - refactor total flux
* Fluids - minor cleanup
* Fluids - set x[0] = 0 for channel to exclude gravitational potential
* Fluids - updated stabilization.h
* Fluids - zero strong_conv before pass it to FluxInviscidStrong() to be safe
* Fluids - move switch-case for STAB to a helper function
* Fluids - rename Y -> R in Stabilization*()
* Fluids - fix stab sign in RHS
Co-authored-by: Jed Brown <jed@jedbrown.org>
show more ...
|
| 41e73928 | 19-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Use function pointers for StateFrom*, Misc fixes
- Fixes: I missed some StateFrom* functions that needed to be changed |
| 88243482 | 18-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Make STG QFs primitive compatible |
| 3934e2b1 | 18-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Make newtonian boundary QFs primitive compatible |
| e4422942 | 18-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Change newt->primitive to is_primitive |
| cbe60e31 | 18-Jul-2022 |
Leila Ghaffari <49916147+LeilaGhaffari@users.noreply.github.com> |
Fluids - Newtonian with Primitive variables (#1011)
* Fluids - Initial commit for Newtonian primitive variables
* Fluids - include A0 (dU/dY) in the output
* Fluids - added ICs for IG in primi
Fluids - Newtonian with Primitive variables (#1011)
* Fluids - Initial commit for Newtonian primitive variables
* Fluids - include A0 (dU/dY) in the output
* Fluids - added ICs for IG in primitive variables
* Fluids - added Jacobean QFunction for primitive variables
* Fluids - added RHS QFunction for primitive variables
* Fluids - fixed compilation errors and warnings
* Fluids - added ICs for density_current with primitive variables
* Fluids - In/OutFlow BCs for channel in primitive variables
* Adding the missing parts after rebasing onto main
* Fluids - Use correct component names for primitive variables
* Fluids - Primitive variables supported only with implicit scheme
* Fluids - drop in/outflow for channel flow and call Exact_Channel_Prim() in Exact_Channel()
* Fluids - Set solver's QFunction data in an if-else statement
* Fluids - style
* Fluids - add a comment to explain why the the gravity body force is excluded from the potential energy.
* Fluids - Exact_Channel return State
* Fluids - density_current: some style and cleanup
* Fluids - DC: refactor & cleanup
* Fluids - Singel QFunction for prim&cons
* Fluids - Use absolute temperature
* Fluids - DC: Fix pressure
show more ...
|
| 70b0cb14 | 07-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Store 1/Ektot |
| 9eeef72b | 01-Jul-2022 |
James Wright <james@jameswright.xyz> |
fluids: Implement stgdata for ektot |
| 8eea80fc | 30-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Add STG Preprocessing and Calc QFs |
| 71cd6200 | 22-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Abstract out spectrum calculation |
| f6438f20 | 30-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Minor improvements for dirichlet and stg |
| 66531c8b | 30-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Set all outputs in STG QF |
| b7190ff7 | 23-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Create QFs for strong STG w/ QFunctions |
| 704b8bbe | 23-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Combine misc QF helpers into utils.h |
| 88448cd0 | 23-Jun-2022 |
James Wright <james@jameswright.xyz> |
fluids: Add missing license boilerplate |