[root]/CCA/Components/ICE
Advection
(12 files, 2882 lines)
Core
(8 files, 1824 lines)
CustomBCs
(17 files, 7598 lines)
EOS
(29 files, 4075 lines)
Materials
(3 files, 544 lines)
PressureSolve
(0 files, 0 lines)
HypreStandAlone
(33 files, 5772 lines)
SpecificHeatModel
(13 files, 1079 lines)
TurbulenceModel
(9 files, 1347 lines)
WallShearStressModel
(9 files, 1003 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 113 (100.0%) | 959 (100.0%) | 8.4 |
allen | 74 (65.5%) | 744 (77.6%) | 10.0 |
jas | 25 (22.1%) | 144 (15.0%) | 5.7 |
dav | 5 (4.4%) | 35 (3.6%) | 7.0 |
guilkey | 4 (3.5%) | 23 (2.4%) | 5.7 |
harman | 3 (2.7%) | 12 (1.3%) | 4.0 |
ahumphrey | 2 (1.8%) | 1 (0.1%) | 0.5 |
replaced the modelsetup class with a specific class for the fluids based models
0 lines of code changed in 6 files:
Removed the redundant ModelInfo class from the models to make models more generic
12 lines of code changed in 4 files:
added second interface computeTaskGraphIndex to remove need for shared shate call, renamed recomputeTimeStep to recomputeDelT for a more accurate call
3 lines of code changed in 2 files:
fixed warning and used declared var
1 lines of code changed in 1 file:
added comments on the models
9 lines of code changed in 1 file:
Broke the large libs into smaller libraries allowing of the removal the ModelFactory Component and moved all application code from core
74 lines of code changed in 21 files:
Made the models a first class component and minor clean up the MPM header file usage
13 lines of code changed in 1 file:
Beginnings MALLOC_TRACE support removal, e.g. MALLOC_TRACE_TAG_SCOPE and other macros.
This library, though once useful, no longer works with Uintah and is not maintained, plus inextricably tied to SCI_MALLOC, which ultimately needs to go away.
0 lines of code changed in 1 file:
renamed ComponentFactory to Applicationfactory - moved model mgt from switcher to application
4 lines of code changed in 1 file:
added a check for models and comment cleanup
18 lines of code changed in 1 file:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
7 lines of code changed in 1 file:
Cleanup of the Scheduler to use ports for all components
6 lines of code changed in 2 files:
merged the needCompile into the ApplicationCommon class, removed the passing of appliction values in the DataArchiver
1 lines of code changed in 2 files:
addition work to move the time step and sim time into teh data warehouse. Also more encapulation into the App common
19 lines of code changed in 3 files:
removed the delta T label from the shared state and began removing the shared state where possible
18 lines of code changed in 3 files:
Fixed so the model maker is passed down correctly
2 lines of code changed in 2 files:
additional changes related to the Application Common
12 lines of code changed in 2 files:
update to move to a application common class and remove the shared state
380 lines of code changed in 10 files:
added processor node identification to the proc group, also cleaned up method names
82 lines of code changed in 4 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.
113 lines of code changed in 6 files:
compiler warnings
12 lines of code changed in 3 files:
Add simulation time to SimulationTime object. Arches needs this for certain tasks.
Curious this was not available previously anywhere outside of the SimController.
1 lines of code changed in 1 file:
fixes for W-cycle and performing on-the-fly analysis
22 lines of code changed in 2 files:
added an exception for W cycle with analysis cause it no worky
9 lines of code changed in 1 file:
added additional analysis vars
47 lines of code changed in 1 file:
Update copyright.
31 lines of code changed in 19 files:
removed needless incude of time.h
0 lines of code changed in 1 file:
Removed Time.h and replaced with Timers.hpp
1 lines of code changed in 1 file:
add min/max bounds to the in-situ vars, fixed handle checks
4 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.
35 lines of code changed in 5 files:
Continuing the string of unintended consequences. Don't read in geometry
on restart for ICE or models.
1 lines of code changed in 1 file:
Get the ICEMaterial in tune with the MPMMaterial for restarts.
22 lines of code changed in 3 files: