[root]/CCA/Components/Arches/CoalModels
fortran
(1 files, 37 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 139 (100.0%) | 4022 (100.0%) | 28.9 |
bisaac | 27 (19.4%) | 2308 (57.4%) | 85.4 |
jthornoc | 37 (26.6%) | 921 (22.9%) | 24.8 |
derekhar | 20 (14.4%) | 493 (12.3%) | 24.6 |
dav | 7 (5.0%) | 184 (4.6%) | 26.2 |
allen | 30 (21.6%) | 92 (2.3%) | 3.0 |
jas | 17 (12.2%) | 22 (0.5%) | 1.2 |
tsaad | 1 (0.7%) | 2 (0.0%) | 2.0 |
Adding initial implementation of DQMOM in the
Arches/Kokkos/TaskInterface mode.
This still needs some work...
21 lines of code changed in 2 files:
removed the delta T label from the shared state and began removing the shared state where possible
25 lines of code changed in 25 files:
update to move to a application common class and remove the shared state
61 lines of code changed in 3 files:
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.
14 lines of code changed in 5 files:
Remove a pow and if statement inside a tight loop.
24 lines of code changed in 1 file:
Fixed hi yield bug which occurs when temperatues exceed Tbp_graphite.
1 lines of code changed in 1 file:
Updated the FOWY devol model to include linear increasing yield above 1800K. This will break all coal cases using FOWY.
14 lines of code changed in 3 files:
Fixed a bug related to the deposition model. This was setting the destruction rate to zero. This will break deposition regression tests.
6 lines of code changed in 1 file:
Use C++11 hashmap.
0 lines of code changed in 1 file:
Remove an empty model.
Minor beautification.
33 lines of code changed in 5 files:
SimpleBirth->BirthDeath
10 lines of code changed in 6 files:
SimpleBirth->BirthDeath
Death is only on when wall deposition is occurring. It is auto-parsed
from the input file and turned on for the user.
471 lines of code changed in 5 files:
Actually added affect of dstrc src on the birth term.
2 lines of code changed in 1 file:
Moved deposition destruction rates into simple birth. Modified 1GW test to make them run with the combined model.
102 lines of code changed in 2 files:
This commit movies particle temperature, density, and total number density to which_dw instead of new_dw, for the CoalModel files only.
27 lines of code changed in 9 files:
Fixed an issue related to char-oxidation clipping with a limiting oxidizer. This commit changes OFC_smith2016 and its restart within machine precision.
10 lines of code changed in 1 file:
Looks like a missing delete was causing a memory failure.
3 lines of code changed in 1 file:
Fixed an issue related to char-oxidation clipping with a limiting oxidizer. This commit shouldn't impact regression tests.
10 lines of code changed in 1 file:
Removed clipping bug in FOWY, and gas-integration bugs that were making it so we couldn't run second-order. This commit will break pcoal_drag (second order), coal_RadPropsPlanck (second order), and partMassFlow (clipping).
0 lines of code changed in 1 file:
Fixed the MW for CO2 in the OFC4_smith.ups regression test, and added the impact of gasification reactions on the heat of reaction for char oxidation. This will break OFC4_smith
32 lines of code changed in 3 files:
Update copyright.
8 lines of code changed in 11 files:
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.
15 lines of code changed in 1 file:
replace !=0 with != nullptr when checking the validity of ProbleSpecP. This was causing compilation issues on my mac.
2 lines of code changed in 1 file:
This commit adds particle shrinkage and swelling, modifies the density function to compute the literal density with dqmom, and makes input files consistent with coal_density. Shouldn't change any answers.
848 lines of code changed in 7 files:
Adding the new char oxidation model with the particle shrinkage soure-term, and additional functions within ParticleTools. This should not impact regression tests.
1328 lines of code changed in 7 files:
Added pressure to oxidationSmith. Also corrected rawcoal computed for use in rate clipping.
25 lines of code changed in 2 files:
Changed convergence tolerance in charoxy_smith to use a relative tolerance, based on fastest reaction.
5 lines of code changed in 1 file:
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.
9 lines of code changed in 1 file:
add min/max bounds to the in-situ vars, fixed handle checks
6 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.
184 lines of code changed in 7 files:
Fixed 3x3 matrix inversion for char oxidation model. Shouldn't change ansers.
59 lines of code changed in 2 files:
Remove redundant spec for the table input.
Update the script to update the input files.
5 lines of code changed in 1 file:
This pulls ArchesLabels out of the table interface.
214 lines of code changed in 3 files:
More optimizations. This will require an update for the RT, OFC4_smith.
12 lines of code changed in 3 files:
Removed unneeded function evaluation of char reaction rate in inner loop.
8 lines of code changed in 1 file:
Switched core coal reaction and energy models for coal to use lambdas.
324 lines of code changed in 7 files:
Fixed index ambiguity in CharOxiSmith.
2 lines of code changed in 1 file:
Changed iterator in CharOxidationSmith to lambda.
67 lines of code changed in 1 file:
Particle drag model placed in a lambda. Replaced if-statement with functor in inner loop.
35 lines of code changed in 3 files: