Directory CCA/Components/Wasatch/Operators/

Total Files:
6
Deleted Files:
0
Lines of Code:
168

[root]/CCA/Components/Wasatch/Operators

Lines of Code

CCA/Components/Wasatch/Operators/ Lines of Code

Developers

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

Most Recent Commits

jsutherland 2010-12-14 09:36 Rev.: 46607

Add some documentation.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Operators: OperatorTypes.h (changed)
jsutherland 2010-12-02 20:34 Rev.: 46540

remove "inline" keyword from a few methods that are now in the UpwindInterpolant.cc file.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (changed)
jsutherland 2010-12-02 20:23 Rev.: 46538

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:

  • CCA/Components/Wasatch/Operators: OperatorTypes.h (+8 -3), UpwindInterpolant.cc (new 146), UpwindInterpolant.h (+8 -127), sub.mk (+3 -2)
jsutherland 2010-11-06 15:36 Rev.: 46431

- Turn off some operators that we don't need for now.
- quiet a compiler warning

29 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Operators: Operators.cc (new)
tsaad 2010-10-30 16:21 Rev.: 46413

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:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+57 -79)
jsutherland 2010-10-28 15:32 Rev.: 46405

quite compiler warning on Linux

3 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+3 -3)
jsutherland 2010-10-28 12:42 Rev.: 46400

remove some comments

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+1 -4)
jsutherland 2010-10-28 12:41 Rev.: 46399

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:

  • CCA/Components/Wasatch/Operators: Operators.cc (+12 -12), UpwindInterpolant.h (+45 -46)
tsaad 2010-10-08 16:25 Rev.: 46344

Fixed typo in UpwindInterplant.h - Now convective flux work in all 3 directions.

4 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+4 -4)
jsutherland 2010-10-07 13:20 Rev.: 46328

quiet some warnings on Linux

4 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+4 -2)
jsutherland 2010-10-07 10:36 Rev.: 46323

- fix some more things that broke in my recent failed merge.

9 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+9 -11)
jsutherland 2010-10-07 08:31 Rev.: 46321

Merge branch 'cleanup'

11 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+11 -9)
tsaad 2010-10-06 15:23 Rev.: 46318

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:

  • CCA/Components/Wasatch/Operators: Operators.cc (+3 -5), UpwindInterpolant.h (+144 -92)
jsutherland 2010-09-28 07:29 Rev.: 46268

- Reformat a few things for consistency.
- Remove a few output statements.

51 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Operators: UpwindInterpolant.h (+51 -43)
tsaad 2010-09-24 15:37 Rev.: 46262

- 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:

  • CCA/Components/Wasatch/Operators: Operators.cc (+42), UpwindInterpolant.h (+190)
tsaad 2010-09-24 14:47 Rev.: 46261

- 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:

  • CCA/Components/Wasatch/Operators: OperatorTypes.h (+1 -1)
jsutherland 2010-09-11 16:43 Rev.: 46189

Update Doxygen support in Wasatch. Created several modules/groups.

21 lines of code changed in 3 files:

  • CCA/Components/Wasatch/Operators: OperatorTypes.h (+13 -1), Operators.h (+8)
jsutherland 2010-06-16 17:33 Rev.: 45747

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:

  • CCA/Components/Wasatch/Operators: OperatorTypes.h (+66), Operators.cc (+216), Operators.h (+16), sub.mk (+6)
Generated by StatSVN 0.4.0