Directory CCA/Components/Arches/ChemMix/

Total Files:
14
Deleted Files:
0
Lines of Code:
5038

[root]/CCA/Components/Arches/ChemMix

Lines of Code

CCA/Components/Arches/ChemMix/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 86 (100.0%) 1694 (100.0%) 19.6
jthornoc 50 (58.1%) 1401 (82.7%) 28.0
derekhar 8 (9.3%) 255 (15.1%) 31.8
dav 4 (4.7%) 22 (1.3%) 5.5
jas 19 (22.1%) 12 (0.7%) 0.6
jholmen 2 (2.3%) 4 (0.2%) 2.0
allen 3 (3.5%) 0 (0.0%) 0.0

Most Recent Commits

derekhar 2017-12-18 18:36 Rev.: 57474

Rips out the Chemistry Table from arches so that it can be used as a standAlone object. This will be useful going forward for multiple tables, which often need different interfaces.

122 lines of code changed in 4 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (new), ClassicTableInterface.h (new)
jholmen 2017-11-21 23:41 Rev.: 57328

* Added build system support for Kokkos.
* Added /src/include/sci_defs/kokkos_testdefs.h.in.

This commit allows --with-kokkos=DIR to be used to point to a Kokkos installation instead of CXXFLAGS and LDFLAGS.

Note, files using #define UINTAH_ENABLE_KOKKOS must now add #include <sci_defs/kokkos_defs.h> to manage this macro.

4 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+2), ClassicTableInterface.h (+2)
allen 2017-11-17 15:25 Rev.: 57310

added needed / removed unneeded include file

0 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: MixingRxnModel.cc (new)
jthornoc 2017-10-09 16:43 Rev.: 57097

Dynamic model implemenation. More commits to follow.

Also added a taskController container.

20 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: TableLookup.cc (new)
jthornoc 2017-06-02 12:25 Rev.: 56599

Update warning.

3 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+3 -3)
jthornoc 2017-06-02 12:25 Rev.: 56598

Cleaning up print statements.

22 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+22 -12)
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.

32 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+32 -1)
jthornoc 2017-04-21 16:06 Rev.: 56471

Changed the DO_RadProps RT problem to run on 3 cores to be consistent
with numbers of patches in the UPS. This will cause the test to fail.

I have added the ability to set the initial wall temperature using the <Grid><BoundaryCondition> node in the
input file (just like we set BC for any other variable). This temperature will remain constant at that value
unless one turns on the wallHT model, in which case the walls will then heat or cool depending on the local
heat fluxes, etc. Currently, the only valid condition is the Dirichlet condition.
We could add others, including functions or time/space etc as needed.
Added the OFC4_initial_hotwall test to demonstrate the capability.

96 lines of code changed in 3 files:

  • CCA/Components/Arches/ChemMix: TableLookup.cc (+80 -1), TableLookup.h (+16)
jas 2017-04-20 13:20 Rev.: 56454

Update copyright.

12 lines of code changed in 19 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+1 -1), ClassicTableInterface.h (+1 -1), ColdFlow.cc (+1 -1), ColdFlow.h (new), ConstantProps.cc (+1 -1), ConstantProps.h (new), MixingRxnModel.cc (+1 -1), MixingRxnModel.h (new), TabPropsInterface.cc (new), TabPropsInterface.h (+1 -1), TableLookup.cc (+1 -1), TableLookup.h (+1 -1)
allen 2017-04-18 21:09 Rev.: 56445

removed needless incude of time.h

0 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: MixingRxnModel.cc (-1)
jthornoc 2017-04-14 14:50 Rev.: 56435

Fix a previous failed merge attempt and add dissipation rate calc. to
the turb model.

6 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: ChemHelper.h (new)
jthornoc 2017-03-15 12:02 Rev.: 56330

Adding access to the table keys through the ChemHelper.
This will prevent passing the entire table around when one just needs a
small subset of information.

13 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: ChemHelper.h (+12), ClassicTableInterface.cc (+1)
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.

19 lines of code changed in 3 files:

  • CCA/Components/Arches/ChemMix: ColdFlow.cc (+2 -3), MixingRxnModel.cc (+16 -18), TableLookup.cc (+1 -2)
dav 2017-01-31 17:12 Rev.: 56204

M configure
M configure.ac

- If the user specifies a boost directory, force the compiler to ignore system dirs so that we don't
accidentally find the wrong library.

M CCA/Components/Arches/ChemMix/TableLookup.h
M CCA/Components/Arches/Task/TaskFactoryBase.h

- Remove compiler warnings, use better white space/indentation.
- We (long ago) decided to use more than 80 columns to make code more readable.

3 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: TableLookup.h (+3 -3)
jthornoc 2017-01-19 16:43 Rev.: 56192

Insert a warning if the Properties tag isn't found.

29 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: TableLookup.cc (+29 -22)
jthornoc 2017-01-19 16:43 Rev.: 56189

Warning.

0 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: MixingRxnModel.h (-2)
jthornoc 2017-01-19 16:43 Rev.: 56188

Turning on a table lookup capability in the Kokkos Solver which force a
little more generality to the table lookup mechanism.

43 lines of code changed in 3 files:

  • CCA/Components/Arches/ChemMix: ColdFlow.cc (+1 -4), MixingRxnModel.cc (+38 -23), MixingRxnModel.h (+4 -4)
jthornoc 2017-01-19 16:43 Rev.: 56187

Warnings.

0 lines of code changed in 4 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (-1), ColdFlow.cc (-1), ConstantProps.cc (-1), MixingRxnModel.cc (-1)
jthornoc 2017-01-19 16:43 Rev.: 56186

Fix some warnings.

65 lines of code changed in 5 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+10), ColdFlow.cc (+17), ConstantProps.cc (+8), MixingRxnModel.cc (+30 -2), TabPropsInterface.cc (-1)
jthornoc 2017-01-19 16:42 Rev.: 56181

Remove redundant spec for the table input.
Update the script to update the input files.

3 lines of code changed in 3 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+1 -1), ColdFlow.cc (+1 -1), ConstantProps.cc (+1 -1)
jthornoc 2017-01-19 16:42 Rev.: 56179

Fix a bug in TableLookup and fix bugs in the input files that were
created with the script I committed earlier.

1 lines of code changed in 1 file:

  • CCA/Components/Arches/ChemMix: TableLookup.cc (+1 -1)
jthornoc 2017-01-19 16:41 Rev.: 56177

This moves the table(s) to a new home (TableLookup) from Properties.cc.
Interface for the input file has changed. The script in the
inputs/ARCHES/scripts/update_table_entry.py directory will automatically
fix the input files.

Update to the ups files follows.

332 lines of code changed in 7 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+6 -7), ColdFlow.cc (+10 -11), ConstantProps.cc (+7 -5), MixingRxnModel.cc (+7 -7), MixingRxnModel.h (+36 -15), TableLookup.cc (+180), TableLookup.h (+86)
jthornoc 2017-01-19 16:41 Rev.: 56176

This pulls ArchesLabels out of the table interface.

736 lines of code changed in 13 files:

  • CCA/Components/Arches/ChemMix: ChemHelper.h (+24 -15), ClassicTableInterface.cc (+31 -60), ClassicTableInterface.h (+4 -6), ColdFlow.cc (+277 -302), ColdFlow.h (+35 -39), ConstantProps.cc (+126 -146), ConstantProps.h (+32 -36), MixingRxnModel.cc (+29 -8), MixingRxnModel.h (+14 -11), TabPropsInterface.cc (+161 -179), TabPropsInterface.h (+2 -6), sub.mk (+1 -2)
derekhar 2017-01-09 15:53 Rev.: 56162

Removed push_back calls in inner loop.
Implemented lambda and parallel_for for inner cells in Arches-Table lookup.

34 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+33 -31), ClassicTableInterface.h (+1)
derekhar 2017-01-04 16:33 Rev.: 56157

Added compiler directives to use kokkos view objects in the Arches table look-up.

99 lines of code changed in 2 files:

  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+27 -9), ClassicTableInterface.h (+72 -10)
Generated by StatSVN 0.7.0