/trunk/src Developers: dav

Login name:
dav
Total Commits:
68 (0.5%)
Lines of Code:
1,285 (0.5%)
Most Recent Commit:
2012-12-12 15:11
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for dav

Activity by Day of Week for dav

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 68 (100.0%) 1285 (100.0%) 18.8
/ 26 (38.2%) 700 (54.5%) 26.9
CCA/Components/Wasatch/Expressions/ 4 (5.9%) 262 (20.4%) 65.5
StandAlone/ 4 (5.9%) 125 (9.7%) 31.2
CCA/Components/Arches/PropertyModels/ 2 (2.9%) 64 (5.0%) 32.0
CCA/Components/ProblemSpecification/ 1 (1.5%) 52 (4.0%) 52.0
Core/Math/ 2 (2.9%) 15 (1.2%) 7.5
CCA/Components/Arches/ChemMix/ 3 (4.4%) 12 (0.9%) 4.0
CCA/Components/Wasatch/ 1 (1.5%) 9 (0.7%) 9.0
CCA/Components/MPM/ConstitutiveModel/ 1 (1.5%) 9 (0.7%) 9.0
CCA/Components/Arches/Radiation/ 1 (1.5%) 8 (0.6%) 8.0
build_scripts/ 3 (4.4%) 7 (0.5%) 2.3
R_Tester/helpers/ 2 (2.9%) 7 (0.5%) 3.5
include/sci_defs/ 2 (2.9%) 5 (0.4%) 2.5
StandAlone/tools/extractors/ 2 (2.9%) 2 (0.2%) 1.0
CCA/Components/ICE/SpecificHeatModel/ 1 (1.5%) 2 (0.2%) 2.0
R_Tester/toplevel/ 1 (1.5%) 1 (0.1%) 1.0
Core/IO/ 1 (1.5%) 1 (0.1%) 1.0
CCA/Components/SimulationController/ 1 (1.5%) 1 (0.1%) 1.0
CCA/Components/Models/HEChem/ 1 (1.5%) 1 (0.1%) 1.0
CCA/Components/Arches/SourceTerms/ 1 (1.5%) 1 (0.1%) 1.0
CCA/Components/Arches/ 1 (1.5%) 1 (0.1%) 1.0
scripts/ 1 (1.5%) 0 (0.0%) 0.0
StandAlone/water/ 2 (2.9%) 0 (0.0%) 0.0
CCA/Components/Wasatch/Expressions/BoundaryConditions/ 2 (2.9%) 0 (0.0%) 0.0
CCA/Components/Models/Radiation/RMCRT/ 1 (1.5%) 0 (0.0%) 0.0
CCA/Components/DataArchiver/ 1 (1.5%) 0 (0.0%) 0.0

Activity of dav

Most Recent Commits

dav 2012-12-12 15:11 Rev.: 49690

Add newline at end of file to remove compiler warning.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Expressions/BoundaryConditions: PowerLawBC.h (new)
dav 2012-12-12 14:58 Rev.: 49689

John moved configure up to autoconf version 2.69, so specifying 2.69 as the required version. Also, on some computers PETSc needs to be tested under a C++ compiler.

17 lines of code changed in 2 files:

  • configure (+14 -2), configure.ac (+3 -1)
dav 2012-11-20 01:54 Rev.: 49584

Rename MonolithicRHS to use .cc as suffix... not sure how it was even being built as the sub.mk file uses the .cc naming...

262 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Expressions: MonolithicRHS.cc (new 262), MonolithicRHS.cpp (del)
dav 2012-11-20 01:51 Rev.: 49583

Comment out not-used/confusing/re-declared 'valParams' variables.

0 lines of code changed in 2 files:

  • CCA/Components/Wasatch/Expressions: BasicExprBuilder.cc (changed)
dav 2012-11-16 17:40 Rev.: 49574

Set _noisy_heat_loss to true... ???Is this correct - not sure what is going on with that line??? Fix spacing/indentation.

64 lines of code changed in 2 files:

  • CCA/Components/Arches/PropertyModels: HeatLoss.cc (+16 -15), HeatLoss.h (+48 -49)
dav 2012-11-06 14:48 Rev.: 49531

Fix documentation.

0 lines of code changed in 2 files:

  • build_scripts: repair.sh (new)
dav 2012-11-06 14:01 Rev.: 49529

Removed this directory that was moved to Arches.

0 lines of code changed in 2 files:

  • StandAlone/water: watertp.cc (del), watertp.h (del)
dav 2012-10-11 15:11 Rev.: 49401

Fix compiler warning: BurningCriteria is an array of integers, not floats.

1 lines of code changed in 1 file:

  • CCA/Components/Models/HEChem: DDT1.cc (+1 -1)
dav 2012-10-10 16:17 Rev.: 49399

Fix compiler warnings.

9 lines of code changed in 1 file:

  • CCA/Components/MPM/ConstitutiveModel: NonLocalDruckerPrager.cc (+9 -9)
dav 2012-10-03 15:09 Rev.: 49357

Fix compilation error... I assume this was just an oversight by whoever checked in the .cc file...

0 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: Ray.h (-2)
dav 2012-10-01 15:40 Rev.: 49326


The Uintah Homebrew development team decided to remove the built in
(Unix file) permissions setting code in favor that the code would use
a users default permissions when it creates new UDA directories.
(This also means that the automatic setting of unix group has been
removed.)

A user is not in charge of their own permissions. If they would like
UDAs to be created such that other members of a specific group can
automatically see/read those files, then the user should do these things:

Set their umask to 022, and make sure the group set id bit is set for
the parent directory. You may want to set the umask in your dot login
script. Here is an example of the commands you might want to run:

umask 022
chmod g+s <data directory>

This gives: drwxr-sr-x

If, however, you want the data to be private, you might want to do the
following:

umask 077

This gives: drwx------

M CCA/Components/DataArchiver/DataArchiver.cc
M StandAlone/sus.cc

Removed the umask permission and group changing lines.

0 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (-41)
  • StandAlone: sus.cc (-2)
dav 2012-09-21 15:38 Rev.: 49257

Need to link in Core/IO for gz getDouble function. Also alphabetized list of libs and removed several duplicates.

9 lines of code changed in 1 file:

  • CCA/Components/Wasatch: sub.mk (+9 -10)
dav 2012-09-04 15:17 Rev.: 49168


Update compare_uda (and the Regression Tester's use of it) to be able
to print out the first error for each variable (instead of just dieing
after the very first difference is found).

Use the new '-concise' flag in addition to the already existing
'-as_warnings' flag in the RT.

M StandAlone/compare_uda.cc

* Cleaned up some formatting. (Truly, white space is your friend.
and single letter variable names are NOT (especially if they
are used for more then a few lines in a for loop).)
* Added the -concise flag. (Note, even though the diff will have a bunch
of lines, the only 'real' additions are about 10 lines dealing with the
'-concise' flag.)

M R_Tester/helpers/compare_sus_runs_by_udas

* Add the -as_warnings and -concise flags to the compare_uda runs.


118 lines of code changed in 3 files:

  • R_Tester/helpers: compare_sus_runs_by_udas (new)
  • StandAlone: compare_uda.cc (+111 -90)
dav 2012-08-20 16:44 Rev.: 49100

Fix DigitalFilterGenerator build on Mac

3 lines of code changed in 1 file:

  • StandAlone: sub.mk (+3)
dav 2012-08-20 16:12 Rev.: 49099


Fix a couple of build problems (that occurs on various platforms but are exemplified in static builds.)

M StandAlone/sub.mk

Build the DigitalFilterGenerator (from CCA/Components/Arches) here as
I have direct access to the correct list of LIBS (both for static and
shared builds).

M CCA/Components/Arches/sub.mk

Don't specify the DigitalFilterGenerator build line here... it has been
moved to StandAlone/sub.mk (see above).


M StandAlone/tools/extractors/sub.mk

Fix the static build of this utility (need to actually link in the
tiff library)... Not sure why the RT (don't we have a static build
RT?) didn't catch this...

13 lines of code changed in 3 files:

  • CCA/Components/Arches: sub.mk (+1 -4)
  • StandAlone: sub.mk (+11)
  • StandAlone/tools/extractors: sub.mk (+1)
dav 2012-08-02 15:35 Rev.: 49022

Fix compilation on some pedantic platforms...

2 lines of code changed in 1 file:

  • CCA/Components/ICE/SpecificHeatModel: Debye.cc (+2 -3)
dav 2012-08-02 15:29 Rev.: 49021

Allow for turning on ray scattering (for Isaac Hunsaker).

36 lines of code changed in 3 files:

  • configure (+21 -1), configure.ac (+13 -1)
  • include/sci_defs: uintah_testdefs.h.in (+2)
dav 2012-08-02 14:32 Rev.: 49020

Look first for mt version of boost_serialization

2 lines of code changed in 2 files:

  • configure (+1 -1), configure.ac (+1 -1)
dav 2012-08-02 14:24 Rev.: 49019

Fix to find even newer versions of OSX correctly.

2 lines of code changed in 2 files:

  • configure (+1 -1), configure.ac (+1 -1)
dav 2012-07-31 09:59 Rev.: 49005

Remove extra PATH stuff... user should have their PATH set correctly suck that the script doesn't need to add to it... Specifically we need to remove /usr/lib as this is causing Wasatch3P CMake to find the wrong libs for boost.

1 lines of code changed in 1 file:

  • R_Tester/toplevel: startTester (+1 -1)

(19 more)

Generated by StatSVN 0.7.0