[root]/CCA/Components/ICE
Advection
(12 files, 2853 lines)
CustomBCs
(13 files, 5076 lines)
EOS
(23 files, 3206 lines)
Matlab
(3 files, 42 lines)
ShockTube1D
(16 files, 1548 lines)
PressureSolve
(0 files, 0 lines)
HypreStandAlone
(33 files, 5973 lines)
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 |
changed getInitialData_double(velocity) -> getInitialData_Vector(velocity)
0 lines of code changed in 2 files:
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:
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:
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:
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:
Removed duplicate #includes.
0 lines of code changed in 2 files:
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:
Fix a warning.
0 lines of code changed in 2 files:
Removed unused variable
1 lines of code changed in 1 file:
updated comment
0 lines of code changed in 2 files:
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:
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:
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:
switched from naming convention from expoential to gaussian initial temperature distribution,
39 lines of code changed in 2 files:
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:
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:
added patch ID to debugstreams
7 lines of code changed in 1 file:
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:
added missing bound_prt.reset() in BC_DBG statement.
1 lines of code changed in 1 file:
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:
(41 more)