Directory CCA/Components/Models/HEChem/

Total Files:
19
Deleted Files:
0
Lines of Code:
6958

[root]/CCA/Components/Models/HEChem

Lines of Code

CCA/Components/Models/HEChem/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 70 (100.0%) 209 (100.0%) 2.9
jpeterson 23 (32.9%) 166 (79.4%) 7.2
harman 12 (17.1%) 20 (9.6%) 1.6
jas 31 (44.3%) 19 (9.1%) 0.6
dav 4 (5.7%) 4 (1.9%) 1.0

Most Recent Commits

jpeterson 2011-10-13 14:46 Rev.: 47711

Fixed last commit. This version correctly handles both ICE and MPM materials as the reactant.

0 lines of code changed in 2 files:

  • CCA/Components/Models/HEChem: JWLpp.cc (changed)
jpeterson 2011-10-08 15:59 Rev.: 47695

Moved global variables into a struct that is passed to the Newton solver. This should allow the use of these models on statically linked machines and remove possible data corruptions.

0 lines of code changed in 12 files:

  • CCA/Components/Models/HEChem: DDT1.cc (changed), DDT1.h (changed), Steady_Burn.cc (changed), Steady_Burn.h (new), Unsteady_Burn.cc (changed), Unsteady_Burn.h (new)
jpeterson 2011-10-04 15:01 Rev.: 47678

M CCA/Components/Models/HEChem/JWLpp.cc

Modified JWL++ model to use input file specific heat in calculating heat release. This allows use of the model with either MPM or ICE as the reactant material.


M StandAlone/inputs/UPS_SPEC/Models.xml

Corrected a required application of a variable to the 'Murnaghan' instead of 'Murnahan'.


M StandAlone/inputs/Models/explodeJCVMEPKSPB.ups
M StandAlone/inputs/ICE/JWLpp8mmRS.add.ups
M StandAlone/inputs/ICE/LightTime.ups
M StandAlone/inputs/ICE/JWLpp12mmRS.ML.ups
M StandAlone/inputs/ICE/JWLpp8mmRS.ups
M StandAlone/inputs/ICE/riemann_murnahan.ups
M StandAlone/inputs/MPMICE/JWLppCuRS2d.ups
M StandAlone/inputs/MPMICE/explode2D_amr.ups
M StandAlone/inputs/MPMICE/QM100CuRS.ups
M StandAlone/inputs/MPMICE/JWLppCuRS2d.add.ups

Modified all incorrect references to 'Murnahan' to 'Murnaghan' file-based includes so they will run stock from their directory.


12 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: JWLpp.cc (+12 -4)
jpeterson 2011-09-02 13:25 Rev.: 47546

Removing some dead wood. Thanks to Todd for catching this as an issue in AMR.

0 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (-3)
jas 2011-08-31 02:48 Rev.: 47536

Update copyright year.

19 lines of code changed in 31 files:

  • CCA/Components/Models/HEChem: Common.cc (new), Common.h (new), DDT0.cc (new), DDT0.h (+1 -1), DDT1.cc (+1 -1), DDT1.h (+1 -1), IandG.cc (+1 -1), IandG.h (new), JWLpp.cc (+1 -1), JWLpp.h (+1 -1), LightTime.cc (+1 -1), LightTime.h (+1 -1), Simple_Burn.cc (new), Simple_Burn.h (new), Steady_Burn.cc (+1 -1), Steady_Burn.h (+1 -1), Unsteady_Burn.cc (+1 -1), Unsteady_Burn.h (+1 -1), sub.mk (+1 -1)
jpeterson 2011-07-19 15:31 Rev.: 47354

Fixed an artificial threshold accidentally added in the last commit. Updated to the model used in the validation study.

44 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+44 -28)
jpeterson 2011-05-01 13:42 Rev.: 47135

Fixed a lost criteria in the last few commits. Prevents surface burning in a cell that will be consumed by detonation in the next timestep.

10 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+10 -10)
jpeterson 2011-04-29 13:31 Rev.: 47131

Finally got the temperature logic right for burning in cracks. Also added some commenting

14 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+14 -9)
jpeterson 2011-04-26 11:48 Rev.: 47116

Added back in the temperature threshold that was lost in my last commit.

12 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+12 -9)
jpeterson 2011-04-25 11:39 Rev.: 47111

Spread out the logic for crack burning and surface burning. Added the ability to specify different burn and detonation product gases.

66 lines of code changed in 2 files:

  • CCA/Components/Models/HEChem: DDT1.cc (+64 -21), DDT1.h (+2 -1)
jpeterson 2011-04-18 10:36 Rev.: 47092

Fixed the criteria to prevent burning in front of a detonation. Also made is to that surface burning is added to the mass.

8 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+8 -6)
dav 2011-02-03 17:39 Rev.: 46783


Fixed circular dependencies recently added to the code due to code
consolidation.

1) Consolidated CCA/Components/Arches and Arches/Radiation into a single library
instead of two separate libraries... There isn't any good reason
that I know of to keep them separate, and this allows them to
'share' some common routines w/o creating a circular dependency.
(There are still a couple of additional Arches sub-shared
libs... (fortran/Mixing). These could easily be consolidated too if someone
wanted it done.)

Note, previously, in CCA/Components/sub.mk, many of the Arches sub-shared libs
where specifically specified. I've removed these and moved them
directly into the CCA/Components/Arches/sub.mk file to make it a
little easier to follow what is going on.

3) Moved DbgOutput out of Core/IO and into Core/Grid as it is related to
the Grid classes... Also, Core/Grid depends on Core/IO, so having
Core/IO stuff depend on Core/Grid causes a circular dependency.

4 lines of code changed in 4 files:

  • CCA/Components/Models/HEChem: DDT0.cc (+1 -1), DDT1.cc (+1 -1), Steady_Burn.cc (+1 -1), Unsteady_Burn.cc (+1 -1)
harman 2011-02-03 14:44 Rev.: 46781

Moved
CCA/Components/Parent/Common.cc .h
to
Core/IO/DbgOutput.cc .h

This fixes the static build. Thanks Dav.

4 lines of code changed in 4 files:

  • CCA/Components/Models/HEChem: DDT0.cc (+1 -1), DDT1.cc (+1 -1), Steady_Burn.cc (+1 -1), Unsteady_Burn.cc (+1 -1)
harman 2011-02-03 12:47 Rev.: 46779

Consolidated all the versions of printTask() & printSchedule to a common location
CCA/Components/Parent/Common.cc/.h

Global: added a #include Common.h and updated the interfaces.

Arches:
added printSchedule() calls. Many more to still add.

16 lines of code changed in 8 files:

  • CCA/Components/Models/HEChem: DDT0.cc (+2 -12), DDT0.h (-4), DDT1.cc (+4 -26), DDT1.h (-7), Steady_Burn.cc (+6 -25), Steady_Burn.h (-7), Unsteady_Burn.cc (+4 -25), Unsteady_Burn.h (-7)
Generated by StatSVN 0.4.0