Directory CCA/Components/SpatialOps/TransportEqns/

Directory Deleted:
2009-10-22 11:11
Total Files:
0
Deleted Files:
11
Lines of Code:
0

[root]/CCA/Components/SpatialOps/TransportEqns

Lines of Code

CCA/Components/SpatialOps/TransportEqns/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 100 (100.0%) 2555 (100.0%) 25.5
jthornoc 85 (85.0%) 2504 (98.0%) 29.4
charlesreid 13 (13.0%) 51 (2.0%) 3.9
dav 2 (2.0%) 0 (0.0%) 0.0

Most Recent Commits

jthornoc 2009-10-22 11:11 Rev.: 44932

Gave SpatialOps a lobotomy. Now linking in all factories, models, sources, and equations from the Arches code base rather than maintaining two copies. This should resolve any naming conflicts.

0 lines of code changed in 11 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (del), DQMOMEqn.h (del), DQMOMEqnFactory.cc (del), DQMOMEqnFactory.h (del), EqnBase.cc (del), EqnBase.h (del), EqnFactory.cc (del), EqnFactory.h (del), ScalarEqn.cc (del), ScalarEqn.h (del), sub.mk (del)
dav 2009-04-29 11:25 Rev.: 44226

Rearrange order of variable initialization to quiet compiler warning.

0 lines of code changed in 2 files:

  • CCA/Components/SpatialOps/TransportEqns: EqnBase.cc (changed)
charlesreid 2009-04-09 19:02 Rev.: 44038

Adding a method to get the quadrature node associated with a DQMOM equation

0 lines of code changed in 4 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.h (changed), DQMOMEqnFactory.h (changed)
jthornoc 2009-04-08 12:44 Rev.: 44006

No longer passing in the varLabel into the transport equation. This should simplify things a bit.

20 lines of code changed in 13 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (new), DQMOMEqn.h (+1 -2), DQMOMEqnFactory.h (-3), EqnBase.cc (+2 -6), EqnBase.h (+1 -1), EqnFactory.h (-3), ScalarEqn.cc (+6 -5), ScalarEqn.h (+1 -2)
jthornoc 2009-04-06 18:08 Rev.: 43984

1) Fixed bugs in Ax=b solver.
2) Fixed sign error in DQMOMEqn.cc
3) Fixed src*vol in DQMOMEqn.cc

5 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+5 -1)
jthornoc 2009-04-06 15:08 Rev.: 43981

Source term wasn't being retrieved properly for higher order time stepping.

Also, there is missing code in DQMOM.cc. The source term for the weight equations are not being filled in.

21 lines of code changed in 5 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+15 -5), DQMOMEqn.h (+2 -2), EqnBase.h (+1 -1), ScalarEqn.cc (+2 -2), ScalarEqn.h (+1 -1)
jthornoc 2009-04-05 23:05 Rev.: 43977

1) Fixed a bug in the multi-step time integrator. Now using old RK values rather than old_dw values in the intermediate steps.
2) Now passing in the ExplicitTimeIntegrator into the builder and then into the actual equation class rather than trying to set it afterwards.

262 lines of code changed in 8 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+11 -10), DQMOMEqn.h (+3 -2), DQMOMEqnFactory.h (+5 -1), EqnBase.cc (+2 -6), EqnBase.h (+1 -1), EqnFactory.h (+4), ScalarEqn.cc (+233 -14), ScalarEqn.h (+3 -2)
jthornoc 2009-04-04 09:56 Rev.: 43976

M CoalModels/PartVel.cc
M CoalModels/PartVel.h
- Fixed some bugs in the Particle velocity model. The model is adding to the magnitude of velocity...do we want to try adding to the components?

M TransportEqns/ScalarEqn.h
- Passing the timesubStep into the task properly.

M TransportEqns/EqnBase.cc
M TransportEqns/EqnBase.h
- Added a mechanism for storing initial conditions (still need to allow for reading in from the input file).
- Added an "old" transport varLabel for the RK time stepping.

M TransportEqns/DQMOMEqn.cc
M TransportEqns/DQMOMEqn.h
- Added upwind and super_bee convection schemes.
- Passing the timesubstep properly now.
- Fixed a sign error in the convection scheme addition to the RHS.
- Perform data copy after a RK step.

M TransportEqns/ScalarEqn.cc
- Passing the timesubstep properly now.
- Added an "if" statement to the sched_initialize (only perform when timesubstep = 0)
- Note: Still need to add flux limiters here.

M ExplicitTimeInt.h
- Now passing alpha and beta into the time averaging method. I was having some weirdness here that should be revisited (potential memory bug?).

M SpatialOps.cc
- Now setting the time integrator for the DQMOM equations. Don't ask me how this actually worked before :p
- Initializing particle velocities in actuallyInitialize.
- Right now there is a bunch of problem specific initialization going on that we will want to generalize in the future.
- Computing stable time step using a convective CFL. Will want to refine this (perhaps a different norm? Add diffusive CFL) soon.

M SourceTerms/SourceTermBase.h
- Passing timesubstep properly now and storing it in the base class.

M SourceTerms/ConstSrcTerm.cc
M SourceTerms/ConstSrcTerm.h
- Adusting to changes made in the base class.

M StandAlone/inputs/UPS_SPEC/spatialops_spec.xml
- Added more spec for the particle velocity model.

238 lines of code changed in 6 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+206 -19), DQMOMEqn.h (+3 -2), EqnBase.cc (+1), EqnBase.h (+9 -2), ScalarEqn.cc (+11 -10), ScalarEqn.h (+8 -7)
jthornoc 2009-03-30 17:08 Rev.: 43926

Some bug fixes.

7 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+7 -6)
charlesreid 2009-03-27 19:15 Rev.: 43910

Commenting out unused variables; implementing machinery to differentiate between different internal coordinates for Kobayashi-Sarofim model

42 lines of code changed in 7 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+1 -1), DQMOMEqnFactory.cc (new), DQMOMEqnFactory.h (+3), EqnFactory.cc (+17), EqnFactory.h (+3)
jthornoc 2009-03-27 14:06 Rev.: 43897

Whoops! Forgot to actually add the model to the tree for the particle velocities.

2 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: ScalarEqn.cc (+2 -2)
jthornoc 2009-03-27 13:54 Rev.: 43896

Added a model for the particle velocities

45 lines of code changed in 8 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+31 -13), DQMOMEqn.h (+3 -3), DQMOMEqnFactory.h (+2 -2), EqnBase.cc (+1 -1), EqnBase.h (+2 -2), EqnFactory.h (+2 -2), ScalarEqn.cc (+2 -2), ScalarEqn.h (+2 -2)
jthornoc 2009-03-25 22:00 Rev.: 43863

Changed the source term access in DQMOMEqn and initialized source terms in SpatialOps.cc

4 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+4 -10)
jthornoc 2009-03-23 18:55 Rev.: 43829

Corrected path for new inut spec.
Cleaned up EqnBase.h

2 lines of code changed in 2 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+2), EqnBase.h (-21)
jthornoc 2009-03-23 17:04 Rev.: 43827

Added spatialOps spec.
Moved specialization of the DQMOM functonality back into the DQMOM class and used dynamic_cast in spatialOps.cc

36 lines of code changed in 2 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.h (+22), EqnBase.h (+14 -14)
jthornoc 2009-03-22 00:11 Rev.: 43807

Added beginings of the time advance for DQMOM equations.
Fixed bug with a couple of access functions for DQMOM eqns.

23 lines of code changed in 3 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+1 -1), DQMOMEqn.h (-20), EqnBase.h (+22)
jthornoc 2009-03-19 15:38 Rev.: 43781

Added interface to model factory.
Now each DQMOM transport equation holds a list of models.

14 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+14)
jthornoc 2009-03-18 16:11 Rev.: 43767

Added a DQMOM eqn factory.
Added a mechanism for creating DQMOM equations on the fly.
Added interface to DQMOM section of the input file.

185 lines of code changed in 8 files:

  • CCA/Components/SpatialOps/TransportEqns: DQMOMEqn.cc (+3 -2), DQMOMEqn.h (+5 -3), DQMOMEqnFactory.cc (+80), DQMOMEqnFactory.h (+94), EqnBase.h (+1), ScalarEqn.h (+1), sub.mk (new)
jthornoc 2009-03-17 14:44 Rev.: 43744

Returned a reference rather than a copy.


1 lines of code changed in 1 file:

  • CCA/Components/SpatialOps/TransportEqns: EqnFactory.h (+1 -1)
jthornoc 2009-03-17 14:34 Rev.: 43743

Added a way to access all equations at once in factory.
Changed the way spatialops was looping over the solution to the equations by using eqn map rather than a looking up each equation individually.
Added an access function to get an eqn's name.

8 lines of code changed in 2 files:

  • CCA/Components/SpatialOps/TransportEqns: EqnBase.h (+2 -1), EqnFactory.h (+6 -1)

(3 more)

Generated by StatSVN 0.4.0