Directory Packages/Uintah/Core/Grid/

Total Files:
30
Deleted Files:
0
Lines of Code:
8085

[root]/Packages/Uintah/Core/Grid
                    directory in repo BoundaryConditions (7 files, 1848 lines)
                    directory in repo Variables (48 files, 7405 lines)

Lines of Code

Packages/Uintah/Core/Grid/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 173 (100.0%) 2779 (100.0%) 16.0
harman 34 (19.7%) 1482 (53.3%) 43.5
worthen 75 (43.4%) 530 (19.1%) 7.0
sparker 7 (4.0%) 423 (15.2%) 60.4
dav 19 (11.0%) 114 (4.1%) 6.0
guilkey 13 (7.5%) 103 (3.7%) 7.9
jas 7 (4.0%) 70 (2.5%) 10.0
luitjens 7 (4.0%) 29 (1.0%) 4.1
kuzimmer 3 (1.7%) 14 (0.5%) 4.6
mjc 7 (4.0%) 11 (0.4%) 1.5
borodai 1 (0.6%) 3 (0.1%) 3.0

Most Recent Commits

guilkey 2006-12-21 12:56 Rev.: 36249

Aargh, forgot to commit this with the LinearInterpolator files. So much
for my atomic commit.

0 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: ParticleInterpolator.h (new)
guilkey 2006-12-21 12:29 Rev.: 36247

include Stencil7 and NCVariable.

0 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: LinearInterpolator.h (changed)
guilkey 2006-12-21 11:45 Rev.: 36246

Added a new version of findCellAndWeights to LinearInterpolator, now used
in AMRMPM.cc. Seems to work on a single level, not tested on multiple levels
yet.

99 lines of code changed in 3 files:

  • Packages/Uintah/Core/Grid: LinearInterpolator.cc (+64), LinearInterpolator.h (+35 -2)
worthen 2006-12-18 22:29 Rev.: 36197

Consolidate SPRelocate into MPIRelocate

Next step in scheduling coarsen and refining particles

2 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: Level.cc (-6), Level.h (new)
guilkey 2006-12-12 14:19 Rev.: 36094

Added getCoarseLevelRangeNodes.

0 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: AMR.cc (changed), AMR.h (new)
worthen 2006-12-08 00:20 Rev.: 36034

Add Per-Component LB stats for Regridder, LoadBalancer, TG Execution, TG mpi wait, TG compilation, available with SCI_DEBUG=ComponentTimings:+

25 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: SimulationState.cc (new), SimulationState.h (+12)
borodai 2006-12-07 15:33 Rev.: 36028

Fixed positionToIndex for stretched grid.

3 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Level.cc (+3 -3)
sparker 2006-11-13 17:38 Rev.: 35848

Maybe fix Stas' problem...
d_stretched was not properly initialized

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Level.cc (+1)
sparker 2006-11-07 22:25 Rev.: 35812

Added first cut at support for stretched grids, including:
- A sample input file that sets up a stretched grid. It doesn't actually run
with anything, but it should give you an idea of how to specify one.
- Logic to parse and setup a stretched grid in Grid
- Updates to code in Level to accomodate stretched grids
- Updates to ProblemSpec to parse the xml for them

If you get a NaN running with a stretched, then your code is likely
asking for something like dCell, which is no longer defined.

--This line, and those below, will be ignored--

A StandAlone/inputs/Examples/stretched.ups
M Core/Grid/Level.cc
M Core/Grid/Level.h
M Core/Grid/Grid.cc
M Core/Grid/Grid.h
M Core/ProblemSpec/ProblemSpec.cc
M Core/ProblemSpec/ProblemSpec.h

422 lines of code changed in 6 files:

  • Packages/Uintah/Core/Grid: Grid.cc (+336 -18), Grid.h (new), Level.cc (+61 -5), Level.h (+20)
worthen 2006-10-31 13:49 Rev.: 35737

Remove concept of time-refinement from Grid, and store whether the sim is lockstep in SharedState. Have components compute delt based on the level it's on and have the SimulationController worry about the inter-level constraints. (Also consolidate SimCnt::doInitialTimestepRegridding into doInitialTimestep and doRegridding)

13 lines of code changed in 6 files:

  • Packages/Uintah/Core/Grid: Grid.cc (-2), Grid.h (-5), Level.cc (+4 -21), Level.h (+1 -7), SimulationState.cc (+5), SimulationState.h (+3)
harman 2006-10-10 14:59 Rev.: 35555

AMR.h
cleaned up spew

hotBlob_AMR.ups
removed HR regridder

0 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: AMR.h (-1)
harman 2006-09-29 09:17 Rev.: 35462

fixed yesterday's bulletproofing commit.
throw exception if ( spacing > (upper - lower) )

3 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+3 -3)
harman 2006-09-28 15:49 Rev.: 35456

Use old-style quadradic CFI interpolator. New-style isn't quite ready.

3 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: AMR.h (+3 -3)
harman 2006-09-28 13:24 Rev.: 35454

Incorporation of Colella's quadratic CFI interpolator into AMRICE
AMR.h
-------------------------
-added select_CFI_interpolator()
quadradicInterpolation_CF()
- made gridHi inclusive

AMRICE.h
------------------------
added global variable d_orderOf_CFI_Interpolation. The order of interpolation
at the CFI can be different than the rest of the domain.

refine_CF_interfaceOperator()
variable names: finePatch instead of patch
now using select_CFI_Interpolator()

AMRICE.cc
----------------------
default value of d_orderOf_CFI_Interpolation = d_orderOfInterpolation
can be specified in ups file

48 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: AMR.h (+48 -1)
harman 2006-09-28 13:12 Rev.: 35453

getCoarseFineFaceRange()
for higer order interpolation increase the coarse level foot print by the order
of the interpolation. Need this for Colella's quadradic CFI interpolator.

9 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: AMR.cc (+9 -9)
harman 2006-09-28 08:50 Rev.: 35451

linearInterpolation()
- cleanup and fixed x+,y+,z+ face bug that was probably introduced by
recent commit.

32 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: AMR.h (+32 -34)
harman 2006-09-27 16:36 Rev.: 35449

problemSetup()
-more bulletproofing

12 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+12 -1)
harman 2006-09-27 16:25 Rev.: 35448

cleaned up output

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+1 -1)
harman 2006-09-27 14:03 Rev.: 35440

AMR.cc
__________________________________
normalizedDistance_CC()
- the normalized distance can now be either + or - depending
on the relative distance from the CC. This is a big change.
AMR.h
__________________________________
global: general cleanup
testInterpolators()
- generalized to handle either the entire domain or just a CFI

70 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: AMR.cc (+2 -2), AMR.h (+68 -82)
harman 2006-09-27 13:22 Rev.: 35438

added bulletproofing to problemsetup.
if (lower>=upper) barf

15 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+15 -3)

(46 more)

Generated by StatSVN 0.4.0