| 25150b89 | 08-Dec-2019 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #428 from CEED/valeria/small-doc-fixes
Small doc fixes |
| 7d28b2da | 25-Oct-2019 |
Leila Ghaffari <Leila.Ghaffari@colorado.edu> |
NS: Now, "E= internal energy+kinetic energy" and "rho g z u[2]" is brought to body force (It's needed for SUPG) |
| 07bace8b | 25-Oct-2019 |
Leila Ghaffari <Leila.Ghaffari@colorado.edu> |
NS: dXdxdXdxT deleted from densitycurrent
Squashed-by: Jed Brown <jed@jedbrown.org> |
| 7aa8afbe | 11-Nov-2019 |
Leila Ghaffari <Leila.Ghaffari@colorado.edu> |
NS: *.vtu added to .gitignore |
| 6a0c4579 | 06-Dec-2019 |
Jed Brown <jed@jedbrown.org> |
.gitignore: nsplex |
| 177ee18c | 21-Oct-2019 |
Kenneth E. Jansen <Kenneth.Jansen@colorado.edu> |
Makefile cleans for nsplex output. Tested with ./nsplex -naturalz -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 20,20,1 -ts_adapt_dt_max .1 -ts_max_time 2 -problem advection -dm_view -CtauS .3
Makefile cleans for nsplex output. Tested with ./nsplex -naturalz -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 20,20,1 -ts_adapt_dt_max .1 -ts_max_time 2 -problem advection -dm_view -CtauS .3 -implicit -snes_mf -ksp_atol 1e-3 -snes_type ksponly -ts_view -stab supg
show more ...
|
| d5ba8fc3 | 20-Oct-2019 |
Kenneth E. Jansen <Kenneth.Jansen@colorado.edu> |
NS: add SUPG and IFunction for to advection.h
Thanks-to: Leila Ghaffari <Leila.Ghaffari@colorado.edu> Squashed-by: Jed Brown <jed@jedbrown.org> |
| dce96cc4 | 21-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
nsplex: support natural BCs in z direction
Example quasi-2D run:
mpiexec -n 2 ./nsplex -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 20,20,1 -ts_max_time 2 -problem advection -dm_view -Ctau
nsplex: support natural BCs in z direction
Example quasi-2D run:
mpiexec -n 2 ./nsplex -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 20,20,1 -ts_max_time 2 -problem advection -dm_view -CtauS .3 -implicit -snes_mf -ksp_atol 1e-3 -snes_type ksponly -ts_adapt_atol 2e-2 -ts_view -stab supg
show more ...
|
| 9539de9f | 21-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
NS: more permissive TS limits trust error controller |
| b974e86e | 06-Dec-2019 |
Jed Brown <jed@jedbrown.org> |
ns: add to tests (requires recent PETSc) |
| 9ff6cde3 | 06-Dec-2019 |
Jed Brown <jed@jedbrown.org> |
ns: fix corrupted comment about run configurations |
| 942bcf0c | 27-Nov-2019 |
Jed Brown <jed@jedbrown.org> |
nsplex: build RHS/IFunction only when available
Reported-by: Leila Ghaffari <Leila.Ghaffari@colorado.edu> Reported-by: James Wright <James.WrightIii@colorado.edu> |
| 95bb1877 | 06-Dec-2019 |
valeriabarra <valeriabarra21@gmail.com> |
Small doc improvements to make it more readable and consistent |
| 71f0e405 | 20-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
nsplex: add IFunction formulation with SUPG using BDF2 by default
./nsplex -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 50,50 -ts_adapt_dt_max .1 -ts_max_time 2 -problem advection2d -dm_view
nsplex: add IFunction formulation with SUPG using BDF2 by default
./nsplex -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 50,50 -ts_adapt_dt_max .1 -ts_max_time 2 -problem advection2d -dm_view -CtauS .2 -implicit -snes_mf -ksp_atol 1e-5 -snes_type ksponly -ts_adapt_atol 2e-2 -ts_view -stab supg
show more ...
|
| 27fd9739 | 20-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
CeedQFunctionCreateInterior: error handling when f or source is NULL |
| c1cc54d4 | 18-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
nsplex: add SUPG stabilization and strong/weak option for advection term |
| 91360902 | 27-Jul-2019 |
Jed Brown <jed@jedbrown.org> |
DMPlex for Navier-Stokes/Advection in 2D and 3D
Currently uses synthetic "box" meshes, but is entirely unstructured semantically so you can read any mesh that DMPlex supports.
Add -problem advectio
DMPlex for Navier-Stokes/Advection in 2D and 3D
Currently uses synthetic "box" meshes, but is entirely unstructured semantically so you can read any mesh that DMPlex supports.
Add -problem advection2d with basic (for now) advection scheme. This is intended to become a testbed for stabilization techniques.
./nsplex -ts_monitor -petscspace_degree 2 -dm_plex_box_faces 30,30 -ts_adapt_dt_max .1 -ts_max_time 6 -problem advection2d -dm_view
show more ...
|
| 2530d762 | 17-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
Promote CeedElemRestrictionGet* to public interface
These were formerly backend-only, but their availability can help users write reliable code without needing to pass around redundant numeric value
Promote CeedElemRestrictionGet* to public interface
These were formerly backend-only, but their availability can help users write reliable code without needing to pass around redundant numeric values.
show more ...
|
| 1e080a46 | 16-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
advection: adjust velocity and extend to boundary |
| a33ae120 | 14-Oct-2019 |
Jed Brown <jed@jedbrown.org> |
advection: fix bug introduced in refactor
1980ef9facf02dd7cbce4041c567716dc51f62e7 NS - Use vla for clarity |
| fa9eac48 | 31-Jul-2019 |
Jed Brown <jed@jedbrown.org> |
CeedElemRestrictionGetMultiplicity: move TransposeMode to an input arg
Enables support for interlaced (CEED_TRANSPOSE), as typically used in PETSc examples/apps. |
| 854cbf70 | 04-Dec-2019 |
Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com> |
Merge pull request #372 from CEED/jeremy/element-fdm-inv
FDM Element Inverse |
| 5fc5d8e2 | 04-Dec-2019 |
Jeremy L Thompson <25011573+jeremylt@users.noreply.github.com> |
Merge pull request #399 from CEED/jeremy/rstr-opt
Restriction Optimizations |
| 0e4d4210 | 03-Dec-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
Ceed - Define CEED_EPSILON for interface use |
| 3c1eb631 | 06-Nov-2019 |
jeremylt <jeremy.thompson@colorado.edu> |
make style |