Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 123 (100.0%) | 348 (100.0%) | 2.8 |
jthornoc | 8 (6.5%) | 179 (51.4%) | 22.3 |
jas | 100 (81.3%) | 53 (15.2%) | 0.5 |
cgritton | 3 (2.4%) | 48 (13.8%) | 16.0 |
guilkey | 8 (6.5%) | 41 (11.8%) | 5.1 |
dav | 2 (1.6%) | 27 (7.8%) | 13.5 |
allen | 2 (1.6%) | 0 (0.0%) | 0.0 |
commented out unused var to remove warnings
0 lines of code changed in 2 files:
* Added a “modifies” for the boundary condition functors. This will allow one to modify other variables besides the variable on which the bc is being applied.
* Added a subgrid injector bc functor. This needs a little work.
* Added a function in UniformGrid to allow one to check for intersections between two distinct points. Previous functionality only allowed the check between a point and infinity.
* Added a thin-wall check when tri geometry is used as an intrusion in Arches.
179 lines of code changed in 8 files:
Remove spew from GeometryObject.h.
Stop created d_planes in the TriGeometryPiece by default. This code can be
re-enabled using an ifdef, but it doesn't seem to be getting used and adds
significantly to the memory overhead.
19 lines of code changed in 3 files:
Spew in the GeometryObject destructor.
Clear the vectors in the TriGeometryPiece destructor.
10 lines of code changed in 2 files:
Update copyright.
53 lines of code changed in 100 files:
Coupled finite volume solver for Gauss's equation with exisiting mpm code.
48 lines of code changed in 3 files:
Continuation of commit r56249 - getting into the Core and the UCF now.
Mostly cosmetic changes - removing the actual hack (see Handle.h below) to
allow for better type safety using c++11 nullptr.
These changes have passed the local RT on Baja.
- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').
- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/Arches/BoundaryConditions/BoundaryFunctorHelper.cc
M CCA/Components/LoadBalancers/DynamicLoadBalancer.cc
M CCA/Components/LoadBalancers/LoadBalancerCommon.cc
M CCA/Components/LoadBalancers/ParticleLoadBalancer.cc
M CCA/Components/Schedulers/DynamicMPIScheduler.cc
M CCA/Components/Schedulers/MPIScheduler.cc
M CCA/Components/Schedulers/UnifiedScheduler.cc
M CCA/Ports/PIDXOutputContext.cc
M Core/GeometryPiece/GeometryPieceFactory.cc
M Core/Grid/BoundaryConditions/BCDataArray.cc
M Core/Grid/BoundaryConditions/BCDataArray.h
- Pass const strings as references instead of copying.
M Core/Grid/BoundaryConditions/BCUtils.cc
M Core/Grid/BoundaryConditions/BoundCondReader.cc
M Core/Grid/Level.h
M Core/Grid/Level.cc
- Pass const params as const.
- Removed m_patches variables as it isn't used anywhere.
- Very few real changes in this file, use diff -w.
M Core/Grid/Patch.h
M Core/Grid/Patch.cc
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
- Line up vars/ for easier reading.
M Core/Grid/Task.cc
M Core/Grid/Variables/ComputeSet.h
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
M Core/Grid/Variables/ParticleVariable.h
M Core/Grid/Variables/ParticleVariable_special.cc
M Core/Grid/Variables/Variable.cc
- Fix end comment on readPIDX()
M Core/Util/Handle.h
- Here is the hack that is being removed... The "==" operator was overloaded in order
to allow for comparison of pointers to 0. When this is removed, then (previous to these
commits) you would be spammed by warnings about ambiguous "==" operator. By removing this
operator and forcing the comparison to nullptr (as of c++11), type safety is increased.
3 lines of code changed in 1 file:
Continuation of commit r56249 - this time for ICE component.
Mostly cosmetic changes, and preparing for removing a hacked out warning when we moved to C++ 11.
These changes have passed the local RT on Baja.
- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').
- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/ICE/AMRICE.cc
M CCA/Components/ICE/BoundaryCond.cc
M CCA/Components/ICE/CustomBCs/LODI2.cc
M CCA/Components/ICE/CustomBCs/MMS_BCs.cc
M CCA/Components/ICE/CustomBCs/inletVelocity.cc
M CCA/Components/ICE/CustomBCs/microSlipBCs.cc
M CCA/Components/ICE/CustomBCs/sine.cc
M CCA/Components/ICE/ICE.cc
M CCA/Components/ICE/ICEMaterial.cc
M CCA/Components/ICE/TurbulenceModel/Turbulence.cc
M CCA/Components/ICE/customInitialize.cc
- See above.
M Core/GeometryPiece/GeometryPieceFactory.cc
- Alphabetize #includes, align vars, white space, formatting.
24 lines of code changed in 1 file:
In GeometryPieceFactory, comment out some unused datatypes to eliminate compiler
warnings. In the TriGeometryPiece, comment out the construction of the
vector of boxes. These don't seem to be used and are a memory pig for large
triangulated surfaces.
12 lines of code changed in 3 files: