Directory Packages/Uintah/Core/Grid/Variables/

Total Files:
82
Deleted Files:
6
Lines of Code:
3006

[root]/Packages/Uintah/Core/Grid/Variables

Lines of Code

Packages/Uintah/Core/Grid/Variables/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 219 (100.0%) 10775 (100.0%) 49.2
worthen 108 (49.3%) 9626 (89.3%) 89.1
sparker 2 (0.9%) 319 (3.0%) 159.5
harman 8 (3.7%) 262 (2.4%) 32.7
livne 15 (6.8%) 233 (2.2%) 15.5
dgroulx 41 (18.7%) 110 (1.0%) 2.6
bigler 24 (11.0%) 84 (0.8%) 3.5
kuzimmer 8 (3.7%) 73 (0.7%) 9.1
jas 13 (5.9%) 68 (0.6%) 5.2

Most Recent Commits

worthen 2005-12-14 10:45 Rev.: 32842

Fix SGI compile

0 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.cc (changed), AMRInterpolate.h (changed)
worthen 2005-12-13 13:23 Rev.: 32829

Some AMR stuff, particularly consolidating the range-queriers for coarse/fine
level interactions. This was done in AMRICE, impAMRICE, MPMICE, MPM, and
HypreDriverSStruct

AdiabaticTable: Do errorEstimate on ICE matls
AMRICE: also add if(doICEonLevel) to some AMR functions
MPMICE: also add MPMICE::refine
Grid: Change the invalidGrid warning from checking to see
if there is an even number of cells to checking if
the interior corners of patches line up with coarse cells.
AMRInterpolate: add the range queriers.

105 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.cc (+87), AMRInterpolate.h (+17 -1), sub.mk (+1)
harman 2005-12-01 15:25 Rev.: 32691

added #include FastMatrix.h
cleanup

5 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+5 -5)
dgroulx 2005-09-07 12:45 Rev.: 31912

Changes to make Uintah build on purple. Added function declarations for functions that were previous delcared only as friends. Added a configure variable IS_AIX instead of checking against the compiler for aix specific configure options.


29 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid/Variables: ComputeSet.cc (+24 -21), ComputeSet.h (+5)
livne 2005-08-24 16:17 Rev.: 31695

Along with Dav: Added #ifdef HAVE_HYPRE_1_9 in configure.ac so that if we are using Hypre 1.9.0, the AMR solver code compiles, otherwise does not

133 lines of code changed in 3 files:

  • Packages/Uintah/Core/Grid/Variables: ConnectionList.cc (new 51), ConnectionList.h (new 81), sub.mk (+1)
livne 2005-08-22 13:22 Rev.: 31637

Moved the operator<< to be friend functions as this allows the (g++) compiler to find the functions and not get confused and give a unknown function error message when compiling. Strangely, all (most?) << functions must be friends as most any arbitrary new << function that is not a friend function causes others to be 'lost'. Also had to put the << functions into the Uintah namespace in the .cc files.

100 lines of code changed in 12 files:

  • Packages/Uintah/Core/Grid/Variables: CellIterator.h (new), ComputeSet.cc (+51 -48), ComputeSet.h (+18 -14), ParticleSubset.cc (+2), ParticleSubset.h (+3 -2), VarLabel.cc (new), VarLabel.h (+3 -2)
harman 2005-08-11 13:45 Rev.: 31497

fixed index access operator...I think?

0 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid/Variables: Stencil7.h (changed)
sparker 2005-08-11 10:46 Rev.: 31492

Added operator[] to access elements by an index

14 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: Stencil7.h (+14 -2)
harman 2005-08-09 15:05 Rev.: 31447

changed q_CL to q_CL_const

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+1 -1)
worthen 2005-08-09 13:29 Rev.: 31441

AMR changes, including:
SimulationController - Regridder will tell you level and patch stats
AMRICE - tweaks to get the correct cells from the coarse level, particularly for quadratic interpolation
TaskGraph - interpret correctly number of ghost cells from the coarse level
Patch - add ghost cells to the getOtherLevelPatches
Task - call getOtherLevelPatches with ghost cells (and remove annoying layer of indirection)
AMRInterpolate - correctly compare against the domain boundary

6 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+6 -2)
harman 2005-08-08 17:32 Rev.: 31436

added piecewise constant interpolator.

24 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+24 -1)
harman 2005-07-29 10:13 Rev.: 31316

changes so the quadratic interpolator works when fine level patches are against
the edge of the computational domain and for 1D and 2D problems.

AMRInterpolate.h
----------------
quadraticInterpolation()
- if a fine level patch is against the edge of the computational domain
shift the base/origin coarse cell inward one cell. This may be slow.


AMRICE.cc
---------------
changed all isEqual() calls.
refine
-added interpolator test (commented out)
-Only operate on the interior patch cells. Extra cells are now
handled with refine_CF_interface.

refine_CF_interfaceOperator()
- For higher order interpolation get a larger coarse level region.
- Can no longer "get" a coarse level region that's bigger than the
underlying coarse level.


ICE.h
---------------
isEqual() now operates over an input iterator instead of
the entire patch


44 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+44 -25)
harman 2005-07-28 13:29 Rev.: 31302

-added testInterpolator()
- It loops through 6 different interpolator tests.

-added interpolatorTest_helper()
- initializes the coarseLevel data
- computes the error between the interpolated value and the exact.

quadraticInterpolation()
- degugging spew, currently turned off.

157 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+157 -52)
harman 2005-07-22 15:24 Rev.: 31254

The user can now select the order of the interpolation
in the refine and refine coarse fine interface tasks.
Use:

<AMR>
<orderOfInterpolation> (1 or 2) </orderOfInterpolation>
</AMR>

31 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+31 -19)
worthen 2005-07-13 17:13 Rev.: 31126

Schedulers: Tracking vars

Remainder: AMR working up to 3d, parallel

0 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (-3)
dgroulx 2005-07-12 12:26 Rev.: 31087

Added two arguments to the end of all exception constructors, __FILE__ and __LINE__ for use in printing out meaningful exception info when exceptions are broken.

81 lines of code changed in 33 files:

  • Packages/Uintah/Core/Grid/Variables: CCVariable.h (new), ComputeSet.h (+5 -5), NCVariable.h (new), ParticleSubset.cc (+2 -2), ParticleVariable.h (+12 -12), ParticleVariable_special.cc (new), PerPatch.h (new), PerPatchBase.cc (+5 -5), ReductionVariable.h (+3 -3), ReductionVariableBase.cc (+1 -1), SFCXVariable.h (new), SFCYVariable.h (+7 -7), SFCZVariable.h (new), SoleVariable.h (+2 -2), SoleVariableBase.cc (new), Stencil.h (+1 -1), VarLabel.cc (+4 -4), Variable.cc (new)
worthen 2005-06-23 12:52 Rev.: 30854

IntVector: rewrite < and (didn't sort for STL functions) remove >, <=, >=

Everything else: Make Particle Subsets work with a specified range instead of with ghost cells

43 lines of code changed in 7 files:

  • Packages/Uintah/Core/Grid/Variables: PSPatchMatlGhost.cc (new), PSPatchMatlGhost.h (new), ParticleSubset.cc (+17 -8), ParticleSubset.h (+11 -10), ParticleVariable_special.cc (+2 -6)
sparker 2005-06-23 10:04 Rev.: 30853

Implemented rest of multilevel MPM, still doesn't work
Move interpolation operators from AMRICE to Core/Grid/Variables/AMRInterpolate.h so that they can be used in other places

305 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: AMRInterpolate.h (+305)
jas 2005-06-22 11:29 Rev.: 30812

Add specializations for different data types for SoleVariable.
Use swapbytes defined in Endian.cc for ReductionVariable.

57 lines of code changed in 3 files:

  • Packages/Uintah/Core/Grid/Variables: ReductionVariable.h (-12), SoleVariable_special.cc (+57)
jas 2005-06-21 10:41 Rev.: 30796

Comment out warning for particle expansions exceeding 18.

2 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid/Variables: ParticleSubset.cc (+2)

(10 more)

Generated by StatSVN 0.4.0