[root]/CCA/Components/ICE/CustomBCs
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 73 (100.0%) | 2401 (100.0%) | 32.8 |
allen | 42 (57.5%) | 1832 (76.3%) | 43.6 |
harman | 6 (8.2%) | 507 (21.1%) | 84.5 |
jas | 20 (27.4%) | 49 (2.0%) | 2.4 |
dav | 5 (6.8%) | 13 (0.5%) | 2.6 |
Fixed typo in Makefile and added dependent libs
7 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
1815 lines of code changed in 31 files:
removed the delta T label from the shared state and began removing the shared state where possible
2 lines of code changed in 2 files:
For microSlip boundary conditions the user has to specify either
<SlipModel type = "FirstOrder"/>
<SlipModel type = "SecondOrder_Deissler"/>
or
<SlipModel type = "SecondOrder_Karniadakis-Beskok"/>
33 lines of code changed in 2 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.
34 lines of code changed in 5 files:
Code formatting and simplication.
- compiles but doesn't run.
198 lines of code changed in 2 files:
Dust off Jennifer VanRij's slip boundary conditions from 2011.
- code compiles but doesn't run.
276 lines of code changed in 2 files:
Update copyright.
15 lines of code changed in 15 files:
moved include from header to cc file
1 lines of code changed in 2 files:
change to SimTime
1 lines of code changed in 1 file:
Removed Time.h and replaced with Timers.hpp
6 lines of code changed in 4 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.
13 lines of code changed in 5 files: