Directory CCA/Components/ICE/CustomBCs/

Total Files:
17
Deleted Files:
0
Lines of Code:
7598

[root]/CCA/Components/ICE/CustomBCs

Lines of Code

CCA/Components/ICE/CustomBCs/ Lines of Code

Developers

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

Most Recent Commits

allen 2017-12-20 16:48 Rev.: 57494

Fixed typo in Makefile and added dependent libs

7 lines of code changed in 2 files:

  • CCA/Components/ICE/CustomBCs: sub.mk (+7 -7)
allen 2017-12-20 11:02 Rev.: 57484

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:

  • CCA/Components/ICE/CustomBCs: BoundaryCond.cc (new 1387), BoundaryCond.h (new 380), C_BC_driver.cc (+1), C_BC_driver.h (+7 -5), LODI.cc (+3 -3), LODI.h (new), LODI2.cc (new), LODI2.h (new), MMS_BCs.cc (new), MMS_BCs.h (new), inletVelocity.cc (new), inletVelocity.h (+1 -1), microSlipBCs.cc (new), microSlipBCs.h (+1 -1), sine.cc (+1 -1), sine.h (+1 -1), sub.mk (+24 -17)
allen 2017-11-24 15:37 Rev.: 57339

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:

  • CCA/Components/ICE/CustomBCs: C_BC_driver.cc (+1 -1), LODI2.cc (+1 -1)
harman 2017-10-20 10:54 Rev.: 57159

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:

  • CCA/Components/ICE/CustomBCs: microSlipBCs.cc (+29 -13), microSlipBCs.h (+4 -3)
jas 2017-10-13 14:42 Rev.: 57138

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:

  • CCA/Components/ICE/CustomBCs: LODI.cc (+17 -17), LODI.h (+7 -8), LODI2.cc (+7 -7), LODI2.h (+3 -4), microSlipBCs.h (-1)
harman 2017-09-11 16:34 Rev.: 56984

Code formatting and simplication.
- compiles but doesn't run.

198 lines of code changed in 2 files:

  • CCA/Components/ICE/CustomBCs: microSlipBCs.cc (+163 -117), microSlipBCs.h (+35 -35)
harman 2017-09-11 14:47 Rev.: 56982

Dust off Jennifer VanRij's slip boundary conditions from 2011.

- code compiles but doesn't run.



276 lines of code changed in 2 files:

  • CCA/Components/ICE/CustomBCs: microSlipBCs.cc (+253 -142), microSlipBCs.h (+23 -14)
jas 2017-04-20 13:23 Rev.: 56456

Update copyright.

15 lines of code changed in 15 files:

  • CCA/Components/ICE/CustomBCs: C_BC_driver.cc (+1 -1), C_BC_driver.h (+1 -1), LODI.cc (+1 -1), LODI.h (+1 -1), LODI2.cc (+1 -1), LODI2.h (+1 -1), MMS_BCs.cc (+1 -1), MMS_BCs.h (+1 -1), inletVelocity.cc (+1 -1), inletVelocity.h (+1 -1), microSlipBCs.cc (+1 -1), microSlipBCs.h (+1 -1), sine.cc (+1 -1), sine.h (+1 -1), sub.mk (+1 -1)
allen 2017-04-18 21:28 Rev.: 56447

moved include from header to cc file

1 lines of code changed in 2 files:

  • CCA/Components/ICE/CustomBCs: inletVelocity.cc (+1), inletVelocity.h (-1)
allen 2017-04-13 16:53 Rev.: 56426

change to SimTime

1 lines of code changed in 1 file:

  • CCA/Components/ICE/CustomBCs: LODI.cc (+1 -1)
allen 2017-04-13 16:24 Rev.: 56421

Removed Time.h and replaced with Timers.hpp

6 lines of code changed in 4 files:

  • CCA/Components/ICE/CustomBCs: MMS_BCs.cc (+2 -2), MMS_BCs.h (+1 -1), sine.cc (+2 -2), sine.h (+1 -1)
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.


13 lines of code changed in 5 files:

  • CCA/Components/ICE/CustomBCs: LODI2.cc (+4 -7), MMS_BCs.cc (+3 -5), inletVelocity.cc (+2 -4), microSlipBCs.cc (+2 -5), sine.cc (+2 -4)
Generated by StatSVN 0.7.0