Directory Packages/Uintah/Core/Grid/

Directory Deleted:
2009-03-09 15:15
Total Files:
0
Deleted Files:
43
Lines of Code:
0

[root]/Packages/Uintah/Core/Grid
                    Folder removed from repo BoundaryConditions (0 files, 0 lines)
                    Folder removed from repo PatchBVH (0 files, 0 lines)
                    Folder removed from repo Variables (0 files, 0 lines)

Lines of Code

Packages/Uintah/Core/Grid/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 147 (100.0%) 1441 (100.0%) 9.8
jas 120 (81.6%) 1290 (89.5%) 10.7
harman 9 (6.1%) 94 (6.5%) 10.4
luitjens 18 (12.2%) 57 (4.0%) 3.1

Most Recent Commits

jas 2009-03-09 15:15 Rev.: 43504

Remove Packages/

0 lines of code changed in 43 files:

  • Packages/Uintah/Core/Grid: AMR.cc (del), AMR.h (del), BSplineInterpolator.cc (del), BSplineInterpolator.h (del), Box.cc (del), Box.h (del), Ghost.cc (del), Ghost.h (del), Grid.cc (del), Grid.h (del), GridP.h (del), Level.cc (del), Level.h (del), LevelP.h (del), LinearInterpolator.cc (del), LinearInterpolator.h (del), Material.cc (del), Material.h (del), Node27Interpolator.cc (del), Node27Interpolator.h (del), ParticleInterpolator.h (del), Patch.cc (del), Patch.h (del), PatchRangeTree.cc (del), PatchRangeTree.h (del), Region.cc (del), Region.h (del), SimpleMaterial.cc (del), SimpleMaterial.h (del), SimulationState.cc (del), SimulationState.h (del), SimulationStateP.h (del), SimulationTime.cc (del), SimulationTime.h (del), TOBSplineInterpolator.cc (del), TOBSplineInterpolator.h (del), Task.cc (del), Task.h (del), UnknownVariable.cc (del), UnknownVariable.h (del), fixedvector.h (del), sub.mk (del), uintahshare.h (del)
luitjens 2009-03-02 14:47 Rev.: 43368

Added a few debug streams. No longer profile fine tasks seperately from regular tasks.

1 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: Task.cc (-4), Task.h (new)
luitjens 2009-02-26 17:25 Rev.: 43349

Fixed some memory access errors pointed out by valgrind.

11 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Level.cc (new)
luitjens 2009-02-13 10:30 Rev.: 43205

Updates to Region::difference.

1) Fixed a bug where the function did not properly handle subtracting an empty set
2) No longer includes zero sized regions in the results
3) Changed deque to a vector as we didn't use any of the deque features and vetors are more widely understood.

30 lines of code changed in 10 files:

  • Packages/Uintah/Core/Grid: Grid.cc (new), Patch.cc (+5 -5), Patch.h (new), Region.cc (new), Region.h (+3 -3)
harman 2009-02-12 18:50 Rev.: 43202

removed hasFinerCell()
- use Patch::getFinestRegionsOnPatch() for similar functionality

1 lines of code changed in 3 files:

  • Packages/Uintah/Core/Grid: Level.cc (-27), Level.h (+1 -1)
harman 2009-02-12 18:42 Rev.: 43201

Patch.cc/h
Added getFinestRegionsOnPatch()

// Returns a deque of Regions that
// do not have any overlapping finer level cells.
// Use this if you want to iterate over the "finest" level cells
// on coarse and fine levels.
//
// usage:
// deque<Region> regions
// coarsePatch->getFinestRegionsOnPatch(regions)
//
// for(deque<Region>::iterator region=regions.begin();region!=regions.end();region++){
// for (CellIterator iter(region->getLow(), region->getHigh()); !iter.done(); iter++){
// }
// }

MassMomEng_src.cc
Only adding srcs on the "finest" coarse level & fine level cells

51 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Patch.cc (+42), Patch.h (+9)
harman 2009-02-09 21:44 Rev.: 43166

added containsCell(): does a level contain a cell
added hasFinerCell(): Does a coarse level cell have a finer level cell above it.

41 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Level.cc (+40), Level.h (+1)
harman 2009-02-09 11:30 Rev.: 43156

eliminated unused code and it should have not been in
Level to begin with.

1 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Level.cc (-48), Level.h (+1 -6)
jas 2009-01-26 13:49 Rev.: 42976

Add the MIT License to every *.cc, *.h,*.F, and sub.mk file.

1290 lines of code changed in 77 files:

  • Packages/Uintah/Core/Grid: AMR.cc (+30), AMR.h (new), BSplineInterpolator.cc (+30), BSplineInterpolator.h (+30), Box.cc (new), Box.h (+30), Ghost.cc (new), Ghost.h (new), Grid.cc (+30), Grid.h (+30), GridP.h (new), Level.cc (+30), Level.h (+30), LevelP.h (+30), LinearInterpolator.cc (new), LinearInterpolator.h (new), Material.cc (+30), Material.h (+30), Node27Interpolator.cc (+30), Node27Interpolator.h (+30), ParticleInterpolator.h (+30), Patch.cc (+30), Patch.h (+30), PatchRangeTree.cc (new), PatchRangeTree.h (new), Region.cc (+30), Region.h (+30), SimpleMaterial.cc (new), SimpleMaterial.h (+30), SimulationState.cc (new), SimulationState.h (+30), SimulationStateP.h (+30), SimulationTime.cc (new), SimulationTime.h (new), TOBSplineInterpolator.cc (+30), TOBSplineInterpolator.h (new), Task.cc (+30), Task.h (+30), UnknownVariable.cc (new), UnknownVariable.h (new), fixedvector.h (+30), sub.mk (+30), uintahshare.h (new)
luitjens 2009-01-23 13:37 Rev.: 42964

Fixed a bug in the logic for containsPoint type functions. Previously the function would compare the point position to the position of the high and low index of the patch. However, the high index is actually larger than the highest point in the patch by 1 in each dimension. I also converted the new versions of these functions to use integer arithmatic instead of floating point in order to hopefully avoid problems with floating point error in the future.

14 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Patch.h (+14 -14)
luitjens 2009-01-16 13:39 Rev.: 42903

Trimmed the output of a patch.

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Patch.cc (+1 -1)
Generated by StatSVN 0.4.0