Directory CCA/Components/Wasatch/Expressions/

Total Files:
53
Deleted Files:
0
Lines of Code:
11425

[root]/CCA/Components/Wasatch/Expressions
                    directory in repo BoundaryConditions (21 files, 3346 lines)
                    directory in repo EmbeddedGeometry (7 files, 913 lines)
                    directory in repo MMS (6 files, 2448 lines)
                    directory in repo PBE (11 files, 1909 lines)
                        directory in repo Precipitation (15 files, 2220 lines)
                    directory in repo Particles (1 files, 30 lines)
                    directory in repo PostProcessing (13 files, 1754 lines)
                    directory in repo TarAndSoot (9 files, 876 lines)
                    directory in repo Turbulence (13 files, 2100 lines)

Lines of Code

CCA/Components/Wasatch/Expressions/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 148 (100.0%) 609 (100.0%) 4.1
mike.hansen 35 (23.6%) 504 (82.8%) 14.4
jas 89 (60.1%) 53 (8.7%) 0.5
mokbel.karam 1 (0.7%) 20 (3.3%) 20.0
mcconnell 4 (2.7%) 18 (3.0%) 4.5
harman 15 (10.1%) 12 (2.0%) 0.8
allen 4 (2.7%) 2 (0.3%) 0.5

Most Recent Commits

mcconnell 2018-09-11 11:30 Rev.: 58639

exact MMS mixture fraction is now calculated if ForceOnGraph is applied to f_exact. Diffusion coefficient ofr 2D MMS now uses the correct density (STATE_NP1 instead of STATE_N). This might need to be reverted in order to not diff with the varden-2D-mms test.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (changed)
mcconnell 2018-09-11 11:29 Rev.: 58631

fixed a bug

3 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+3 -3)
mcconnell 2018-09-11 11:29 Rev.: 58627

Changes required for running the 2D-mms variable density test.

15 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+15 -2)
mike.hansen 2018-05-14 16:01 Rev.: 58226

- adds a block-implicit pseudotransient continuation method for compressible, multicomponent gases or compressible, calorically perfect gases, or for scalar advection-diffusion-reaction equations with a passive velocity field
- enable fixed-point with local dual time step
- add debug stream for dual time matrix info
- clean up some of the info containers and dual time maps

242 lines of code changed in 17 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+13 -1), ConvectiveFlux.cc (+30), ConvectiveFlux.h (new), DiffusiveVelocity.cc (+19), DiffusiveVelocity.h (new), ExprAlgebra.cc (+37), ExprAlgebra.h (new), ScalarRHS.cc (+125 -11), ScalarRHS.h (new)
harman 2018-05-03 09:18 Rev.: 58212

Removed SolverParameters tangled web from the components/applications. The each solver "owns" the parameters
and the component/application set the parameters via the solver, solver->getParameters()->SetSomething()

- Added virtual function getParameters()

- Removed tabs and other formatting.

- Rename HypreSolver2Params -> HypreParams

- Moved CG and Direct constructors/destructors code so there is consistency in code layout between the different solvers.




9 lines of code changed in 12 files:

  • CCA/Components/Wasatch/Expressions: DORadSolver.cc (+1 -6), DORadSolver.h (new), PoissonExpression.cc (new), PoissonExpression.h (+1 -6), Pressure.cc (+3 -7), Pressure.h (new)
harman 2018-04-16 10:34 Rev.: 58118

Changed variable name modfies_hypre -> isFirstSolve and made a small change in the scheduling logic.

The hyper_solver_label was never modified. The scheduling logic changed after the first pass
through the solver, thus the name change.

3 lines of code changed in 3 files:

  • CCA/Components/Wasatch/Expressions: DORadSolver.cc (+1 -1), PoissonExpression.cc (+1 -1), Pressure.cc (+1 -1)
allen 2018-04-02 17:54 Rev.: 58034

removed the shared state from the radiation model and re-invoked the in-situ

2 lines of code changed in 4 files:

  • CCA/Components/Wasatch/Expressions: RadiationSource.cc (new), RadiationSource.h (new)
mokbel.karam 2018-03-29 13:40 Rev.: 58015

fixed 1D MMS BCs for Variable Density.
-This line, and those below, will be ignored--

M src/CCA/Components/Wasatch/Expressions/BasicExprBuilder.cc
M src/CCA/Components/Wasatch/Transport/ParseEquation.cc
M src/StandAlone/inputs/UPS_SPEC/wasatch_spec.xml

20 lines of code changed in 1 file:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+20 -13)
mike.hansen 2018-03-14 12:15 Rev.: 57932

Revert "-- Block-implicit Wasatch for advection-diffusion-reaction equations (scalar transport)"

This reverts commit 24b8a688906ad98c051867365ce9c1c4322cb502.

12 lines of code changed in 9 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+1 -13), ConvectiveFlux.cc (-30), ConvectiveFlux.h (-1), DiffusiveVelocity.cc (-19), DiffusiveVelocity.h (-1), ExprAlgebra.cc (-37), ExprAlgebra.h (-1), ScalarRHS.cc (+11 -133), ScalarRHS.h (-15)
mike.hansen 2018-03-13 15:27 Rev.: 57931

-- Block-implicit Wasatch for advection-diffusion-reaction equations (scalar transport)
- convective flux and diffusive velocity sensitivities
- scalar RHS sensitivities
- add optional block-implicit input file attribute for dual time
- add simple Jacobian matrix setup
- scalar transport tests for convection, diffusion, reaction each in 1D x y z, coupled in 2D xy xz yz, and coupled in 3D on 2 procs
- expression algebra sensitivities
- update ExprLib Wasatch3P hash
- add Gaussian boundary function
- add commented-out dependency of scalar rhs on the coordinates to get the grid spacing (pending fix of observed sensitivity issue)
- turn off debug on implicit tests with transport

250 lines of code changed in 9 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+13 -1), ConvectiveFlux.cc (+30), ConvectiveFlux.h (+1), DiffusiveVelocity.cc (+19), DiffusiveVelocity.h (+1), ExprAlgebra.cc (+37), ExprAlgebra.h (+1), ScalarRHS.cc (+133 -11), ScalarRHS.h (+15)
jas 2018-01-09 17:40 Rev.: 57604

Update copyright date.

53 lines of code changed in 89 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (+1 -1), BasicExprBuilder.h (+1 -1), CellType.cc (+1 -1), CellType.h (+1 -1), ConvectiveFlux.cc (+1 -1), ConvectiveFlux.h (+1 -1), Coordinate.cc (new), Coordinate.h (new), DORadSolver.cc (+1 -1), DORadSolver.h (+1 -1), DensityCalculator.h (+1 -1), DiffusiveFlux.cc (+1 -1), DiffusiveFlux.h (new), DiffusiveVelocity.cc (+1 -1), DiffusiveVelocity.h (+1 -1), Dilatation.cc (new), Dilatation.h (new), ExprAlgebra.cc (+1 -1), ExprAlgebra.h (+1 -1), GeometryBased.h (+1 -1), LewisNumberSpeciesFlux.h (new), MomentumPartialRHS.cc (new), MomentumPartialRHS.h (new), MomentumRHS.cc (new), MomentumRHS.h (+1 -1), MonolithicRHS.cc (new), NullExpression.h (+1 -1), PoissonExpression.cc (+1 -1), PoissonExpression.h (+1 -1), Pressure.cc (+1 -1), Pressure.h (+1 -1), PrimVar.cc (+1 -1), PrimVar.h (+1 -1), RHSTerms.h (new), RadPropsEvaluator.cc (+1 -1), RadiationSource.cc (+1 -1), RadiationSource.h (+1 -1), ScalabilityTestSrc.cc (new), ScalabilityTestSrc.h (new), ScalarEOSCoupling.cc (new), ScalarEOSCoupling.h (+1 -1), ScalarRHS.cc (+1 -1), ScalarRHS.h (+1 -1), SimpleEmission.cc (new), Strain.cc (+1 -1), Strain.h (new), TabPropsEvaluator.h (+1 -1), TabPropsHeatLossEvaluator.cc (+1 -1), TabPropsHeatLossEvaluator.h (+1 -1), TimeAdvance.cc (new), TimeAdvance.h (+1 -1), TimeDerivative.h (+1 -1), sub.mk (+1 -1)
Generated by StatSVN 0.7.0