[root]/CCA/Components/ICE/TurbulenceModel
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 28 (100.0%) | 51 (100.0%) | 1.8 |
allen | 9 (32.1%) | 31 (60.8%) | 3.4 |
jas | 18 (64.3%) | 18 (35.3%) | 1.0 |
dav | 1 (3.6%) | 2 (3.9%) | 2.0 |
Fixed typo in Makefile and added dependent libs
9 lines of code changed in 2 files:
Broke the large libs into smaller libraries allowing of the removal the ModelFactory Component and moved all application code from core
22 lines of code changed in 7 files:
Replace all instances of StaticArray with std::vector. This has been tested on the RT for all components. It is a drop in replacement. StaticArray is being removed.
9 lines of code changed in 6 files:
Update copyright.
9 lines of code changed in 12 files:
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.
2 lines of code changed in 1 file: