Directory Core/Grid/

Total Files:
55
Deleted Files:
0
Lines of Code:
16826

[root]/Core/Grid
            directory in repo BoundaryConditions (26 files, 4301 lines)
            directory in repo PatchBVH (9 files, 875 lines)
            directory in repo Variables (79 files, 11828 lines)

Lines of Code

Core/Grid/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 333 (100.0%) 4557 (100.0%) 13.6
harman 86 (25.8%) 1437 (31.5%) 16.7
jpeterson 8 (2.4%) 1110 (24.4%) 138.7
jeff788 13 (3.9%) 708 (15.5%) 54.4
jas 172 (51.7%) 498 (10.9%) 2.8
guilkey 11 (3.3%) 489 (10.7%) 44.4
luitjens 36 (10.8%) 282 (6.2%) 7.8
dav 4 (1.2%) 22 (0.5%) 5.5
qymeng 3 (0.9%) 11 (0.2%) 3.6

Most Recent Commits

harman 2010-12-23 11:35 Rev.: 46634

Remove deadwood
- findCellAndWeights() - AMR version
- findFinerNodes()

0 lines of code changed in 4 files:

  • Core/Grid: LinearInterpolator.cc (new), LinearInterpolator.h (changed)
harman 2010-12-14 17:51 Rev.: 46613

changed assert to (s>=0)

1 lines of code changed in 1 file:

  • Core/Grid: LinearInterpolator.cc (+1 -1)
harman 2010-12-14 17:22 Rev.: 46612

The Lz+ conditional statement was using the wrong zone of influence component.
Added assert to catch when a shape function is negative.

5 lines of code changed in 1 file:

  • Core/Grid: LinearInterpolator.cc (+5 -3)
harman 2010-12-13 17:42 Rev.: 46605


getOtherLevelPatches()
use IntVector::doseIntersect instead of Box::overlaps() when
deciding if a patch is within requested index space.
The call Box::overlaps() fails to do the right thing when the
fine patch boundary coincides with the coarse patch boundary

This fixes a long standing bug when getting fine level patches in ICE::reflux
code and AMRMPM.cc

0 lines of code changed in 2 files:

  • Core/Grid: Patch.cc (new)
harman 2010-12-09 12:13 Rev.: 46584

getCoarseLevelRange()
- add the truncation offset for each direction, x, y, z, independently.

0 lines of code changed in 2 files:

  • Core/Grid: AMR.cc (new)
harman 2010-12-08 18:23 Rev.: 46580

Global:
getCoarseLevelRange()
- now passing in bool returnExclusiveRange.
if set to true then add the offset to ch.

AMRMPM.cc
interpolateParticlesToGrid_CFI()
Working on getting proper number of coarse level particles in the
padding cells that surround the fine patch.

11 lines of code changed in 3 files:

  • Core/Grid: AMR.cc (+9 -3), AMR.h (+2 -1)
harman 2010-12-06 11:18 Rev.: 46554

added output indentation.

0 lines of code changed in 2 files:

  • Core/Grid: Grid.cc (changed)
luitjens 2010-12-02 16:27 Rev.: 46535

Removed extraCells as a static member of Patch. This member didn't make sense since extraCells are specified per level not globally.

35 lines of code changed in 4 files:

  • Core/Grid: Grid.cc (-2), Patch.cc (+1 -2), Patch.h (new)
luitjens 2010-12-02 12:00 Rev.: 46531

Updated the computeExtents query to use other queries in the Patch class in order to ensure consistency.

29 lines of code changed in 2 files:

  • Core/Grid: Patch.cc (+17 -18), Patch.h (+12)
luitjens 2010-12-01 13:10 Rev.: 46526

Added some comments

0 lines of code changed in 2 files:

  • Core/Grid: Task.h (new)
harman 2010-11-30 15:58 Rev.: 46524

Global:
removed the testing version of getFineLevelRangeNodes(), using the original
version that has been cleaned up.

getCoarseLevelRange()
-now passing in the IntVector boundaryLayer and number of ghost cells.
Previously, boundaryLayer was hardcoded to (0,0,0)

AMRMPM
interpolateToParticlesAnUpdate_CFI()
- now interpolating gvelocityStar_fine & gAcceleration_fine to the CFI
particles on the coarse level.

interpolateParticlestoGrid()
- removed debugging code.

interpolateParticlestoGrid_CFI()
- using cell based getCoarseLevelRange instead of nodal based getCoarseLevelRangeNodes()

interpolateToParticlesAndUpdate()
- removed hardwired vel & acc

35 lines of code changed in 2 files:

  • Core/Grid: AMR.cc (+32 -89), AMR.h (+3 -17)
harman 2010-11-19 18:18 Rev.: 46495

added the previous version of getFineLevelRangeNodes_old() so the RT will pass.

42 lines of code changed in 2 files:

  • Core/Grid: AMR.cc (+33), AMR.h (+9 -1)
harman 2010-11-18 11:47 Rev.: 46481


getFineLevelRangeNodes()
using the function computeVariableExtents to determine the fine patch low/high
indices. This allows for boundary layer cells. Eliminated the improper
use of ghost cells.

49 lines of code changed in 2 files:

  • Core/Grid: AMR.cc (+33 -14), AMR.h (+16 -10)
jpeterson 2010-10-27 15:02 Rev.: 46391

CPDI is now split in two components. The Fast component has an issue when particle corners span more than one cell (have over an entire cell between them). Upon detecting that scenario an error is printed and the program exits without a segfault.

846 lines of code changed in 6 files:

  • Core/Grid: fastAxiCpdiInterpolator.cc (new 102), fastAxiCpdiInterpolator.h (new 75), fastCpdiInterpolator.cc (new 595), fastCpdiInterpolator.h (new 74), sub.mk (new)
guilkey 2010-10-21 17:53 Rev.: 46384

Adding an axisymmetric version of the cpdi interpolator. Housecleaning on the
original cpdiInterpolator.

196 lines of code changed in 5 files:

  • Core/Grid: axiCpdiInterpolator.cc (new 102), axiCpdiInterpolator.h (new 75), cpdiInterpolator.cc (+17 -42), sub.mk (+2 -1)
guilkey 2010-10-21 16:11 Rev.: 46381

Reverting cpdi back to pre-Joseph so that we can use it until he's able to fix
the bugs in his version.

238 lines of code changed in 1 file:

  • Core/Grid: cpdiInterpolator.cc (+238 -262)
harman 2010-10-21 15:03 Rev.: 46380

Completed more descriptive variable name change. These changes should have been
in the last commit.

2 lines of code changed in 1 file:

  • Core/Grid: LinearInterpolator.cc (+2 -2)
harman 2010-10-21 11:19 Rev.: 46379

-Improved comments.
-more descriptive variables names ni -> CFI_ni, lo -> finePatch_lo ...etc
-Changed test for detecting if a node is on a CFI. Now using a inside a box test.
-The number of elements in a shape function is variable. Using push_back.
-Added gobs of debugging output code, currently turned off

66 lines of code changed in 1 file:

  • Core/Grid: LinearInterpolator.cc (+66 -23)
luitjens 2010-10-20 14:50 Rev.: 46377

Potentially fixed the checkGetAccess code when requesting psets from different levels.

31 lines of code changed in 2 files:

  • Core/Grid: Task.cc (+31 -27)
harman 2010-10-15 08:51 Rev.: 46369

AMR.cc
getCoarseLevelRangeNodes()
- added nBoundaryCells to the computeVariableExtents argument list.
- using mapCellToCoarser() instead of mapNodeToCoarser()
- this commit has debugging couts

AMRMPM
Global: removed "\t" from printTask and printSchedule calls
For debugging pColor is initialized to the level the particle is on.

InterpolateParticlesToGrid_CFI()
- using zoi on the fine level instead of the coarse level
- using AMR version of findCellAndWeights
- The size of the node index vector is dynamic.
- lots of debugging cout statements.

ComputeZoneOfInfluence()
- At the CFI faces (fine level) the stencil element modified is the same
as the CFI face. Previously I had set it to be the opposite element.

In this commit InterpolateParticlesToGrid_CFI is doing the right thing for a simple
3L, RR: 2, 1-D problem. More testing is needed!

17 lines of code changed in 2 files:

  • Core/Grid: AMR.cc (+14 -5), AMR.h (+3 -1)

(62 more)

Generated by StatSVN 0.4.0