[root]/CCA/Components/MPM/Contact
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 107 (100.0%) | 203 (100.0%) | 1.8 |
guilkey | 18 (16.8%) | 104 (51.2%) | 5.7 |
jas | 32 (29.9%) | 64 (31.5%) | 2.0 |
dav | 1 (0.9%) | 25 (12.3%) | 25.0 |
allen | 56 (52.3%) | 10 (4.9%) | 0.1 |
Broke the large libs into smaller libraries allowing of the removal the ModelFactory Component and moved all application code from core
0 lines of code changed in 21 files:
Moved MPM Solvers and other class into their own sub dirs
6 lines of code changed in 12 files:
Made the models a first class component and minor clean up the MPM header file usage
0 lines of code changed in 7 files:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
0 lines of code changed in 2 files:
additional changes related to the Application Common
2 lines of code changed in 3 files:
removed spurious header file
0 lines of code changed in 9 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.
43 lines of code changed in 8 files:
Adding the option to skip over the first contact step. For now, the default is
to keep doing it.
28 lines of code changed in 5 files:
Don't set the velocity BC in the contact code as it has already been set in
interpolateToParticlesAndUpdate and contact won't induce any out of plane
velocity components.
0 lines of code changed in 1 file:
A bit more clean up, fixing comments, and deleting no longer needed "requires".
2 lines of code changed in 1 file:
Minor clean up, shouldn't change any answers.
11 lines of code changed in 1 file:
Bringing the calculation of normal traction, etc., out of the Friction Contact
model, put them with the normal calculation, which I should have done
originally.
7 lines of code changed in 3 files:
Pull calculation of normal, used in several contact models, out of the
contact models into a common place. This will enable more flexibility
going forward, like using different friction coefficients between matl 1 and 2 than between 1 and 3, etc.
56 lines of code changed in 7 files:
Update copyright.
21 lines of code changed in 24 files:
change to SimTime
1 lines of code changed in 1 file:
Removed Time.h and replaced with Timers.hpp
1 lines of code changed in 1 file:
Continuation of commit r56249 - this time for MPM, Models, OnTheFlyAnalysis.
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, align variablesa.
- 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/FVM/ElectrostaticSolve.cc
M CCA/Components/FVM/FVMMaterial.cc
M CCA/Components/MPM/AMRMPM.cc
M CCA/Components/MPM/ConstitutiveModel/MPMMaterial.cc
M CCA/Components/MPM/Contact/ContactFactory.cc
M CCA/Components/MPM/ImpMPM.cc
M CCA/Components/MPM/MPMCommon.cc
M CCA/Components/MPM/MPMFlags.cc
M CCA/Components/MPM/PhysicalBC/LoadCurve.h
M CCA/Components/MPM/PhysicalBC/MPMPhysicalBCFactory.cc
M CCA/Components/MPM/PhysicalBC/PolynomialData.cc
M CCA/Components/MPM/SerialMPM.cc
M CCA/Components/MPM/ShellMPM.cc
M CCA/Components/MPM/ThermalContact/ThermalContactFactory.cc
M CCA/Components/Models/FluidsBased/AdiabaticTable.cc
M CCA/Components/Models/FluidsBased/ArchesTable.cc
M CCA/Components/Models/FluidsBased/Mixing.cc
M CCA/Components/Models/FluidsBased/NonAdiabaticTable.cc
M CCA/Components/Models/FluidsBased/PassiveScalar.cc
M CCA/Components/Models/FluidsBased/SimpleRxn.cc
M CCA/Components/Models/FluidsBased/TableFactory.cc
M CCA/Components/Models/FluidsBased/flameSheet_rxn.cc
M CCA/Components/Models/HEChem/DDT0.cc
M CCA/Components/Models/HEChem/DDT1.cc
M CCA/Components/Models/HEChem/JWLpp.cc
M CCA/Components/Models/HEChem/MesoBurn.cc
M CCA/Components/Models/HEChem/Simple_Burn.cc
M CCA/Components/Models/HEChem/Steady_Burn.cc
M CCA/Components/Models/HEChem/Unsteady_Burn.cc
M CCA/Components/Models/HEChem/ZeroOrder.cc
M CCA/Components/Models/ModelFactory.cc
M CCA/Components/Models/Radiation/RMCRT/Radiometer.cc
M CCA/Components/Models/SolidReactionModel/SolidReactionModel.cc
M CCA/Components/OnTheFlyAnalysis/1stLawThermo.cc
M CCA/Components/OnTheFlyAnalysis/AnalysisModuleFactory.cc
M CCA/Components/OnTheFlyAnalysis/MinMax.cc
M CCA/Components/OnTheFlyAnalysis/containerExtract.cc
M CCA/Components/OnTheFlyAnalysis/lineExtract.cc
M CCA/Components/OnTheFlyAnalysis/momentumAnalysis.cc
M CCA/Components/OnTheFlyAnalysis/particleExtract.cc
M CCA/Components/OnTheFlyAnalysis/planeExtract.cc
M CCA/Components/OnTheFlyAnalysis/statistics.cc
25 lines of code changed in 1 file: