Directory CCA/Components/Arches/TransportEqns/

Total Files:
8
Deleted Files:
0
Lines of Code:
6256

[root]/CCA/Components/Arches/TransportEqns

Lines of Code

CCA/Components/Arches/TransportEqns/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 31 (100.0%) 192 (100.0%) 6.1
jthornoc 8 (25.8%) 99 (51.6%) 12.3
dav 6 (19.4%) 34 (17.7%) 5.6
ahumphrey 2 (6.5%) 24 (12.5%) 12.0
jas 7 (22.6%) 18 (9.4%) 2.5
derekhar 3 (9.7%) 10 (5.2%) 3.3
allen 5 (16.1%) 7 (3.6%) 1.4

Most Recent Commits

jthornoc 2017-12-18 12:16 Rev.: 57467

Adding initial implementation of DQMOM in the
Arches/Kokkos/TaskInterface mode.

This still needs some work...

22 lines of code changed in 2 files:

  • CCA/Components/Arches/TransportEqns: DQMOMEqn.cc (+22 -7)
allen 2017-11-24 15:37 Rev.: 57339

removed the delta T label from the shared state and began removing the shared state where possible

7 lines of code changed in 5 files:

  • CCA/Components/Arches/TransportEqns: CQMOMEqn.cc (new), DQMOMEqn.cc (+2 -2), ScalarEqn.cc (new)
jas 2017-10-13 14:42 Rev.: 57138

Replace all instances of StaticArray with std::vector. This has been tested on the RT for all components. It is a drop in replacement. StaticArray is being removed.

17 lines of code changed in 6 files:

  • CCA/Components/Arches/TransportEqns: CQMOMEqn.cc (+6 -7), CQMOM_Convection.cc (new), CQMOM_Convection_OpSplit.h (new), ScalarEqn.cc (+1 -2)
ahumphrey 2017-06-06 14:15 Rev.: 56609

Reintegration of incite_dev branch. Improvements/Features/Optimizations include (but not limited too):

1.) Temporal scheduling, e.g. support for multiple primary task graphs (not w-cycle)
2.) Significantly improved task graph compilation times for multi-level RMCRT at large core/patch counts
3.) GPU super patch support
4.) Highly optimized RMCRT GPU kernels
5.) Significant reduction in infrastructure memory footprint

ARCHES: methane_rmcrt test is broken due to issues with trunk code. Good luck Todd, let us know if you need another set of eyes.
WASATCH: RMCRT-Burns-Christon UDA comparison fails as the trunk input file specifies an unused variable to store. Branch code has fixed this.
-"compare_uda -ignoreVariable "VRFlux" rmcrt-burns-christon.uda.trunk rmcrt-burns-christon.uda.branch" compares exactly.
-just need to remove <save label="VRFlux"/> from original input and regenerate GS for this test.

Please let us know if anyone sees any residual issues with this commit. We are standing by to deal with any fallout.

24 lines of code changed in 2 files:

  • CCA/Components/Arches/TransportEqns: ScalarEqn.h (+24)
jthornoc 2017-05-30 13:45 Rev.: 56583

Ensure that enthalpy is updated at the correct location when heat loss
is a parameter in the table.

Add some warnings to help guide the user.

62 lines of code changed in 3 files:

  • CCA/Components/Arches/TransportEqns: EqnBase.h (+1 -1), ScalarEqn.h (+61 -61)
derekhar 2017-05-12 14:46 Rev.: 56514

Repair regression tests from over stripping code in commit #56509.

2 lines of code changed in 1 file:

  • CCA/Components/Arches/TransportEqns: DQMOMEqn.cc (+2)
derekhar 2017-05-10 17:04 Rev.: 56509

Clean-up of early functor/kokkos work that was reformulated.

0 lines of code changed in 1 file:

  • CCA/Components/Arches/TransportEqns: DQMOMEqn.cc (-38)
jas 2017-04-20 13:20 Rev.: 56454

Update copyright.

1 lines of code changed in 1 file:

  • CCA/Components/Arches/TransportEqns: ScalarEqn.cc (+1 -1)
derekhar 2017-04-05 17:20 Rev.: 56392

Updated absorption property model to be more modular.
The primary motivation of this commit is to progress towards removing dependence on radprops.
Also, this commit cleaned up years of "hacks" aimed at quickly adapting the code to fit the needs of the center.
This commit will change every radiation test, most of which are due to round-off differences.
In some instances, a bug of using inconsistent data-warehouses was also present.

8 lines of code changed in 1 file:

  • CCA/Components/Arches/TransportEqns: DQMOMEqn.cc (+8 -8)
dav 2017-02-24 00:50 Rev.: 56249


Mostly cosmetic changes, and preparing for removing a hacked out warning when we moved to C++ 11.
These changes have passed the local RT on Baja.

- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').

- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.

- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
- Use {} for if/else clauses even if they are only one line long.

- Swatted some evil endls. (Use "\n")

- Alphabetize #includes and remove some unneeded ones.

- Add in Copyright notice to some files that were missing it.

M CCA/Components/Arches/Arches.cc
M CCA/Components/Arches/ArchesLabel.cc

- Fix code so that "found_role = true" is not repeated a hundred times... As I tell my CS 1000 students, if it
happens in every branch of the 'if' statement, it should be moved out of all of them.

M CCA/Components/Arches/BoundaryCond_new.cc
M CCA/Components/Arches/BoundaryCondition.cc
M CCA/Components/Arches/BoundaryConditions/BoundaryConditionFactory.cc
M CCA/Components/Arches/BoundaryConditions/BoundaryFunctors.h
M CCA/Components/Arches/BoundaryConditions/HandOff.h
M CCA/Components/Arches/CQMOM.cc
M CCA/Components/Arches/ChemMix/ColdFlow.cc
M CCA/Components/Arches/ChemMix/MixingRxnModel.cc
M CCA/Components/Arches/ChemMix/TableLookup.cc
M CCA/Components/Arches/CoalModels/CharOxidationSmith.cc
M CCA/Components/Arches/CoalModels/Deposition.cc
M CCA/Components/Arches/CoalModels/EnthalpyShaddix.cc
M CCA/Components/Arches/CoalModels/HeatTransfer.cc
M CCA/Components/Arches/CoalModels/KobayashiSarofimDevol.cc
M CCA/Components/Arches/CoalModels/SimpleHeatTransfer.cc
M CCA/Components/Arches/DQMOM.cc
M CCA/Components/Arches/ExplicitSolver.cc
M CCA/Components/Arches/IntrusionBC.cc
M CCA/Components/Arches/IntrusionBC.h
M CCA/Components/Arches/LagrangianParticles/LagrangianParticleFactory.cc
M CCA/Components/Arches/MomentumSolver.cc
M CCA/Components/Arches/MomentumSolver.h
M CCA/Components/Arches/ParticleModels/CQMOMSourceWrapper.cc
M CCA/Components/Arches/ParticleModels/ParticleModelFactory.cc
M CCA/Components/Arches/ParticleModels/ParticleTools.h
M CCA/Components/Arches/ParticleModels/ShaddixEnthalpy.h
M CCA/Components/Arches/PressureSolverV2.cc
M CCA/Components/Arches/PropertyModels/RadProperties.cc
M CCA/Components/Arches/PropertyModelsV2/DensityPredictor.cc
M CCA/Components/Arches/PropertyModelsV2/PropertyModelFactoryV2.cc
M CCA/Components/Arches/PropertyModelsV2/VariableStats.cc
M CCA/Components/Arches/Radiation/DORadiationModel.cc
M CCA/Components/Arches/Radiation/RadPropertyCalculator.cc
M CCA/Components/Arches/Radiation/RadPropertyCalculator.h
M CCA/Components/Arches/SourceTerms/DORadiation.cc
M CCA/Components/Arches/SourceTerms/IntrusionInlet.h
M CCA/Components/Arches/SourceTerms/PCTransport.cc
M CCA/Components/Arches/SourceTerms/SourceTermFactory.cc
M CCA/Components/Arches/Transport/ComputePsi.h
M CCA/Components/Arches/Transport/KFEUpdate.h
M CCA/Components/Arches/Transport/KMomentum.h
M CCA/Components/Arches/Transport/KScalarRHS.h
M CCA/Components/Arches/Transport/TransportFactory.cc
M CCA/Components/Arches/TransportEqns/CQMOMEqn.cc
M CCA/Components/Arches/TransportEqns/CQMOM_Convection.cc
M CCA/Components/Arches/TransportEqns/DQMOMEqn.cc
M CCA/Components/Arches/TransportEqns/DQMOMEqnFactory.cc
M CCA/Components/Arches/TransportEqns/ScalarEqn.cc
M CCA/Components/Arches/UPSHelper.h
M CCA/Components/Arches/Utility/InitializeFactory.cc
M CCA/Components/Arches/Utility/TaskAlgebra.h
M CCA/Components/Arches/Utility/UtilityFactory.cc
M CCA/Components/Arches/WBCHelper.cc
M CCA/Components/Arches/WallHTModels/WallModelDriver.cc

- See above for list of updates.

34 lines of code changed in 6 files:

  • CCA/Components/Arches/TransportEqns: CQMOMEqn.cc (+8 -8), CQMOM_Convection.cc (+6 -6), DQMOMEqn.cc (+17 -10), DQMOMEqnFactory.cc (+1 -1), ScalarEqn.cc (+2 -2)
jthornoc 2017-02-15 15:00 Rev.: 56229

Allow a source term to produce multiple labels, which may correspond to
multiple sources. This changes, somewhat, a fundamental assumption in
the original design of the source term factory/base in that it would
only produce one output variable. As such, it has some *tiny* flavor of
hackiness but should, for the most part, be just fine for this
soon-to-be-outdated code.

With this new feature, the Brown Soot model has been condensed into a
single source term file, producing four different sources.

15 lines of code changed in 3 files:

  • CCA/Components/Arches/TransportEqns: DQMOMEqn.cc (+4 -9), EqnBase.h (+1), ScalarEqn.cc (+10 -10)
Generated by StatSVN 0.7.0