[root]/CCA/Components/Arches/WallHTModels
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 41 (100.0%) | 1257 (100.0%) | 30.6 |
bisaac | 26 (63.4%) | 1083 (86.2%) | 41.6 |
jthornoc | 3 (7.3%) | 78 (6.2%) | 26.0 |
milo | 4 (9.8%) | 55 (4.4%) | 13.7 |
dav | 1 (2.4%) | 28 (2.2%) | 28.0 |
allen | 6 (14.6%) | 12 (1.0%) | 2.0 |
jas | 1 (2.4%) | 1 (0.1%) | 1.0 |
removed the delta T label from the shared state and began removing the shared state where possible
11 lines of code changed in 4 files:
removed spurious header file
0 lines of code changed in 1 file:
Code cleanup.
56 lines of code changed in 1 file:
Updated illinois 6 ash data base.
7 lines of code changed in 1 file:
Added a new coal for the emissivity model.
15 lines of code changed in 1 file:
Removed print statement.
0 lines of code changed in 1 file:
Added illinois 6 ash to the new emissivity model.
25 lines of code changed in 1 file:
Added coordination number to emissivity model. This doesn't impact regression tests.
81 lines of code changed in 1 file:
Added a minimum size for the particles in the case where there is not a flux of particles to the wall. Doesn't impact regression tests.
36 lines of code changed in 1 file:
Updated the wall ht model to account for liquid slag heating above the ash fluid temperature. This will break 1GW_RT and 1GW_em_tc.
230 lines of code changed in 2 files:
Added additional check for particle size in the pokluda emissivity model.
2 lines of code changed in 1 file:
Added German lignite to the new emissivity model.
12 lines of code changed in 1 file:
Added regime 3 back into the wall ht model. This shouldn't impact regression tests.
10 lines of code changed in 1 file:
Added new emissivity model. This will not impact any regression tests.
74 lines of code changed in 2 files:
Added changes to wallHT model to make regime 3 maintain ash fluid temperature. This commit shouldn't change answers.
30 lines of code changed in 2 files:
Fixed porosity bug in thermal conductivity model.
4 lines of code changed in 1 file:
This commit removes ash_density from the deposition model and computes it from the specified ash bulk density and sb layer porosity. This commit also makes the relaxation coefficient consistent between all wall ht models and the deposition model. Due to the changes the answers in following RT tests will change: 1GW_RT, 1GW_em_tc, OFC4c, OFC4_smith, and OFC4_hybrid.
31 lines of code changed in 2 files:
Now the thermal conductivity of the respecitve ash layers will be computed at the layers central average temperature. This commit also evaluates the t.c. upfront like the emissivity. This commit will change the answers for the 1GW_RT and 1GW_em_tc RT tests.
61 lines of code changed in 2 files:
Added ash fusion temperatures to ParticleProperties. This shouldn't impact regression tests.
4 lines of code changed in 2 files:
Modified regression coefficients for Illinois No6. This shouldn't impact regression tests
9 lines of code changed in 1 file:
Added Illinois No 6 to the coal-ash database. This shouldn't impact regression tests
18 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.
18 lines of code changed in 1 file:
Update copyright.
1 lines of code changed in 1 file:
Removed Time.h and replaced with Timers.hpp
1 lines of code changed in 1 file:
Fixed a bug in the new tc model. This won't change any answers.
1 lines of code changed in 1 file:
added zeroth order porosity model, it doesn't change any answers
10 lines of code changed in 1 file:
added german_lignite to ash database for emissivity calculations
18 lines of code changed in 1 file:
Added Hadley thermal conductivity model. This will change the answers for 1GW_RT, however these changes are expected. Also cleanup an unused flag in 1GW_RT.ups.
257 lines of code changed in 2 files:
Added the new ash-emissivity model. This will break 1GW_RT because we have added new variables. The values saved in the .uda are unchanged.
207 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.
28 lines of code changed in 1 file: