Directory Packages/Uintah/CCA/Components/MPM/HeatConduction/

Total Files:
4
Deleted Files:
0
Lines of Code:
1483

[root]/Packages/Uintah/CCA/Components/MPM/HeatConduction

Lines of Code

Packages/Uintah/CCA/Components/MPM/HeatConduction/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 27 (100.0%) 464 (100.0%) 17.1
guilkey 8 (29.6%) 243 (52.4%) 30.3
harman 7 (25.9%) 188 (40.5%) 26.8
jas 11 (40.7%) 32 (6.9%) 2.9
luitjens 1 (3.7%) 1 (0.2%) 1.0

Most Recent Commits

jas 2008-10-21 09:54 Rev.: 42285

Use the new boundary condition interface with uses strings instead of
specific boundary condition classes.

4 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+4 -4)
guilkey 2008-08-28 16:01 Rev.: 41991

Don't push pdTdt through the heat conduction machinery anymore, just
increment the particle temperature directly.

9 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+9 -79)
guilkey 2008-08-27 19:09 Rev.: 41987

Change the modifies to requires, etc, for gdTdt. It isn't really
modified, just used. This shouldn't change any answers.

7 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+7 -11)
jas 2008-08-19 01:17 Rev.: 41933

Fix memory leak.

2 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+2 -2)
guilkey 2008-08-15 16:11 Rev.: 41913

Add gTemperatureStar calc back in as it is used by MPMICE.

5 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+5 -3)
guilkey 2008-08-14 18:06 Rev.: 41907

More tidying. No longer allocateAndPut gTemperatureStarLabel,
it was only used as a temporary variable, and is now treated
accordingly.

29 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+29 -31)
guilkey 2008-08-14 17:26 Rev.: 41906

Get rid of the temporary variable gpdTdt. What was I thinking?

9 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+9 -23)
guilkey 2008-08-14 17:00 Rev.: 41904

Added some comments, and split the fracture stuff into
its own loops for readability and performance.

125 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+125 -76)
luitjens 2008-07-29 13:56 Rev.: 41755

Don't call reset() from begin() instead call reset when it is needed. Calling reset from begin could cause lots of unintended consequences.

1 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+1 -1)
jas 2008-07-29 09:48 Rev.: 41750

Use the new Iterator framework.

5 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+5 -7)
jas 2008-07-19 05:06 Rev.: 41618

Fix memory leaks.

2 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+2 -1)
jas 2008-07-17 09:41 Rev.: 41554

Test the return types of getArrayBCValues.

3 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+3 -3)
jas 2008-07-07 20:07 Rev.: 41434

Use the proper c++ standard for include files for the C inlude files, i.e.
<stdio.h> --> <cstdio>
<math.h> --> <cmath>

Tested on g++ 4.2 and 4.3 compilers.

1 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.h (new)
jas 2008-06-03 03:06 Rev.: 41192

Back out revision 41033 and 41059 which modifed the boundary conditions.
Now the RT should pass, and I can try again to get a complete fix for the
boundary conditions.

3 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+3 -11)
harman 2008-05-14 10:46 Rev.: 41037

new patch conversion:

getNodeIterator(interp_type) -> getExtraNodeIterator__New()

(user must input the correct number of ghostcells, Jim implemented bulletproofing
to catch this)

3 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+3 -3)
jas 2008-05-13 16:33 Rev.: 41033

This is a first pass at using the face iterators for visiting cells/nodes
needed to set boundary conditions for the most common case (SideBC). We
no longer store the cells/nodes to be visited and instead create them on the
fly.

Initial tests for a simple ICE advect.ups show a slight reduction in memory
usage.

The second pass will actually generalize the code so that all the if/else
statements are removed.

11 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+11 -3)
harman 2008-05-12 16:24 Rev.: 41006

New Patch Conversion

getNodeLowIndex() -> getExtraNodeLowIndex__New()
getNodeHighIndex() -> getExtraNodeHighIndex__New()
getInteriorNodeLowIndex() -> getNodeLowIndex__New()
getInteriorNodeHighIndex() -> getNodeHighIndex__New()

30 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+30 -30)
harman 2008-05-12 14:38 Rev.: 41004

New patch conversion
getNodeIterator() -> getNodeIterator__New()

9 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+2 -2), ImplicitHeatConduction.cc (+7 -7)
harman 2008-04-25 15:01 Rev.: 40836

Added new task (turned off by default) to compute the nodal heat flux.
To turn it on, add either:

<save label = "g.HeatFlux"/>

or

<DataAnalysis>
<Module name="flatPlate_heatFlux">
<snip>
</DataAnalysis>

to the ups file.

146 lines of code changed in 3 files:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: HeatConduction.cc (+136), HeatConduction.h (new)
jas 2008-03-26 14:12 Rev.: 40574

Remove the SFC iterators that were currently unused in the ICE and MPM codes.

1 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/MPM/HeatConduction: ImplicitHeatConduction.cc (+1 -1)

(1 more)

Generated by StatSVN 0.4.0