Directory Core/GeometryPiece/

Total Files:
53
Deleted Files:
0
Lines of Code:
9254

[root]/Core/GeometryPiece

Lines of Code

Core/GeometryPiece/ Lines of Code

Developers

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

Most Recent Commits

allen 2017-11-06 13:16 Rev.: 57232

commented out unused var to remove warnings

0 lines of code changed in 2 files:

  • Core/GeometryPiece: NaaBoxGeometryPiece.cc (changed)
jthornoc 2017-10-26 17:19 Rev.: 57183

* 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:

  • Core/GeometryPiece: TriGeometryPiece.cc (+29 -29), TriGeometryPiece.h (+33 -21), UniformGrid.cc (+97 -22), UniformGrid.h (+20 -16)
guilkey 2017-05-15 16:06 Rev.: 56524

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:

  • Core/GeometryPiece: GeometryObject.h (new), TriGeometryPiece.cc (+18 -5)
guilkey 2017-05-15 09:45 Rev.: 56517

Spew in the GeometryObject destructor.
Clear the vectors in the TriGeometryPiece destructor.

10 lines of code changed in 2 files:

  • Core/GeometryPiece: GeometryObject.h (+5 -3), TriGeometryPiece.cc (+5)
jas 2017-04-20 13:18 Rev.: 56452

Update copyright.

53 lines of code changed in 100 files:

  • Core/GeometryPiece: BoxGeometryPiece.cc (+1 -1), BoxGeometryPiece.h (new), ConeGeometryPiece.cc (+1 -1), ConeGeometryPiece.h (new), CylinderGeometryPiece.cc (new), CylinderGeometryPiece.h (+1 -1), CylinderShellPiece.cc (+1 -1), CylinderShellPiece.h (+1 -1), DifferenceGeometryPiece.cc (new), DifferenceGeometryPiece.h (new), EllipsoidGeometryPiece.cc (new), EllipsoidGeometryPiece.h (+1 -1), FileGeometryPiece.cc (+1 -1), FileGeometryPiece.h (+1 -1), GUVSphereShellPiece.cc (new), GUVSphereShellPiece.h (new), GeometryObject.cc (+1 -1), GeometryObject.h (+1 -1), GeometryPiece.cc (+1 -1), GeometryPiece.h (new), GeometryPieceFactory.cc (new), GeometryPieceFactory.h (new), IntersectionGeometryPiece.cc (+1 -1), IntersectionGeometryPiece.h (+1 -1), NaaBoxGeometryPiece.cc (+1 -1), NaaBoxGeometryPiece.h (new), NullGeometryPiece.cc (new), NullGeometryPiece.h (+1 -1), PlaneShellPiece.cc (+1 -1), PlaneShellPiece.h (new), ShellGeometryFactory.cc (new), ShellGeometryFactory.h (new), ShellGeometryPiece.cc (+1 -1), ShellGeometryPiece.h (+1 -1), SmoothCylGeomPiece.cc (+1 -1), SmoothCylGeomPiece.h (+1 -1), SmoothGeomPiece.cc (new), SmoothGeomPiece.h (new), SphereGeometryPiece.cc (+1 -1), SphereGeometryPiece.h (new), SphereMembraneGeometryPiece.cc (new), SphereMembraneGeometryPiece.h (new), SphereShellPiece.cc (new), SphereShellPiece.h (+1 -1), TorusGeometryPiece.cc (new), TorusGeometryPiece.h (new), TriGeometryPiece.cc (+1 -1), TriGeometryPiece.h (+1 -1), UniformGrid.cc (+1 -1), UniformGrid.h (+1 -1), UnionGeometryPiece.cc (new), UnionGeometryPiece.h (new), sub.mk (new)
cgritton 2017-03-23 10:27 Rev.: 56350

Coupled finite volume solver for Gauss's equation with exisiting mpm code.

48 lines of code changed in 3 files:

  • Core/GeometryPiece: GeometryPieceFactory.cc (+3), SmoothGeomPiece.cc (+27), SmoothGeomPiece.h (+18 -1)
dav 2017-02-26 18:03 Rev.: 56253


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:

  • Core/GeometryPiece: GeometryPieceFactory.cc (+3 -4)
dav 2017-02-24 14:54 Rev.: 56250

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:

  • Core/GeometryPiece: GeometryPieceFactory.cc (+24 -25)
guilkey 2017-02-15 16:44 Rev.: 56233

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:

  • Core/GeometryPiece: GeometryPieceFactory.cc (+4 -4), TriGeometryPiece.cc (+6 -4), TriGeometryPiece.h (+2 -2)
Generated by StatSVN 0.7.0