Directory Packages/Uintah/CCA/Components/ICE/Advection/

Total Files:
6
Deleted Files:
0
Lines of Code:
1973

[root]/Packages/Uintah/CCA/Components/ICE/Advection

Lines of Code

Packages/Uintah/CCA/Components/ICE/Advection/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 31 (100.0%) 103 (100.0%) 3.3
harman 23 (74.2%) 95 (92.2%) 4.1
luitjens 6 (19.4%) 7 (6.8%) 1.1
jas 2 (6.5%) 1 (1.0%) 0.5

Most Recent Commits

harman 2008-11-04 15:02 Rev.: 42401

changed:
patch::faceAxes() -> patch::getFaceAxes()

to be consistent with getFaceDirection()

1 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: SecondOrderBase.h (+1 -1)
luitjens 2008-07-14 18:39 Rev.: 41515

Added MallocTrace support to Uintah, cleaned up mpi includes, removed SCI_MALLOC_TRACE functionality.

Currently building with MallocTrace is only supported within Uintah.

0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FluxDatatypes.h (new)
jas 2008-07-07 20:07 Rev.: 41434

Use the proper c++ standard for include files for the C inlude files, i.e.
<stdio.h> --> <cstdio>
<math.h> --> <cmath>

Tested on g++ 4.2 and 4.3 compilers.

1 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: AdvectionFactory.cc (+1 -1)
harman 2008-05-12 10:35 Rev.: 40992

slight rearrangement. Only get faceIterator if patch face is on a boundary

0 lines of code changed in 4 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (changed), SecondOrderAdvector.cc (new)
harman 2008-05-09 16:31 Rev.: 40988

New Patch Conversion:

getCellLow/HighIndex -> getExtraCellLow/HighIndex

getEdgeCellIterator() -> getEdgeCellIterator__New

getCellIterator() -> getCellIterator__New

2 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/ICE/Advection: SecondOrderBase.h (+2 -2)
harman 2008-05-09 10:09 Rev.: 40977

New Patch Conversion:

getFaceCellIterator() -> getFaceIterator__New()

20 lines of code changed in 3 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+8 -5), SecondOrderAdvector.cc (+8 -6), SecondOrderBase.h (+4 -3)
harman 2008-05-08 14:26 Rev.: 40970

new patch conversion:
replaced:
patch->addGhostCell_Iter(iter, numGhostCells)
with
get(Extra)CellIterator(numGhostCells)


49 lines of code changed in 5 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+9 -9), SecondOrderAdvector.cc (+23 -26), SecondOrderBase.cc (new), SecondOrderBase.h (+15 -20)
harman 2008-05-07 12:59 Rev.: 40955

Conversion to new patch
getSFC(X,Y,Z)Iterator -> getSFC(X,Y,Z)Iterator__New

6 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+3 -6), SecondOrderAdvector.cc (+3 -6)
harman 2008-05-07 11:21 Rev.: 40952

Converion to new patch:

getCellIterator -> getCellIterator__New

5 lines of code changed in 3 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+2 -2), SecondOrderAdvector.cc (+2 -2), SecondOrderBase.cc (+1 -1)
harman 2008-05-07 10:49 Rev.: 40951

New Patch:
getExtraCellIterator -> getExtraCellIterator__New

3 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+1 -1), SecondOrderAdvector.cc (+2 -2)
luitjens 2008-04-30 18:56 Rev.: 40876



added comments and moved cullIntersection, nodePostion, and cellPosition
to the completed section.

updated getBox and getInteriorBox to the new interface, renamed them to
getExtraBox and getBox.

renamed neighborsLow to noNeighborsLow and neighborsHigh to
noNeighborsHigh. This follows the logic that 1 is true and 0 is false.

2 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+1 -1), SecondOrderAdvector.cc (+1 -1)
luitjens 2008-04-21 12:00 Rev.: 40777

Changed:

hasCoarseFineInterfaceFaces->hasCoarseFaces
getCoarseFineInterfaceFaces->getCoarseFaces

5 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+3 -3), SecondOrderBase.h (+2 -4)
harman 2008-03-27 15:59 Rev.: 40589

replaced

for(CellIterator iter = patch->getCellIterator(gc); !iter.done(); iter++){

with
+ //__________________________________
+ // At patch boundaries you need to extend
+ // the computational footprint by one cell in ghostCells
+ CellIterator iter = patch->getExtraCellIterator();
+ CellIterator iterPlusGhost = patch->addGhostCell_Iter(iter,1);
+
+ for(CellIterator iter = iterPlusGhost; !iter.done(); iter++) {


This probably should have been done years ago.

9 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/ICE/Advection: FirstOrderAdvector.cc (+9 -5)
Generated by StatSVN 0.4.0