[root]/CCA/Components/Wasatch/Operators
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 33 (100.0%) | 1096 (100.0%) | 33.2 |
jsutherland | 26 (78.8%) | 655 (59.8%) | 25.1 |
tsaad | 7 (21.2%) | 441 (40.2%) | 63.0 |
Add some documentation.
0 lines of code changed in 2 files:
remove "inline" keyword from a few methods that are now in the UpwindInterpolant.cc file.
0 lines of code changed in 2 files:
Move a bunch of stuff from header files to .cc files, and use explicit template instantiation.
This should help speed up compilation times and may reduce code bloat a bit.
165 lines of code changed in 5 files:
- Turn off some operators that we don't need for now.
- quiet a compiler warning
29 lines of code changed in 2 files:
Major cleanup for UpwindInterpolant.
- Moved all counter arithmetic to constructor and added required private variables.
- In the process, removed some of un-necessary member variables (dim_, hasPlusFace_).
57 lines of code changed in 1 file:
quite compiler warning on Linux
3 lines of code changed in 1 file:
remove some comments
1 lines of code changed in 1 file:
First hack at getting memory window support from SpatialOps to propagate into Wasatch.
Still need to get the configure system up to date to correctly deal with requirements from SpatialOps
57 lines of code changed in 2 files:
Fixed typo in UpwindInterplant.h - Now convective flux work in all 3 directions.
4 lines of code changed in 1 file:
quiet some warnings on Linux
4 lines of code changed in 1 file:
- fix some more things that broke in my recent failed merge.
9 lines of code changed in 1 file:
Merge branch 'cleanup'
11 lines of code changed in 1 file:
In this commit:
1. Debugged UpwindInterpolant.
2. Added support for Central differencing for convection.
3. Added convection-test.ups file. This is NOT a comprehensive test yet.
4. Modified ConvectiveFlux.h by adding inhertience for upwind type interpolants.
147 lines of code changed in 2 files:
- Reformat a few things for consistency.
- Remove a few output statements.
51 lines of code changed in 1 file:
- Added convective flux expression.
- Modified wasatch spec file for convective flux expression.
- Added Upwind interpolation operator.
- Modified Operators.cc for upwind interpolant.
- Added test file: convection-test.ups.
- NOTE: THE UPWIND INTERPOLATION IS STILL BEING DEBUGGED.
232 lines of code changed in 2 files:
- Added support for expressions: SineFunction, GaussianFunction, and DoubleTanhFunction.
- Modified UPS specification file to support tags related to the aforementioned functions in Wasatch.
- Corrected a few typos in the comments and output messages.
1 lines of code changed in 1 file:
Update Doxygen support in Wasatch. Created several modules/groups.
21 lines of code changed in 3 files:
This checkin adds a new component (Wasatch) to Uintah. Wasatch uses
graph theory to automatically assemble algorithms from individual
"expressions." It also uses an operator approach to discrete field
operations, i.e. application of a gradient to a field. It provides
general wrapper capabilities for these "expression graphs" and exposes
them as Uintah tasks.
Currently Wasatch will not be built by default. This is to avoid
breaking other developers until we get the build system in shape.
Noteworthy changes outside of wasatch:
- the configure stuff was changed to allow Wasatch to be turned on
during configure. This required me to re-run autoconf, resulting
in numerous changes to configure since I was using a different
version of autoconf than was previously run.
- Modified the ups_spec.xml file to add a few more "common tags."
Dav is working on a better way to introduce these so that we don't
need to "pollute" this file.
- Modified CCA/Components/Parent/ComponentFactory.cc to plug Wasatch
in. In doing this, I moved a header file inclusion up a bit so
that the appropriate #define were available when including header
files.
- Changes to the appropriate sub.mk files to plug in the new component.
304 lines of code changed in 4 files: