Directory Packages/Uintah/Core/Grid/

Total Files:
25
Deleted Files:
121
Lines of Code:
7954

[root]/Packages/Uintah/Core/Grid
                    directory in repo BoundaryConditions (44 files, 3989 lines)
                    Folder removed from repo GeomPiece (0 files, 0 lines)
                    directory in repo Variables (82 files, 3006 lines)

Lines of Code

Packages/Uintah/Core/Grid/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 316 (100.0%) 2817 (100.0%) 8.9
jas 21 (6.6%) 1004 (35.6%) 47.8
worthen 94 (29.7%) 698 (24.8%) 7.4
dgroulx 17 (5.4%) 410 (14.6%) 24.1
livne 12 (3.8%) 171 (6.1%) 14.2
dav 1 (0.3%) 151 (5.4%) 151.0
harman 17 (5.4%) 148 (5.3%) 8.7
bigler 3 (0.9%) 65 (2.3%) 21.6
guilkey 9 (2.8%) 64 (2.3%) 7.1
kuzimmer 7 (2.2%) 57 (2.0%) 8.1
jones 131 (41.5%) 29 (1.0%) 0.2
sparker 3 (0.9%) 19 (0.7%) 6.3
borodai 1 (0.3%) 1 (0.0%) 1.0

Most Recent Commits

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.

13 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Grid.cc (new)
worthen 2005-11-03 11:58 Rev.: 32421

AMR Updates - get imp AMR working better in parallel (still crashes in hypre code), multi-level ICE with MPM mostly works AMRICE.cc - coarsen/reflux to ice matls only, and my 'boundary' hack in an '#ifdef BRYAN' blockICE.cc - set the surrounding matl at problemSetup time, some more debugging info for when the delt is too small

1 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Patch.cc (new)
worthen 2005-11-01 15:53 Rev.: 32395

Various scheduler changes to prepare for AMR features and bugs (needed with the last commit)

0 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: Task.cc (changed), Task.h (changed)
kuzimmer 2005-09-23 12:32 Rev.: 32013

Changes to allow the removal of boundary cells in the visualization code

57 lines of code changed in 7 files:

  • Packages/Uintah/Core/Grid: Level.cc (new), Level.h (+8 -1), Patch.cc (+4), Patch.h (new)
dgroulx 2005-09-23 11:18 Rev.: 32009

Fixed the autoPatch feature so that it will distribute patches correctly for any given resolution.

152 lines of code changed in 3 files:

  • Packages/Uintah/Core/Grid: Grid.cc (+139 -99), Grid.h (+13 -2)
worthen 2005-09-23 09:15 Rev.: 32007

Core/Grid DataWarehouse, TaskGraph Fixes to the AMR corner case problem (2d works, 3d mostly works) SchedulerCommon Fixes to the VarTracker Everything else
slight debug changes

101 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Patch.cc (+95), Patch.h (+6)
worthen 2005-09-12 13:34 Rev.: 31942

Make 'operator==' a const function

2 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Grid.cc (+1 -1), Grid.h (+1 -1)
dav 2005-08-29 13:24 Rev.: 31754

M Core/Datatypes/CurveMesh.h

Fixed compiler warnings.

M Core/Datatypes/StructQuadSurfMesh.cc

Fixed SGI compile. ('Point pts[n]' is not valid unless 'n' is a constant.)

M Dataflow/Modules/Visualization/StreamLines.h

Needed "include <CompGeom.h> to find (recently moved?) 'RayPlaneIntersection'.

M Dataflow/Modules/Visualization/GenAxes.cc

Fixed compilation warnings. (eg: Returning a "const int" doesn't make sense.)

M Packages/Uintah/CCA/Components/ICE/CustomBCs/microSlipBCs.cc

Fixed compilation warnings. (Mostly unused variables.)

M Packages/Uintah/Core/Grid/Level.h

Indented. Added comment on what "eachPatch()" does.


151 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Level.h (+151 -149)
worthen 2005-08-23 22:25 Rev.: 31673

Preserve delt across restarts (particularly when you saw 'Lowering delt to maxmimum' (fixes switcher)

2 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: SimulationState.h (+2 -1)
harman 2005-08-23 17:54 Rev.: 31668

-added hasBoundaryFaces() which returns true if a patch has
a face that is on the edge of the computational domain.
Useful for setting fine patch levell boundary conditions

10 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Patch.cc (+5 -2), Patch.h (+5)
worthen 2005-08-23 13:48 Rev.: 31657

Can now run AND restart mlmpmice, amrice, AND stuff from the RT
DataArchiver - changes to Reduction variables
Level/Patch - add Level::getPatchByID and get rid of static Patch::getByID (and patchToProcessorMap) (don't kill me for changing Patch.h)
DataArchive - load time_refinement_ratio on restart
TaskGraph - initialize pointer

31 lines of code changed in 4 files:

  • Packages/Uintah/Core/Grid: Level.cc (+16), Level.h (+5), Patch.cc (+10 -48), Patch.h (-8)
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.

170 lines of code changed in 10 files:

  • Packages/Uintah/Core/Grid: Box.cc (+15 -9), Box.h (+3 -2), Grid.cc (+16 -13), Grid.h (+2 -2), Patch.cc (+12 -9), Patch.h (+3 -3), Task.cc (+113 -110), Task.h (+6 -6)
livne 2005-08-22 13:19 Rev.: 31636

Cleaned up compiler warnings

1 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: SimulationState.cc (new)
jas 2005-08-19 15:15 Rev.: 31619

Read the individual component's <Time> section.

25 lines of code changed in 6 files:

  • Packages/Uintah/Core/Grid: SimulationState.cc (+2), SimulationState.h (+3), SimulationTime.cc (+18), SimulationTime.h (new)
worthen 2005-08-19 04:21 Rev.: 31583

Better, but not quite good enough for the wacky ICE-AMR configuration

SimulationController - restructure subcycle's calls to refineInterface (don't do until all pending coarsens are done)
ICE - add proc number to doing output, clean up reflux a little but
Schedulers - fix trackedVars and with weird overlapping-patches configurations, restrict the data dependency
Patch - add 'getInteriorLow/HighIndex'

29 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Patch.cc (+27), Patch.h (+2)
borodai 2005-08-18 15:58 Rev.: 31568

It is a good idea to keep old patch spec functionality working

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+1)
worthen 2005-08-17 12:17 Rev.: 31554

Get PerPatch to return CellBased type

1 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Patch.cc (+1)
dgroulx 2005-08-15 15:43 Rev.: 31528

Info messages now only print out on processor of rank 0.
Added a few double casts to be sure all aritmatic is correct.

45 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+45 -21)
dgroulx 2005-08-15 14:11 Rev.: 31524

Fixed ambiguous call to pow().


3 lines of code changed in 1 file:

  • Packages/Uintah/Core/Grid: Grid.cc (+3 -3)
dgroulx 2005-08-15 13:30 Rev.: 31523

Added an option to the ups file that will force sus to automatically compute
an optimal patch distribution for the number of processors in use instead
of having to manually change them every run. To enable this option, add the
line

<autoPatch>true</autoPatch> someplace in your box tag. The
<patches>...</patches> tag will be ignored.

If autoPatch is not specified, then everything will function as before.

128 lines of code changed in 2 files:

  • Packages/Uintah/Core/Grid: Grid.cc (+109 -2), Grid.h (+19)

(65 more)

Generated by StatSVN 0.4.0