Directory Packages/Uintah/CCA/Components/Arches/Radiation/

Total Files:
10
Deleted Files:
0
Lines of Code:
2703

[root]/Packages/Uintah/CCA/Components/Arches/Radiation

Lines of Code

Packages/Uintah/CCA/Components/Arches/Radiation/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 48 (100.0%) 662 (100.0%) 13.7
harman 30 (62.5%) 533 (80.5%) 17.7
dav 4 (8.3%) 80 (12.1%) 20.0
jthornoc 6 (12.5%) 28 (4.2%) 4.6
jas 6 (12.5%) 12 (1.8%) 2.0
luitjens 2 (4.2%) 9 (1.4%) 4.5

Most Recent Commits

harman 2008-12-22 18:18 Rev.: 42770

removed all
-#include <sgi_stl_warnings_off.h>
-#include <sgi_stl_warnings_on.h>
statements. No longer using SGI machines

0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadiationModel.h (new)
harman 2008-12-22 18:02 Rev.: 42769

removed excess
#include <Core/Geometry/IntVector.h>
#include <Packages/Uintah/Core/Grid/Variables/ComputeSet.h>

statements

0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadiationSolver.h (-1)
harman 2008-12-22 17:53 Rev.: 42768

removed excess
#include <Packages/Uintah/CCA/Components/Arches/TurbulenceModel.h>
#include <Core/Containers/OffsetArray1.h>
#include <Core/Containers/Array1.h>

statements

0 lines of code changed in 6 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (new), RadHypreSolver.cc (-2), RadLinearSolver.cc (-2)
harman 2008-12-22 17:41 Rev.: 42767

removed extra

-#include <Packages/Uintah/Core/Grid/Variables/CCVariable.h>


0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadHypreSolver.cc (-1), RadLinearSolver.cc (-1)
harman 2008-12-22 17:30 Rev.: 42766

removed excess
#include <Packages/Uintah/Core/Grid/Variables/SFC(X,Y,Z)Variable.h>


0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadHypreSolver.cc (-3), RadLinearSolver.cc (-3)
dav 2008-08-25 17:03 Rev.: 41963

Cleanup a few more sub.mk files.

18 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: sub.mk (new)
dav 2008-08-21 16:25 Rev.: 41954


M Core/Exceptions/PetscError.cc ----renamed_to---> UintahPetscError.cc
M Core/Exceptions/PetscError.h ----renamed_to---> UintahPetscError.h

PetscError implies a function defined in Petsc (and actually, there is
a Petsc PetscError which caused a naming conflict with our PetscError.
So I renamed our PetscError to the more clear UintahPetscError.

M CCA/Components/Models/Radiation/Models_PetscSolver.cc
M CCA/Components/MPM/PetscSolver.cc
M CCA/Components/Arches/PetscSolver.cc
M CCA/Components/Arches/Radiation/RadLinearSolver.cc
M CCA/Components/Arches/Filter.cc

Using UintahPetscError. Some coding convention cleanups.

M CCA/Components/Models/Radiation/RadiationConstVariables.h
M CCA/Components/Arches/ArchesConstVariables.h

This file doesn't use PetscError, so doesn't need to include it.
ALSO, PLEASE don't place #includes above the '#ifndef .h file guard'
at the top of a .h file.

M CCA/Components/Models/Radiation/Models_HypreSolver.cc

Finish cleanup up what Todd started. ;) Removed references to
PetscError from this Hypre file. Rearranged the #includes to
be in a better order. Fixed #include "" to use #include <>.

M CCA/Components/Arches/Radiation/RadHypreSolver.cc

This file doesn't use PetscError, so don't #include it. Fixed
#include "" to be #include <>.

M CCA/Components/Arches/StencilMatrix.h

Don't use std::vector when it isn't used in the file.

M CCA/Components/Regridder/PatchFixer.cc

Untabify. Indent. Group using statements. Few coding standard
updates.

M Core/Exceptions/sub.mk

PetscError -> UintahPetscError. Clean up ordering of src files.

M Core/Grid/Variables/ReductionVariable_special.cc

Still trying to get the symbols to be defined correctly on all
compilers.

62 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadHypreSolver.cc (+4 -9), RadLinearSolver.cc (+58 -55)
harman 2008-07-29 16:43 Rev.: 41760

replaced all exit() statements with exceptions.

Large jobs should now exit gracefully instead of hanging.

6 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+6 -12)
harman 2008-07-14 18:05 Rev.: 41513

removed #include debug.h
Not used.

0 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadHypreSolver.cc (-1), RadLinearSolver.cc (-1)
jas 2008-07-07 20:07 Rev.: 41434

Use the proper c++ standard for include files for the C inlude files, i.e.
<stdio.h> --> <cstdio>
<math.h> --> <cmath>

Tested on g++ 4.2 and 4.3 compilers.

4 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+1 -1), RadHypreSolver.cc (+3 -3)
luitjens 2008-06-20 10:09 Rev.: 41283

Fixed a compile error when one does not have hyper.


1 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+1 -1)
harman 2008-06-13 14:28 Rev.: 41260

Answers should not change
- tabs
- 2 space indentation
- added {} around some iterators/conditionals

527 lines of code changed in 13 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+170 -162), DORadiationModel.h (new), FakeRadLinearSolver.cc (new), RadHypreSolver.cc (+155 -168), RadHypreSolver.h (new), RadLinearSolver.cc (+113 -103), RadLinearSolver.h (new), RadiationModel.h (+12 -12), RadiationSolver.h (+12 -12)
jas 2008-05-30 17:32 Rev.: 41180

Change the include files to include the name "_hypre_" which is where the
symlink was pointing to anyway.

3 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadHypreSolver.cc (+2 -2), RadHypreSolver.h (+1 -1)
luitjens 2008-05-19 12:44 Rev.: 41082

A few more multipatch petsc fixes.

8 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadLinearSolver.cc (+8 -3)
jthornoc 2008-05-15 16:53 Rev.: 41058

Changed patch->:
getCellFORTLowIndex and getCellFORTHighIndex

To patch->:
getFortranCellLowIndex__New() and getFortranCellHighIndex__New()

18 lines of code changed in 3 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+6 -6), RadHypreSolver.cc (+6 -6), RadLinearSolver.cc (+6 -6)
jthornoc 2008-05-15 16:03 Rev.: 41056

replaced:
getGhostCellLowIndex and getGhostCellLowIndex

with:
getExtraCellLowIndex__New and getExtraCellHighIndex__New

6 lines of code changed in 2 files:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+2 -2), RadLinearSolver.cc (+4 -4)
jthornoc 2008-05-15 15:52 Rev.: 41055

replaced:
patch->getCellLowIndex() and patch->getCellHighIndex()

with:
patch->getExtraCellLowIndex__New() and patch->getExtraCellHighIndex__New()

4 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: DORadiationModel.cc (+4 -4)
jas 2008-03-17 14:22 Rev.: 40487

Fix compiler warnings usually having to do with const char declarations.

4 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadLinearSolver.cc (+4 -4)
jas 2008-03-11 09:43 Rev.: 40435

Fix compiler warnings.

1 lines of code changed in 1 file:

  • Packages/Uintah/CCA/Components/Arches/Radiation: RadLinearSolver.cc (+1 -1)
Generated by StatSVN 0.4.0