Directory CCA/Components/MPM/PhysicalBC/

Total Files:
26
Deleted Files:
0
Lines of Code:
3966

[root]/CCA/Components/MPM/PhysicalBC

Lines of Code

CCA/Components/MPM/PhysicalBC/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 81 (100.0%) 281 (100.0%) 3.4
jbhooper 8 (9.9%) 136 (48.4%) 17.0
guilkey 4 (4.9%) 47 (16.7%) 11.7
allen 28 (34.6%) 43 (15.3%) 1.5
dav 3 (3.7%) 30 (10.7%) 10.0
jas 38 (46.9%) 25 (8.9%) 0.6

Most Recent Commits

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

29 lines of code changed in 10 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (new), AutoCycleFluxBC.h (+1 -1), FluxBCModel.cc (+2 -1), FluxBCModel.h (new), sub.mk (new)
allen 2017-12-18 20:48 Rev.: 57477

Moved MPM Solvers and other class into their own sub dirs

8 lines of code changed in 14 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.h (+1 -1), FluxBCModel.h (+1 -1), FluxBCModelFactory.h (new), MPMPhysicalBCFactory.h (+1 -1), PotentiostaticBC.h (+1 -1), PressureBC.cc (+1 -1), PressureBC.h (+1 -1), ScalarFluxBC.h (new)
guilkey 2017-12-06 18:06 Rev.: 57401

Particles can now be part of up to three load curves. This is particularly
useful for pressure BCs where pressure might be applied to more than one
face, now corner particles get contributions from both, with the resultant force
as the sum of the two forces from each face's load curve. This will break the
NairnFriction test in the RT.

47 lines of code changed in 4 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+23 -20), FluxBCModel.cc (+22 -17), LoadCurve.h (+2 -3)
allen 2017-11-07 18:45 Rev.: 57246

added missing header file

2 lines of code changed in 2 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+1), FluxBCModel.cc (+1)
jbhooper 2017-10-17 11:01 Rev.: 57148

-- Minor comment updates
-- Initial header for a potentiostatic physical boundary condition

110 lines of code changed in 4 files:

  • CCA/Components/MPM/PhysicalBC: FluxBCModel.cc (+1 -3), PotentiostaticBC.h (+107), ScalarFluxBC.cc (new)
jbhooper 2017-08-18 16:16 Rev.: 56900

-- Further encapsulate Solid State Diffusion variables into diffusion specific code blocks.
-- Clean up and extend diffusion models to account for thermodynamic driving forces.
-- Standardize diffusion material interfaces with other MPM material interface approach
-- Standardize diffusion model input/output

4 lines of code changed in 2 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+2 -2), FluxBCModel.cc (+2 -2)
jbhooper 2017-07-28 14:40 Rev.: 56825

-- Clean up diffusion labels in MPM code.
-- Enable MAC OS RT on Darwin for actual testing and comparisons.

22 lines of code changed in 2 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+15 -10), FluxBCModel.cc (+7 -4)
jas 2017-04-20 13:22 Rev.: 56455

Update copyright.

25 lines of code changed in 38 files:

  • CCA/Components/MPM/PhysicalBC: ArchesHeatFluxBC.cc (+1 -1), ArchesHeatFluxBC.h (new), AutoCycleFluxBC.cc (+1 -1), AutoCycleFluxBC.h (+1 -1), FluxBCModel.cc (+1 -1), FluxBCModel.h (+1 -1), FluxBCModelFactory.cc (new), FluxBCModelFactory.h (+1 -1), ForceBC.cc (+1 -1), ForceBC.h (+1 -1), HeatFluxBC.cc (new), HeatFluxBC.h (new), LoadCurve.h (+1 -1), MPMPhysicalBC.h (new), MPMPhysicalBCFactory.cc (new), MPMPhysicalBCFactory.h (+1 -1), NormalForceBC.cc (+1 -1), NormalForceBC.h (+1 -1), PolynomialData.cc (+1 -1), PolynomialData.h (new), PressureBC.cc (+1 -1), PressureBC.h (+1 -1), ScalarFluxBC.cc (+1 -1), ScalarFluxBC.h (+1 -1), sub.mk (+1 -1)
allen 2017-04-13 16:24 Rev.: 56421

Removed Time.h and replaced with Timers.hpp

4 lines of code changed in 2 files:

  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+2 -2), FluxBCModel.cc (+2 -2)
dav 2017-02-24 15:57 Rev.: 56251

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

30 lines of code changed in 3 files:

  • CCA/Components/MPM/PhysicalBC: LoadCurve.h (+3 -3), MPMPhysicalBCFactory.cc (+10 -13), PolynomialData.cc (+17 -18)
Generated by StatSVN 0.7.0