/trunk/src Developers: jbhooper

Login name:
jbhooper
Total Commits:
138 (1.0%)
Lines of Code:
4,660 (1.9%)
Most Recent Commit:
2017-10-17 12:53
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for jbhooper

Activity by Day of Week for jbhooper

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 138 (100.0%) 4660 (100.0%) 33.7
CCA/Components/MPM/Diffusion/DiffusionModels/ 34 (24.6%) 2924 (62.7%) 86.0
CCA/Components/MPM/Diffusion/DiffusionInterfaces/ 12 (8.7%) 413 (8.9%) 34.4
Core/Labels/ 12 (8.7%) 366 (7.9%) 30.5
CCA/Components/MPM/Diffusion/ConductivityModels/ 12 (8.7%) 331 (7.1%) 27.5
CCA/Components/MPM/Diffusion/ 7 (5.1%) 240 (5.2%) 34.2
CCA/Components/MPM/ 10 (7.2%) 142 (3.0%) 14.2
CCA/Components/MPM/PhysicalBC/ 8 (5.8%) 136 (2.9%) 17.0
R_Tester/ 3 (2.2%) 44 (0.9%) 14.6
CCA/Components/MPM/ConstitutiveModel/ 4 (2.9%) 31 (0.7%) 7.7
CCA/Components/MPM/ParticleCreator/ 3 (2.2%) 28 (0.6%) 9.3
CCA/Components/MPMFVM/ 3 (2.2%) 4 (0.1%) 1.3
Core/Grid/ 1 (0.7%) 1 (0.0%) 1.0
CCA/Components/MPM/ReactionDiffusion/DiffusionModels/ 12 (8.7%) 0 (0.0%) 0.0
CCA/Components/MPM/ReactionDiffusion/DiffusionInterfaces/ 5 (3.6%) 0 (0.0%) 0.0
CCA/Components/MPM/ReactionDiffusion/ConductivityModels/ 7 (5.1%) 0 (0.0%) 0.0
CCA/Components/MPM/ReactionDiffusion/ 5 (3.6%) 0 (0.0%) 0.0

Activity of jbhooper

Most Recent Commits

jbhooper 2017-10-17 12:53 Rev.: 57149

-- Remove unused d_integrator members in Serial/AMR MPM objects.

1 lines of code changed in 2 files:

  • CCA/Components/MPM: AMRMPM.h (-1), SerialMPM.h (+1 -1)
jbhooper 2017-10-17 11:01 Rev.: 57148

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

115 lines of code changed in 5 files:

  • CCA/Components/MPM: AMRMPM.cc (+5 -1)
  • CCA/Components/MPM/PhysicalBC: FluxBCModel.cc (+1 -3), PotentiostaticBC.h (+107), ScalarFluxBC.cc (new)
jbhooper 2017-08-25 09:35 Rev.: 56914

-- Fix labels so that errors point to the proper routines.

4 lines of code changed in 1 file:

  • CCA/Components/MPM: RigidMPM.cc (+4 -4)
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

304 lines of code changed in 27 files:

  • CCA/Components/MPM: AMRMPM.cc (+11 -18), ImpMPM.cc (+1 -1), SerialMPM.cc (+1 -1)
  • CCA/Components/MPM/Diffusion/DiffusionInterfaces: CommonIFConcDiff.cc (+12 -6), CommonIFConcDiff.h (-1), SDInterfaceModel.cc (+34 -11), SDInterfaceModel.h (+17)
  • CCA/Components/MPM/Diffusion/DiffusionModels: ConstantRate.cc (+1 -2), JGConcentrationDiffusion.cc (+3 -5), NonLinearDiff1.cc (+2 -3), NonLinearDiff2.cc (+3 -5), RFConcDiffusion1MPM.cc (new), ScalarDiffusionModel.cc (+115 -15), ScalarDiffusionModel.h (+49 -11)
  • CCA/Components/MPM/ParticleCreator: ParticleCreator.cc (+14 -12)
  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+2 -2), FluxBCModel.cc (+2 -2)
  • Core/Labels: MPMDiffusionLabel.cc (new), MPMDiffusionLabel.h (new), MPMLabel.cc (+15 -8), MPMLabel.h (+10 -6)
jbhooper 2017-08-04 09:44 Rev.: 56845

-- Include <climits> for INT_MAX invocation.

(I have no clue where the buildbot compilation is picking up the climits inclusion from that it's not throwing the compilation error that I'm seeing.)

1 lines of code changed in 1 file:

  • Core/Grid: Level.cc (+1)
jbhooper 2017-07-28 16:54 Rev.: 56828

-- Update MPM Regression Tests to enable testing on OSX.

20 lines of code changed in 1 file:

  • R_Tester: MPM.py (+20 -49)
jbhooper 2017-07-28 16:11 Rev.: 56827

-- Fix compile issues for last two check-ins.

0 lines of code changed in 2 files:

  • Core/Labels: sub.mk (new)
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.

596 lines of code changed in 19 files:

  • CCA/Components/MPM: AMRMPM.cc (+115 -106)
  • CCA/Components/MPM/ConstitutiveModel: RFElasticPlastic.cc (+4 -4)
  • CCA/Components/MPM/Diffusion/DiffusionInterfaces: CommonIFConcDiff.cc (+4 -4)
  • CCA/Components/MPM/Diffusion/DiffusionModels: ConstantRate.cc (+8 -8), JGConcentrationDiffusion.cc (+8 -8), NonLinearDiff1.cc (+35 -32), NonLinearDiff2.cc (+14 -14), RFConcDiffusion1MPM.cc (+8 -8), ScalarDiffusionModel.cc (+8 -8)
  • CCA/Components/MPM/ParticleCreator: ParticleCreator.cc (+13 -12)
  • CCA/Components/MPM/PhysicalBC: AutoCycleFluxBC.cc (+15 -10), FluxBCModel.cc (+7 -4)
  • CCA/Components/MPMFVM: ESConductivityModel.cc (+2 -2)
  • Core/Labels: MPMDiffusionLabel.cc (+123), MPMDiffusionLabel.h (+91), MPMLabel.cc (+91 -84), MPMLabel.h (+26 -22)
  • R_Tester: MPM.py (+14 -12), MPMICE.py (+10 -1)
jbhooper 2017-07-18 20:43 Rev.: 56802

-- Rename the ReactionDiffusion directory to be simply "Diffusion" in the MPM code, in anticipation of updating the diffusion models to work with Serial MPM as well as backporting some portion of the Structural Energetics branch in order to enable basic reaction functionality in solid solutions.

3594 lines of code changed in 79 files:

  • CCA/Components/MPM: AMRMPM.cc (+3 -3), sub.mk (+1 -1)
  • CCA/Components/MPM/ConstitutiveModel: MPMMaterial.cc (+2 -2)
  • CCA/Components/MPM/Diffusion: SDInterfaceModelFactory.cc (+77), SDInterfaceModelFactory.h (new), ScalarDiffusionModelFactory.cc (+70), sub.mk (+41)
  • CCA/Components/MPM/Diffusion/ConductivityModels: BinaryEquation.cc (+69), BinaryEquation.h (+67), ConductivityEquation.cc (+49), FixedEquation.cc (+53), FixedEquation.h (new), sub.mk (+35)
  • CCA/Components/MPM/Diffusion/DiffusionInterfaces: CommonIFConcDiff.cc (+165), CommonIFConcDiff.h (+71), SDInterfaceModel.cc (+75), sub.mk (new)
  • CCA/Components/MPM/Diffusion/DiffusionModels: ConstantRate.cc (+236), ConstantRate.h (new), JGConcentrationDiffusion.cc (+177), JGConcentrationDiffusion.h (new), NonLinearDiff1.cc (+460), NonLinearDiff1.h (+146), NonLinearDiff2.cc (+379), NonLinearDiff2.h (new), RFConcDiffusion1MPM.cc (+169), RFConcDiffusion1MPM.h (new), ScalarDiffusionModel.cc (+392), ScalarDiffusionModel.h (+179), sub.mk (new)
  • CCA/Components/MPM/ParticleCreator: ParticleCreator.cc (+1 -1)
  • CCA/Components/MPM/ReactionDiffusion: SDInterfaceModelFactory.cc (del), SDInterfaceModelFactory.h (del), ScalarDiffusionModelFactory.cc (del), ScalarDiffusionModelFactory.h (del), sub.mk (del)
  • CCA/Components/MPM/ReactionDiffusion/ConductivityModels: BinaryEquation.cc (del), BinaryEquation.h (del), ConductivityEquation.cc (del), ConductivityEquation.h (del), FixedEquation.cc (del), FixedEquation.h (del), sub.mk (del)
  • CCA/Components/MPM/ReactionDiffusion/DiffusionInterfaces: CommonIFConcDiff.cc (del), CommonIFConcDiff.h (del), SDInterfaceModel.cc (del), SDInterfaceModel.h (del), sub.mk (del)
  • CCA/Components/MPM/ReactionDiffusion/DiffusionModels: ConstantRate.cc (del), ConstantRate.h (del), JGConcentrationDiffusion.cc (del), JGConcentrationDiffusion.h (del), NonLinearDiff1.cc (del), NonLinearDiff2.cc (del), NonLinearDiff2.h (del), RFConcDiffusion1MPM.cc (del), RFConcDiffusion1MPM.h (del), ScalarDiffusionModel.cc (del), ScalarDiffusionModel.h (del), sub.mk (del)
  • CCA/Components/MPMFVM: ESConductivityModel.cc (+1 -1), ESConductivityModel.h (+1 -1)
jbhooper 2017-04-09 19:18 Rev.: 56406

-- Fix UCNH constitutive model to initialize CM shared data appropriately.

25 lines of code changed in 1 file:

  • CCA/Components/MPM/ConstitutiveModel: UCNH.cc (+25 -26)
Generated by StatSVN 0.7.0