[root]/CCA/Components/Arches/Utility
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 116 (100.0%) | 1500 (100.0%) | 12.9 |
jthornoc | 94 (81.0%) | 1027 (68.5%) | 10.9 |
ohdiazi | 17 (14.7%) | 310 (20.7%) | 18.2 |
bisaac | 1 (0.9%) | 87 (5.8%) | 87.0 |
dav | 3 (2.6%) | 75 (5.0%) | 25.0 |
jas | 1 (0.9%) | 1 (0.1%) | 1.0 |
* Some naming convention updates
* Add property evaluation to the cold flow properties in the initialization
* Updated a bunch of input files to now use state properties
10 lines of code changed in 4 files:
Parse the density values from the StateProperty spec rather than
requiring that the user re-enter it.
66 lines of code changed in 2 files:
Fixing warning and taylorgreen3D arches spec
4 lines of code changed in 1 file:
fixing BC for FX group of eqns
1 lines of code changed in 1 file:
Adding arches_spec. Fixing solver pressure, drhodt, compute density
3 lines of code changed in 2 files:
fixing taylor problem
0 lines of code changed in 2 files:
Fixing ups.
57 lines of code changed in 3 files:
adding a gropu of task in initialization factory
7 lines of code changed in 1 file:
initialization task for Shunn problems
238 lines of code changed in 7 files:
Warning.
12 lines of code changed in 1 file:
Adding missing files.
162 lines of code changed in 2 files:
Adding a few initializations.
Fix warnings.
200 lines of code changed in 6 files:
Updated the FOWY devol model to include linear increasing yield above 1800K. This will break all coal cases using FOWY.
87 lines of code changed in 1 file:
Cleaning up some warnings.
1 lines of code changed in 2 files:
Actually add the FileInit files.
185 lines of code changed in 2 files:
Adding a generic field initializer from file which formatting should
follow:
i j k value
or:
i j k vec0 vec1 vec2
where vec is a vector.
28 lines of code changed in 1 file:
Renaming ijk macros to avoid boost clash.
3 lines of code changed in 2 files:
This commit breaks the kokkos scalar tests.
* Template ConvectionHelper to enable temporary variable use in this function.
* Changed up some of the macros to have better (more descriptive) names
* Added a new patch range macro
* Packaged the momentum updates into a smaller package
* register_variable now passes a bool to indicate if the variable is temp or not. If temp, it avoids the registration
3 lines of code changed in 2 files:
More API change.
46 lines of code changed in 40 files:
Arches task interface API changed to pass packed_task boolean.
24 lines of code changed in 18 files:
Needed to account for periodic/nonperiodic BCs in this case. This will
change the checkpoint variables in all non-periodic cases.
2 lines of code changed in 1 file:
Still had this incorrect. The grid spacing should now be fixed.
1 lines of code changed in 1 file:
Fix the grid coordinates for cases when the domain does not start at
zero.
27 lines of code changed in 1 file:
Update copyright.
1 lines of code changed in 1 file:
For TaskAlgebra:
* Created a temp variable that is initialized to zero and can be used as an extra degree of freedom
* Allow for an operation to sum into the dep variable (dep = dep + f(ind1,[ind2]) )
* Created an “EQUALS” operation so that dep = ind1
also:
* Update the wall_thermal_resitance to use the changes in TaskAlgebra
147 lines of code changed in 1 file:
Add some more flexibility to the TaskAlgebra method so that
1) One can create a temp variable on-the-fly
2) One can use the temp variable as an ind
3) Get everthing modifiable(even if it is not), which silences a warning that the
TaskInterface is throwing in cases when the user is using the same
variable as a dep and ind.
Now, using the above improvements, create a taskAlgebra task on-the-fly
based on user input for the total effective wall resistance, which is
really just a sum of discrete resistances.
86 lines of code changed in 1 file:
- Refinements on the new scheduling interface.
- Arches tasks can now be packed when appropriate into super tasks.
- Catching more errors in scheduling when packed or unpacked tasks are
present to prevent user from scheduling variable needs incorrectly.
18 lines of code changed in 6 files:
Merge with trunk.
6 lines of code changed in 1 file:
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.
75 lines of code changed in 3 files: