Directory CCA/Components/Wasatch/

Total Files:
26
Deleted Files:
5
Lines of Code:
395

[root]/CCA/Components/Wasatch
                directory in repo Expressions (13 files, -93 lines)
                    directory in repo MMS (1 files, -20 lines)
                directory in repo Operators (6 files, 168 lines)
                directory in repo transport (7 files, 60 lines)

Lines of Code

CCA/Components/Wasatch/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 192 (100.0%) 6475 (100.0%) 33.7
jsutherland 172 (89.6%) 5654 (87.3%) 32.8
tsaad 18 (9.4%) 805 (12.4%) 44.7
dav 1 (0.5%) 9 (0.1%) 9.0
amir 1 (0.5%) 7 (0.1%) 7.0

Most Recent Commits

tsaad 2010-12-28 07:09 Rev.: 46642

Updated boundary condition treatment to infer BCEvaluator type from the boundary condition operator. This goes along with the recent update in SpatialOps.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch: BCHelperTools.cc (changed)
jsutherland 2010-12-21 20:23 Rev.: 46631

- Bug fix for parallel execution when we build trees unique per patch.
- Turn on unique trees per patch so Tony can hammer out BC issues.

0 lines of code changed in 14 files:

  • CCA/Components/Wasatch: CoordHelper.cc (new), CoordHelper.h (new), TaskInterface.cc (new), TaskInterface.h (changed), TimeStepper.cc (new), Wasatch.cc (new), Wasatch.h (changed)
jsutherland 2010-12-21 20:22 Rev.: 46630

Activate unique expressions per patch.
Tony, have a go at boundary conditions now...

5 lines of code changed in 2 files:

  • CCA/Components/Wasatch: TimeStepper.cc (+2 -2), Wasatch.cc (+3 -3)
amir 2010-12-17 18:41 Rev.: 46624

This is some notes about what I have changed in Wasatch in uintah

Here is a summary of the added files:
- uintah/src/CCA/Components/Wasatch/Expressions/MMS/TaylorVortex.h
- uintah/src/StandAlone/inputs/Wasatch/MMS_P.ups
- uintah/doc/Other/Wasatch/MMS/(All the containing documentary files over there - 17 files)

Here is a summary of the modified files:
- uintah/src/CCA/Components/Wasatch/Expressions/BasicExprBuilder.cc
- uintah/src/StandAlone/inputs/UPS_SPEC/wasatch_spec.xml
- uintah/src/CCA/Components/Wasatch/CoordHelper.cc


7 lines of code changed in 1 file:

  • CCA/Components/Wasatch: Wasatch.cc (+7)
jsutherland 2010-12-17 18:10 Rev.: 46623

First cut at per-patch graphs/expressions.

Right now I am duplicating the status-quo behavior, but using a new interface that will allow us to (hopefully) migrate easily over to per-patch graphs/expressions.

Basically, a TaskInterface now manages creation of ExpressionTree objects, and can manage these so that either one is built for all patches or one is built per patch. Currently, only the one-for-all situation has been tested. Soon we will move to one graph per patch. That will facilitate boundary condition implementation.

195 lines of code changed in 6 files:

  • CCA/Components/Wasatch: TaskInterface.cc (+110 -34), TaskInterface.h (+58 -20), TimeStepper.cc (+12 -12), TimeStepper.h (+2 -2), Wasatch.cc (+13 -28)
jsutherland 2010-12-17 18:10 Rev.: 46622

Disallow expression creation from within the BC interface.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch: BCHelperTools.cc (+1 -1)
jsutherland 2010-12-17 18:09 Rev.: 46621

Minor cleanup.

66 lines of code changed in 5 files:

  • CCA/Components/Wasatch: BCHelperTools.cc (+37 -36), BCHelperTools.h (+25 -18), TimeStepper.h (-7), Wasatch.cc (+4 -6)
tsaad 2010-12-10 15:52 Rev.: 46596

Switched to using pointers in passing the arguments for the BCHelper

9 lines of code changed in 3 files:

  • CCA/Components/Wasatch: BCHelperTools.cc (+6 -21), BCHelperTools.h (+2 -2), Wasatch.cc (+1 -37)
jsutherland 2010-12-08 18:35 Rev.: 46581

Add another rtest and flip the switch that Justin put in to force variables to be allocated per patch rather than groups of patches (no memory windowing)

7 lines of code changed in 3 files:

  • CCA/Components/Wasatch: Wasatch.cc (+6), sub.mk (new)
tsaad 2010-12-08 17:01 Rev.: 46577

fixed typo in BCSide

41 lines of code changed in 1 file:

  • CCA/Components/Wasatch: BCHelperTools.cc (+41 -40)
tsaad 2010-12-04 01:34 Rev.: 46552

TSAAD: cleanup of boundary condition handler code.

51 lines of code changed in 1 file:

  • CCA/Components/Wasatch: BCHelperTools.cc (+51 -77)
jsutherland 2010-12-03 18:15 Rev.: 46550

Fix a bug in calculating coordinate field values.

8 lines of code changed in 1 file:

  • CCA/Components/Wasatch: CoordHelper.cc (+8 -6)
tsaad 2010-12-03 16:48 Rev.: 46549

TSAAD:
1. Added boundary condition treatment for Wasatch. This required modifying the equation adaptors to store the xml input information about each trasnport equation.
2. Added a test case for boundary conditions.
NOTE: due to issues with extracells and boundarylayer cells, this code is NOT functional yet.

674 lines of code changed in 4 files:

  • CCA/Components/Wasatch: BCHelperTools.cc (+579), BCHelperTools.h (+38), Wasatch.cc (+55 -4), sub.mk (+2 -1)
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.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch: FieldTypes.h (new)
jsutherland 2010-11-18 20:56 Rev.: 46489

- push a bit more information into the FieldManager for debugging purposes.
- add some documentation to Array3Window.h. There was a land-mine there that I walked into. Hopefully this will save the next poor soul some pain and suffering.
- add some code to set the process rank as a field variable. This isn't currently active in Wasatch, but can be easily plugged in if needed.

105 lines of code changed in 3 files:

  • CCA/Components/Wasatch: SetProcID.cc (new 70), SetProcID.h (new 34), TaskInterface.cc (+1 -1)
tsaad 2010-10-07 22:08 Rev.: 46333

Fixed bug in assigning proper directions for calculating the coordinates

8 lines of code changed in 1 file:

  • CCA/Components/Wasatch: CoordHelper.cc (+8 -8)
jsutherland 2010-10-07 13:08 Rev.: 46327

more git pains - fixing a problem from my last commit

0 lines of code changed in 1 file:

  • CCA/Components/Wasatch: Wasatch.cc (-4)
jsutherland 2010-10-07 12:58 Rev.: 46326

Fix some memory leaks in Wasatch.

9 lines of code changed in 3 files:

  • CCA/Components/Wasatch: TimeStepper.cc (-5), TimeStepper.h (-1), Wasatch.cc (+9 -4)
jsutherland 2010-10-07 11:03 Rev.: 46325

Fix some memory leaks in Wasatch.

41 lines of code changed in 4 files:

  • CCA/Components/Wasatch: TimeStepper.cc (+21), TimeStepper.h (+10), Wasatch.cc (+7 -1), Wasatch.h (+3)
tsaad 2010-10-06 12:58 Rev.: 46317

Fixed error in timestep calculation. Must use old data warehouse in the task requirement.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch: TimeStepper.cc (+1 -1)

(38 more)

Generated by StatSVN 0.4.0