[root]/CCA/Components/Wasatch/Transport
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 241 (100.0%) | 5119 (100.0%) | 21.2 |
tsaad | 163 (67.6%) | 3692 (72.1%) | 22.6 |
jsutherland | 52 (21.6%) | 1400 (27.3%) | 26.9 |
jas | 26 (10.8%) | 27 (0.5%) | 1.0 |
Remove an unnecessary line of code.
0 lines of code changed in 2 files:
Consolidate some code - implement inline rather than splitting it out in the header.
0 lines of code changed in 6 files:
Fix a very subtle bug in the compressible algorithm. The bug was due to the poorly designed interface for constructing diffusive fluxes when the old variable density algorithm was being used. This should address the failures that were "randomly" taking place on the RT machine. We may still have to rebless the GS since this commit will change answers.
18 lines of code changed in 7 files:
fix the Wasatch RT
3 lines of code changed in 1 file:
Remove a few superfluous "typename" declarations that were causing problems on mira.
6 lines of code changed in 1 file:
Silence a few more warnings coming out of g++.
13 lines of code changed in 2 files:
Silence some compiler warnings.
5 lines of code changed in 2 files:
First cut at a fully functional compressible flow solver in Wasatch.
1. Uses a collocated grid arrangement
2. Current supports a calorically perfect gas only
3. No shock capturing since the algorithm is intended for low-Mach simulations when preconditioning is implemented
4. Look at the two input files: compressible-flow-test-1d and compressible-flow-test-2d for examples
5. RT will be added soon
598 lines of code changed in 13 files:
get rid of the "suffix" argument when setting up convective flux. Introducing the suffix was a bad design decision.
10 lines of code changed in 9 files:
Change the Wasatch namespace to WasatchCore to avoid conflicts with the Wasatch class.
72 lines of code changed in 51 files:
Get the strain tensor and convective fluxes to properly hook up to the compressible momentum equations.
Segregate the common features of momentum transport for an easier implementation of the compressible algorithm.
291 lines of code changed in 7 files:
1. Simplify the momentum transport equation base class
2. Derive the Compressible momentum transport equation from the aforementioned base class
22 lines of code changed in 5 files:
Generalize the turbulence closure models to handle a collocated grid arrangement.
Also cleanup some warnings.
8 lines of code changed in 2 files:
must use absolute path for gpu build to work
1 lines of code changed in 1 file:
fix typo in makefile that caused Wasatch gpu build failure
0 lines of code changed in 2 files:
New abstraction for momentum transport in preparation for compressible flow support.
1. Create a base class for momentum transport
2. Derive a class for low-Mach problems
TODO: adapt the compressible momentum equation to use this new abstraction
1611 lines of code changed in 8 files:
Rip out the Kinetic Energy expression that is now redundant after Tony's commit.
2 lines of code changed in 1 file:
Add expression that calculates strain for a collocated grid arrangement.
Cleanup a few helper functions for the strain tensor.
187 lines of code changed in 1 file:
correct the strain tensor by removing the dilatational contributions to the normal strain and instead accounting for those only when computing the stress. This will break the RT.
1 lines of code changed in 1 file:
Add a missing file to the sub.mk. Not sure why this was building for me locally.
3 lines of code changed in 1 file:
The beginnings of compressible Wasatch.
- Total internal energy transport equation is (mostly) implemented. Still lacking:
o boundary conditions
o parser support
- Continuity equation mostly implemented. Still lacking BCs.
- Compressible Momentum equation stubs are in place.
This will give us a compiling code to develop against as we refactor the momentum & strain code.
1128 lines of code changed in 5 files:
Cleanup:
- rip out pressure_tag() since we already have that on TagNames.
- some formatting changes along the way
46 lines of code changed in 4 files:
Do not require ProblemSpec for base transport equations. This will allow us to construct transport equations for which there is no input file specification.
93 lines of code changed in 19 files:
More cleanup (and fixing some problems with previous commit)
- remove VelEst. This was obsolete, and I think that there was a bug in the stress contribution there.
- Remove more references to "tau" that should be strain.
24 lines of code changed in 1 file:
one more set of changes that didn't make it in my previous commit.
9 lines of code changed in 1 file:
rename set_tau_tags to set_strain_tags. This should fix the Wasatch build.
1 lines of code changed in 1 file:
Refer to "strain" rather than "stress" or "tau" as appropriate.
Note that this will diff numerous regression tests due to renaming variables.
18 lines of code changed in 1 file:
Add support for adaptive timestepping with particles. This uses the particle velocity CFL. One can also easily add the particle response time but our current application space does not require that.
56 lines of code changed in 2 files:
1. Create a BCHelper base class so that Arches (and other components) can use the features provided by the BCHelper.
2. From the BCHelper, derive a new class called WasatchBCHelper that specializes in applying boundary conditions for Wasatch
3. Start deprecating the use of the BCHelperTools
Other component developers are welcome/encouraged to look at the BCHelper and see if it can be leveraged for their applications.
44 lines of code changed in 14 files:
remove a cout statement
1 lines of code changed in 1 file:
Silence a few more compiler warnings.
0 lines of code changed in 1 file:
More cleanup, including changes to eliminate some compiler warnings.
1 lines of code changed in 1 file:
Minor OCD cleanup.
6 lines of code changed in 1 file:
get rid of CARRY_FORWARD in Wasatch. We are now clear to remove supporting CARRY_FORWARD from all Wasatch upstream libraries.
12 lines of code changed in 4 files:
more cleanup for new varden projection
1 lines of code changed in 1 file:
This is a major commit in Wasatch:
1. Rip out the entire variable density projection algorithm
2. Put in the newly developed variable density projection - based on projecting for the velocity divergence but transporting momentum and conserved scalars
3. Opt for using a 7-point stencil due to the nature of the new, variable coefficient, pressure poisson system
4. Update the 2d Shunn MMS so that it has a zero source term in the continuity equation
5. various other cleanups and deletions of code used by the old varden approach
This commit will break many tests in Wasatch. Will update the GS' tomorrow.
148 lines of code changed in 5 files:
Revert "This is a major commit in Wasatch:"
This reverts commit b70655ad691708e758d3f61f9cb545659b211d54.
300 lines of code changed in 5 files:
This is a major commit in Wasatch:
1. Rip out the entire variable density projection algorithm
2. Put in the newly developed variable density projection based on projecting for the velocity divergence
3. Opt for using a 7-point stencil due to the nature of the new, variable coefficient, pressure poisson system
4. Update the 2d Shunn MMS so that it has a zero source term in the continuity equation
5. various other cleanups and deletions of code used by the old varden approach
This commit will break many tests in Wasatch. Will update the GS' tomorrow.
148 lines of code changed in 5 files:
fix conceptual bug in the 1D MMS mixture fraction source term. One must use the appropriate time (t + dt) for the source term in the rhs of (rho*f)_at_(n+2)
8 lines of code changed in 1 file:
cosmetic changes
1 lines of code changed in 1 file:
(13 more)