Directory CCA/Components/MPMArches/

Total Files:
7
Deleted Files:
0
Lines of Code:
6103

[root]/CCA/Components/MPMArches
                directory in repo fortran (12 files, 3305 lines)

Lines of Code

CCA/Components/MPMArches/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 29 (100.0%) 219 (100.0%) 7.5
jas 13 (44.8%) 89 (40.6%) 6.8
luitjens 7 (24.1%) 65 (29.7%) 9.2
guilkey 4 (13.8%) 61 (27.9%) 15.2
jthornoc 5 (17.2%) 4 (1.8%) 0.8

Most Recent Commits

jthornoc 2009-12-17 18:40 Rev.: 45209

MPMArches.cc:
Moved setAreaFraction from MPMArches.cc to ExplicitSolver.cc (with an "if d_MAlab" -- i.e., only called every time step if mpm is present.)

Arches.cc:
Added WestbrookDryer.h
Added initialization for "extra local labels" for source terms
Added some print statements for the header of the output stream
Added WestbrookDryer model registration

ArchesLabel.cc and .h:
Added a new label for mixture molecular weight (from Table)

BoundaryCond_new.cc:
Fixed a bug with the material index

ExplicitSolver.cc:
Added the setAreaFraction call that was moved from MPMArches

ExplicitTimeInt.h:
Added a check for zero density (inside a wall). I am planning on moving this division by density out of the time integrator and into the scalar eqn where it belongs. More to come...

Properties.cc, NewStaticMixingTable.*, Stream.h:
Added the mixture molecular weight and access to it

SourceTerms/:
Added a new Source Term (WestbrookDryer)
Added a virtual function for initializing the sources and any local dependent functions the source might require
Added "extraLocalLabel" vector for the sources in the base class.

ScalarEqn.cc:
Names the "old" transport label with the correct name.
Initialized Conv and Diff at the start of a time step to zero.
Added the clipping function at the end of the averaging.
Added dummyInit of RHS, FCONV, FDIFF
Grabbing the right old variable for copying in the dummyInit

DQMOMEqn.cc:
Passing in a modifieable weight into getICVariables...we may want to handle the cutoff differently
Initializing Fconv and Fdiff to zero at the start of every t_step.

PartVel.cc:
Changed the default behavior of the particle velocities on the boundary to require (user specified) values from the input file.

0 lines of code changed in 2 files:

  • CCA/Components/MPMArches: MPMArches.cc (-1)
jthornoc 2009-12-01 19:08 Rev.: 45142

1) Added the setAreaFraction method to MPMArches.
2) Added new input files for DQMOM regression testing.
3) Added new tests for DQMOM/Scalar transport to the regression test.
4) Fixed an error in the methane_1m.ups file
5) Added central_limiter option to spec for Enthalpy_solver for consistency

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1)
luitjens 2009-11-16 11:41 Rev.: 45067

Migrated a few more function calls to the new patch interface.

Deleted the old patch interface.

Removed __New() from the new patch interface calls.

38 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+38 -38)
luitjens 2009-11-16 10:43 Rev.: 45066

Renamed the bugged SFC?FORT{Low,High}Index queries to SFC?FORT{Low,High}__Old.

18 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+18 -18)
luitjens 2009-10-27 12:51 Rev.: 44956

Removed unnecessary error checking. The computes/requires framework should handle these checks.

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1 -4)
jthornoc 2009-10-27 12:20 Rev.: 44954

1) Turned off scrubbing per Justin's recommendation
2) For mpmArches, cellInformation is computed in doMomExchange and then required from the new_dw thereafter.
3) Removed the empty emitNormal because it is no longer needed

2 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+2 -2)
jthornoc 2009-10-26 14:49 Rev.: 44950

Fixing the missing computes for cellInfo.

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1 -1)
luitjens 2009-10-14 11:58 Rev.: 44870

Also comment out the requires so buildbot will stop yelling at us.

2 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+2 -1)
luitjens 2009-10-14 11:02 Rev.: 44869

Commented compute out until we can resolve the multiple computes issue.

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1 -1)
luitjens 2009-10-14 10:24 Rev.: 44867

Added a missing compute.

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1)
luitjens 2009-10-14 10:19 Rev.: 44866

Added some missing computes/requries.

4 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+4 -1)
jas 2009-09-30 16:47 Rev.: 44766

Move d_gravity from SimulationState.h to various components that use it.

1 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+1 -1)
guilkey 2009-07-30 16:02 Rev.: 44555

MPM's gravity is actually applied in MPMArches (for MPMArches simulations) not in SerialMPM. Moved prior change from SerialMPM.cc to MPMArches.cc.

3 lines of code changed in 1 file:

  • CCA/Components/MPMArches: MPMArches.cc (+3 -3)
guilkey 2009-03-10 17:31 Rev.: 43555

Combine solveEquationsMotion and integrateAcceleration into one task,
computeAndIntegrateAcceleration. This should provide a modest performance
improvement, and an overall reduction in lines of code.

Also, stripped out the damping rate calculation code. This code was fairly
indefensible and pretty much never used. The d_dampingCoefficient flag is
still in place, and it can now used in computing the acceleration. This is
similar to code that has been in place, but commented out, for a long time.
The damping force is now -d_dampingCoefficient*velocity.

Added a cut off mass for computing the acceleration. If the nodal masses are
below this cut off value, then that node's acceleration will be zero. This is
definitely a hack, but it is easy to defend based on the numerics of MPM.

These changes didn't affect the results for the MPM, MPMArches or MPMICE
regression tests.

58 lines of code changed in 3 files:

  • CCA/Components/MPMArches: MPMArches.cc (+51 -27), MPMArches.h (new)
jas 2009-03-09 15:29 Rev.: 43510

Remove the Packages/Uintah/

74 lines of code changed in 10 files:

  • CCA/Components/MPMArches: CutCellInfo.cc (new), CutCellInfo.h (+4 -4), MPMArches.cc (+42 -42), MPMArches.h (+12 -12), MPMArchesLabel.cc (+12 -12), MPMArchesLabel.h (new)
jas 2009-03-09 15:23 Rev.: 43506

Remove the Packages/Uintah/

14 lines of code changed in 2 files:

  • CCA/Components/MPMArches: sub.mk (+14 -14)
Generated by StatSVN 0.4.0