[root]/CCA/Components/OnTheFlyAnalysis
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 173 (100.0%) | 974 (100.0%) | 5.6 |
allen | 132 (76.3%) | 862 (88.5%) | 6.5 |
dav | 9 (5.2%) | 77 (7.9%) | 8.5 |
jas | 29 (16.8%) | 26 (2.7%) | 0.8 |
ahumphrey | 2 (1.2%) | 8 (0.8%) | 4.0 |
harman | 1 (0.6%) | 1 (0.1%) | 1.0 |
cleaned up the dependency checks and removed the double negative directives
7 lines of code changed in 2 files:
standardized the error output for the factories
0 lines of code changed in 2 files:
added if defs checks
36 lines of code changed in 1 file:
added code to build analysis modules based on application dependency
32 lines of code changed in 5 files:
Broke the large libs into smaller libraries allowing of the removal the ModelFactory Component and moved all application code from core
35 lines of code changed in 14 files:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
371 lines of code changed in 43 files:
Cleanup of the Scheduler to use ports for all components
11 lines of code changed in 6 files:
removed the delta T label from the shared state and began removing the shared state where possible
182 lines of code changed in 26 files:
update to move to a application common class and remove the shared state
31 lines of code changed in 4 files:
added support for saving per patch data
25 lines of code changed in 2 files:
removed spurious header file
0 lines of code changed in 1 file:
added processor node identification to the proc group, also cleaned up method names
10 lines of code changed in 7 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.
0 lines of code changed in 3 files:
added material basis for computers and requires
19 lines of code changed in 1 file:
Added some bullet proofing
14 lines of code changed in 1 file:
Corrected the time and dw put with material
22 lines of code changed in 2 files:
Disable the radiometer. There's a circular dependency and OSX doesn't compile with it enabled.
1 lines of code changed in 1 file:
Reintegration of incite_dev branch. Improvements/Features/Optimizations include (but not limited too):
1.) Temporal scheduling, e.g. support for multiple primary task graphs (not w-cycle)
2.) Significantly improved task graph compilation times for multi-level RMCRT at large core/patch counts
3.) GPU super patch support
4.) Highly optimized RMCRT GPU kernels
5.) Significant reduction in infrastructure memory footprint
ARCHES: methane_rmcrt test is broken due to issues with trunk code. Good luck Todd, let us know if you need another set of eyes.
WASATCH: RMCRT-Burns-Christon UDA comparison fails as the trunk input file specifies an unused variable to store. Branch code has fixed this.
-"compare_uda -ignoreVariable "VRFlux" rmcrt-burns-christon.uda.trunk rmcrt-burns-christon.uda.branch" compares exactly.
-just need to remove <save label="VRFlux"/> from original input and regenerate GS for this test.
Please let us know if anyone sees any residual issues with this commit. We are standing by to deal with any fallout.
8 lines of code changed in 2 files:
commented out example code
5 lines of code changed in 1 file:
removed debug statement
6 lines of code changed in 2 files:
clean up of the output / checkpint timing and added a misc timing option
26 lines of code changed in 3 files:
Update copyright.
26 lines of code changed in 26 files:
Removed Time.h and replaced with Timers.hpp
18 lines of code changed in 8 files:
add min/max bounds to the in-situ vars, fixed handle checks
12 lines of code changed in 1 file:
Continuation of commit r56249 - this time for MPM, Models, OnTheFlyAnalysis.
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, align variablesa.
- 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.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/FVM/ElectrostaticSolve.cc
M CCA/Components/FVM/FVMMaterial.cc
M CCA/Components/MPM/AMRMPM.cc
M CCA/Components/MPM/ConstitutiveModel/MPMMaterial.cc
M CCA/Components/MPM/Contact/ContactFactory.cc
M CCA/Components/MPM/ImpMPM.cc
M CCA/Components/MPM/MPMCommon.cc
M CCA/Components/MPM/MPMFlags.cc
M CCA/Components/MPM/PhysicalBC/LoadCurve.h
M CCA/Components/MPM/PhysicalBC/MPMPhysicalBCFactory.cc
M CCA/Components/MPM/PhysicalBC/PolynomialData.cc
M CCA/Components/MPM/SerialMPM.cc
M CCA/Components/MPM/ShellMPM.cc
M CCA/Components/MPM/ThermalContact/ThermalContactFactory.cc
M CCA/Components/Models/FluidsBased/AdiabaticTable.cc
M CCA/Components/Models/FluidsBased/ArchesTable.cc
M CCA/Components/Models/FluidsBased/Mixing.cc
M CCA/Components/Models/FluidsBased/NonAdiabaticTable.cc
M CCA/Components/Models/FluidsBased/PassiveScalar.cc
M CCA/Components/Models/FluidsBased/SimpleRxn.cc
M CCA/Components/Models/FluidsBased/TableFactory.cc
M CCA/Components/Models/FluidsBased/flameSheet_rxn.cc
M CCA/Components/Models/HEChem/DDT0.cc
M CCA/Components/Models/HEChem/DDT1.cc
M CCA/Components/Models/HEChem/JWLpp.cc
M CCA/Components/Models/HEChem/MesoBurn.cc
M CCA/Components/Models/HEChem/Simple_Burn.cc
M CCA/Components/Models/HEChem/Steady_Burn.cc
M CCA/Components/Models/HEChem/Unsteady_Burn.cc
M CCA/Components/Models/HEChem/ZeroOrder.cc
M CCA/Components/Models/ModelFactory.cc
M CCA/Components/Models/Radiation/RMCRT/Radiometer.cc
M CCA/Components/Models/SolidReactionModel/SolidReactionModel.cc
M CCA/Components/OnTheFlyAnalysis/1stLawThermo.cc
M CCA/Components/OnTheFlyAnalysis/AnalysisModuleFactory.cc
M CCA/Components/OnTheFlyAnalysis/MinMax.cc
M CCA/Components/OnTheFlyAnalysis/containerExtract.cc
M CCA/Components/OnTheFlyAnalysis/lineExtract.cc
M CCA/Components/OnTheFlyAnalysis/momentumAnalysis.cc
M CCA/Components/OnTheFlyAnalysis/particleExtract.cc
M CCA/Components/OnTheFlyAnalysis/planeExtract.cc
M CCA/Components/OnTheFlyAnalysis/statistics.cc
77 lines of code changed in 9 files: