Directory CCA/Components/ICE/

Total Files:
29
Deleted Files:
0
Lines of Code:
18884

[root]/CCA/Components/ICE
                directory in repo Advection (12 files, 2853 lines)
                directory in repo CustomBCs (13 files, 5076 lines)
                directory in repo EOS (23 files, 3206 lines)
                directory in repo Matlab (3 files, 42 lines)
                    directory in repo ShockTube1D (16 files, 1548 lines)
                directory in repo PressureSolve (0 files, 0 lines)
                    directory in repo HypreStandAlone (33 files, 5973 lines)

Lines of Code

CCA/Components/ICE/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 203 (100.0%) 1873 (100.0%) 9.2
harman 96 (47.3%) 1780 (95.0%) 18.5
jas 97 (47.8%) 83 (4.4%) 0.8
jpeterson 4 (2.0%) 7 (0.4%) 1.7
guilkey 3 (1.5%) 2 (0.1%) 0.6
luitjens 1 (0.5%) 1 (0.1%) 1.0
dav 2 (1.0%) 0 (0.0%) 0.0

Most Recent Commits

harman 2010-12-27 18:29 Rev.: 46641

changed getInitialData_double(velocity) -> getInitialData_Vector(velocity)

0 lines of code changed in 2 files:

  • CCA/Components/ICE: ICEMaterial.cc (changed)
harman 2010-12-27 17:22 Rev.: 46640

code generalization:

A GeometryObject can now have an arbitrary number of double,Vector,
IntVectors,Points variables associated with that object. The assumption that
each object will have a "res" and "velocity" has been removed. Justin & Todd

27 lines of code changed in 1 file:

  • CCA/Components/ICE: ICEMaterial.cc (+27 -25)
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.

3 lines of code changed in 2 files:

  • CCA/Components/ICE: AMRICE.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

4 lines of code changed in 1 file:

  • CCA/Components/ICE: AMRICE.h (+4 -1)
harman 2010-10-11 13:40 Rev.: 46347

getCoarseFineFaceRange()
Made the function more general. The faceIteratorType is now passed in
to support node & SFC(x,y,z) based variables.

5 lines of code changed in 5 files:

  • CCA/Components/ICE: AMRICE.cc (new), AMRICE.h (+2 -1), BoundaryCond.cc (+2 -2)
dav 2010-09-07 13:54 Rev.: 46159

Removed duplicate #includes.

0 lines of code changed in 2 files:

  • CCA/Components/ICE: ICE.cc (changed)
harman 2010-08-30 17:40 Rev.: 46138

Turned on bulletproofing.
The number of cells a BC touches must = the number of cells on that boundary face.

159 lines of code changed in 3 files:

  • CCA/Components/ICE: BoundaryCond.cc (+126 -93), BoundaryCond.h (+33 -25)
guilkey 2010-08-18 17:31 Rev.: 46090

Fix a warning.

0 lines of code changed in 2 files:

  • CCA/Components/ICE: ICEDebug.cc (changed)
luitjens 2010-08-18 11:04 Rev.: 46070

Removed unused variable

1 lines of code changed in 1 file:

  • CCA/Components/ICE: AMRICE.cc (+1 -2)
harman 2010-08-16 16:09 Rev.: 46055

updated comment

0 lines of code changed in 2 files:

  • CCA/Components/ICE: impICE.cc (new)
harman 2010-08-11 17:57 Rev.: 46017

implicitPressureSolver()
- using proc0cout instead of cout with a bunch of conditionals
- fixed a bug that if one of the subschedule task requested a timestep
then restart the timestep. Previous it didn't restart the timestep
until the max iterations was reached.

11 lines of code changed in 1 file:

  • CCA/Components/ICE: impICE.cc (+11 -16)
harman 2010-08-10 17:59 Rev.: 46011

customInitialize.cc.h
added
bool doesComputePressure
to each of the different initialization routings.

ICE.cc
problemSetup()
- if the user selects a custom initialization that does compute the pressure
field don't wipe it out with an EOS evaluation.

20 lines of code changed in 5 files:

  • CCA/Components/ICE: ICE.cc (+11 -8), customInitialize.cc (+8 -3), customInitialize.h (new)
harman 2010-08-09 17:11 Rev.: 46002

Added new custom initialization code for a counterflow in the x-y plane.

Usage:
</ICE>
<customInitialization>
<counterflow>
<strainRate> 2000 </strainRate>
<referenceCell> [0,0,0] </referenceCell>
</counterflow>
</customInitialization>
</ICE>

This is useful since it generates larges transverse gradients at the
boundaries.

66 lines of code changed in 3 files:

  • CCA/Components/ICE: ICE.cc (+1 -1), customInitialize.cc (+52 -1), customInitialize.h (+13 -4)
harman 2010-08-06 10:22 Rev.: 45979

switched from naming convention from expoential to gaussian initial temperature distribution,

39 lines of code changed in 2 files:

  • CCA/Components/ICE: customInitialize.cc (+32 -31), customInitialize.h (+7 -7)
harman 2010-08-04 15:28 Rev.: 45969

customInitialization:exponentialTemperature profile
added ability to initialize the domain with a smooth
temperature peak in the domain. Currently, only works for 1matl ICE problems.
Usage:

<ICE>
<customInitialization>
<exponentialTemperature>
<direction> [1,0,0] </direction>
<coefficient> 10 </coefficient>
<minPoint> [0.25, 0, 0] </minPoint>
<maxPoint> [1.0, 0, 0] </maxPoint>
</exponentialTemperature>
</customInitialization>
</ICE>

Added Lodi_pulse.ups
1 matl ICE problem with a smooth temperature peak in the domain and LODI BCs.
This is used to identify symmetry errors from the reflecting waves resulting
from the boundary conditions.

49 lines of code changed in 2 files:

  • CCA/Components/ICE: customInitialize.cc (+35 -11), customInitialize.h (+14 -4)
harman 2010-08-02 17:33 Rev.: 45961

BCDataArray.cc()
-revert back to r45926. In r45927 there was a bug.
45926: in multi-patch problems with jets a boundary face there were multiple children
even when there was not jet on the patch's face.

45927: in multi-patch problems with jets the boundary face there was only 1 child, even
if there was a jet on the patch's face.


BoundaryCondtion.cc/.h
-global
comment out all exception throws and output only the exception message. This
will generate a tremendous amount of output for any problems with multiple
geom objects on the boundary faces.

-getIteratorBCValuesBCKind()
deleted exception to catch if the iterator is size 0

This commit is to get the RT running.

24 lines of code changed in 2 files:

  • CCA/Components/ICE: BoundaryCond.cc (+14 -14), BoundaryCond.h (+10 -13)
harman 2010-07-30 10:09 Rev.: 45950

added patch ID to debugstreams

7 lines of code changed in 1 file:

  • CCA/Components/ICE: BoundaryCond.cc (+7 -5)
harman 2010-07-29 16:57 Rev.: 45945

Updated environmental flags

ICE.h:
- Added 2 structs that store debugging info about the iteration process
in computeEquilibration Pressure.

ICE.cc MPMICE.cc
ComputeEquilibrationPressure()
- if the environmental variable:
SCI_DEBUG DBG_EqPress:+
is set, output iteration information when an exception is thrown.

76 lines of code changed in 3 files:

  • CCA/Components/ICE: ICE.cc (+57 -9), ICE.h (new)
harman 2010-07-21 10:59 Rev.: 45916

added missing bound_prt.reset() in BC_DBG statement.

1 lines of code changed in 1 file:

  • CCA/Components/ICE: BoundaryCond.cc (+1)
harman 2010-07-21 10:38 Rev.: 45914

global:
output information about the iterator in debugstreams BC_dbg

BoundaryCond.h
getIteratorBCValueBCKind()
- throw an exception if no iterator is found.

35 lines of code changed in 2 files:

  • CCA/Components/ICE: BoundaryCond.cc (+23 -23), BoundaryCond.h (+12 -3)

(41 more)

Generated by StatSVN 0.4.0