[root]/Packages/Uintah/CCA/Components/OnTheFlyAnalysis
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 37 (100.0%) | 3142 (100.0%) | 84.9 |
harman | 17 (45.9%) | 1554 (49.5%) | 91.4 |
sbrown | 5 (13.5%) | 1021 (32.5%) | 204.2 |
jas | 9 (24.3%) | 552 (17.6%) | 61.3 |
dav | 1 (2.7%) | 10 (0.3%) | 10.0 |
luitjens | 3 (8.1%) | 5 (0.2%) | 1.6 |
guilkey | 2 (5.4%) | 0 (0.0%) | 0.0 |
Add GeometryPiece to the sub.mk. Thanks John.
0 lines of code changed in 2 files:
First incarnation of ContainerExtract module. Kind of works; try it and see.
1021 lines of code changed in 5 files:
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.
551 lines of code changed in 8 files:
New Patch Conversion:
getCellIterator--> getCellIterator__New
containsPoint --> containsPoint__New
2 lines of code changed in 2 files:
added comments and moved cullIntersection, nodePostion, and cellPosition
to the completed section.
updated getBox and getInteriorBox to the new interface, renamed them to
getExtraBox and getBox.
renamed neighborsLow to noNeighborsLow and neighborsHigh to
noNeighborsHigh. This follows the logic that 1 is true and 0 is false.
5 lines of code changed in 3 files:
Fix closedir of null.
10 lines of code changed in 1 file:
use patch->findClosestNode instead of the old stale code I ripped off from
pre-Justin patch.h
2 lines of code changed in 1 file:
New analysis module that computes the total heat rate through a user
specified plane. Ups usage:
<DataAnalysis>
<Module name="flatPlate_heatFlux">
<material>0</material>
<plane>
<startingPt> [0.00, 0.005, 0.000] </startingPt>
<endingPt> [0.01, 0.005, 0.01] </endingPt>
</plane>
</Module>
</DataAnalysis>
Currently, only setup for a single plane but could be easily extended to
multiple planes.
451 lines of code changed in 4 files:
saved as unix file instead of dos file
now supporting CCVariable<int, double, Vector>, SFC(X,Y,Z)<double>
The file header is now sorted by variable type and subtype.
Data is written out by variable type and subtype.
632 lines of code changed in 3 files:
Fix compiler warnings usually having to do with const char declarations.
1 lines of code changed in 1 file:
global: saved as unix file instead of dos.
sheduleInitialize()
-clean up
doAnalysis()
- only compute vorticity field for the user input material.
- fixed equations so it's 2nd order central difference.
(no such thing as F.O. central difference...duh)
181 lines of code changed in 3 files:
Added analysis module to compute the vorticity field
To activate add
<DataAnalysis>
<Module name="vorticity">
<material>Atmosphere</material>
</Module>
</DataAnalysis>
and
<save label="vorticity"/>
to the ups file.
Status: runs, rough draft, needs testing of all vorticity components,
286 lines of code changed in 4 files: