[root]/CCA/Components/Arches/ChemMix
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 |
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:
* 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:
added needed / removed unneeded include file
0 lines of code changed in 2 files:
Dynamic model implemenation. More commits to follow.
Also added a taskController container.
20 lines of code changed in 2 files:
Update warning.
3 lines of code changed in 1 file:
Cleaning up print statements.
22 lines of code changed in 1 file:
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:
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:
Update copyright.
12 lines of code changed in 19 files:
removed needless incude of time.h
0 lines of code changed in 1 file:
Fix a previous failed merge attempt and add dissipation rate calc. to
the turb model.
6 lines of code changed in 2 files:
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:
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:
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:
Insert a warning if the Properties tag isn't found.
29 lines of code changed in 1 file:
Warning.
0 lines of code changed in 1 file:
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:
Warnings.
0 lines of code changed in 4 files:
Fix some warnings.
65 lines of code changed in 5 files:
Remove redundant spec for the table input.
Update the script to update the input files.
3 lines of code changed in 3 files:
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:
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:
This pulls ArchesLabels out of the table interface.
736 lines of code changed in 13 files:
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:
Added compiler directives to use kokkos view objects in the Arches table look-up.
99 lines of code changed in 2 files: