Directory CCA/Components/OnTheFlyAnalysis/

Total Files:
17
Deleted Files:
0
Lines of Code:
3790

[root]/CCA/Components/OnTheFlyAnalysis

Lines of Code

CCA/Components/OnTheFlyAnalysis/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 49 (100.0%) 950 (100.0%) 19.3
harman 15 (30.6%) 802 (84.4%) 53.4
jas 25 (51.0%) 132 (13.9%) 5.2
dav 5 (10.2%) 14 (1.5%) 2.8
luitjens 4 (8.2%) 2 (0.2%) 0.5

Most Recent Commits

luitjens 2009-11-16 11:41 Rev.: 45067

Migrated a few more function calls to the new patch interface.

Deleted the old patch interface.

Removed __New() from the new patch interface calls.

2 lines of code changed in 4 files:

  • CCA/Components/OnTheFlyAnalysis: flatPlate_heatFlux.cc (+1 -1), vorticity.cc (new)
jas 2009-10-22 15:03 Rev.: 44938

Compiler warning fixes.

1 lines of code changed in 2 files:

  • CCA/Components/OnTheFlyAnalysis: containerExtract.cc (+1 -1)
harman 2009-05-29 12:51 Rev.: 44375

Fixed memory leak.

0 lines of code changed in 2 files:

  • CCA/Components/OnTheFlyAnalysis: lineExtract.cc (changed)
harman 2009-05-28 12:14 Rev.: 44373

The user can now specifiy a variable with a material index beside the
default material. Example usage:

<material>Atmosphere</material>
<Variables>
<analyze label="press_CC" matl="0"/>
<analyze label="rho_CC"/>
<analyze label="temp_CC"/>
<analyze label="vel_CC" matl="1"/>
</Variables>

63 lines of code changed in 3 files:

  • CCA/Components/OnTheFlyAnalysis: lineExtract.cc (+62 -18), lineExtract.h (+1)
dav 2009-04-03 15:26 Rev.: 43973

M CCA/Components/OnTheFlyAnalysis/particleExtract.cc

- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).
- Added 'default' to switch statement to quiet compiler complaint that some
options were not handled.

M CCA/Components/ICE/CustomBCs/LODI2.cc

- Fixed compiler warnings. Use "()" around portions of if statements
to make them more clear (make explicit order of evaluation).

M CCA/Components/Arches/Properties.cc

- Indented and added "{}" around some if statements. Quiets compiler
warnings and makes code easier to follow.

M CCA/Components/Arches/MCRT/ArchesRMCRT/RMCRTRadiationModel.h

- Added "{}" around some if statements. Quiets compiler warnings and
makes code easier to follow.

M Core/Grid/Variables/constVariable.h
M Core/Grid/Variables/constVariableBase.h

- Make getBaseRep() const. This allows for making a vector of
constVariable pointers like this:

constCCVariable<int> testCC;
vector<const constCCVariable<int>*> vCCVars;

// Get the testCC variable.
new_dw->get( testCC, lb->partCountLabel, 0, patch, Ghost::None, 0 );

// Create an empty constCCVariable.
constCCVariable<int> * testCCp = scinew constCCVariable<int>();

// Copy the pointer to the data (testCC) into our new variable.
testCCp->copyPointer( testCC );

// Save the new variable in a vector for future use.
vCCVars.push_back( testCCp );

- Commented out duplicate(ish) copyPointer() that can't be used anyway
because the compiler complains that it is ambiguous with the other
version of copyPointer(). (The parameters Variable& and
VariableBase& can't be distinguished.)

11 lines of code changed in 2 files:

  • CCA/Components/OnTheFlyAnalysis: particleExtract.cc (new)
dav 2009-03-27 15:33 Rev.: 43898

Mac/OSX linking fixes.

0 lines of code changed in 2 files:

  • CCA/Components/OnTheFlyAnalysis: sub.mk (new)
harman 2009-03-26 15:04 Rev.: 43872

only schedule doAnalysis if on the finest level

27 lines of code changed in 3 files:

  • CCA/Components/OnTheFlyAnalysis: particleExtract.cc (+25 -5), particleExtract.h (+2)
harman 2009-03-26 12:59 Rev.: 43869

-formating
-added bulletproofing
-added ability to extract Matrix3 variables
-Only extract particles that are above a user defined colorThreshold

86 lines of code changed in 2 files:

  • CCA/Components/OnTheFlyAnalysis: particleExtract.cc (+85 -49), particleExtract.h (+1 -2)
harman 2009-03-25 17:28 Rev.: 43861

initial commit for on-the-fly analysis module particleExract.
- it basically works for int, double, Vectors variables
- needs to be further refined and tested

626 lines of code changed in 5 files:

  • CCA/Components/OnTheFlyAnalysis: AnalysisModuleFactory.cc (new), particleExtract.cc (+477), particleExtract.h (+142), sub.mk (+4 -3)
dav 2009-03-17 12:27 Rev.: 43737

Combined Core/Math, Core/Disclosure, and Core/Geometry into one
library (with respect to linking (at least for now)) in order to get
around the circular dependency problem we are having under OSX... (and
on any other machine where we need to build static libraries.) Had to
add Core/Math to the PSELIBS line of a number of sub.mk files.

Currently all the files are compiled into the Core/Math library (but
still exist in their original locations). I created dummy.cc files to
allow me to still create the Core/Disclosure and Core/Geometry
libraries (which are now basically empty) so that I didn't have to
update all the sub.mk files to remove these references. However, at
some point in the near future, this needs to be cleaned up.

M Core/Persistent/Persistent.cc

For some reason Persistent.cc was #including <Endian.cc> which caused
symbols to appear twice. I changed this to #include the .h file.
This shouldn't be an issue... and may have only shown up (now, instead
of years ago) because I don't have TEEM turned on right now (TEEM used
to be on by default). (With TEEM turned on, Persistent.cc uses nrrd.h
for endian stuff.)

M CCA/Components/Arches/MCRT/ArchesRMCRT/RMCRTRRSDStratified.cc

Replaced 100000000000000000 with DBL_MAX, so that compilations on 32
bit machines don't error out.

3 lines of code changed in 1 file:

  • CCA/Components/OnTheFlyAnalysis: sub.mk (+3 -1)
jas 2009-03-09 15:29 Rev.: 43510

Remove the Packages/Uintah/

120 lines of code changed in 22 files:

  • CCA/Components/OnTheFlyAnalysis: AnalysisModule.cc (new), AnalysisModule.h (+8 -8), AnalysisModuleFactory.cc (+8 -8), AnalysisModuleFactory.h (new), containerExtract.cc (+16 -16), containerExtract.h (new), flatPlate_heatFlux.cc (+9 -9), flatPlate_heatFlux.h (new), lineExtract.cc (+13 -13), lineExtract.h (+9 -9), pointExtract.cc (new), pointExtract.h (new), vorticity.cc (+9 -9), vorticity.h (+6 -6)
jas 2009-03-09 15:23 Rev.: 43506

Remove the Packages/Uintah/

11 lines of code changed in 1 file:

  • CCA/Components/OnTheFlyAnalysis: sub.mk (+11 -11)
Generated by StatSVN 0.4.0