[root]/Packages/Uintah/StandAlone/tools
compare_mms
(12 files, 285 lines)
dumpfields
(22 files, 4133 lines)
extractors
(8 files, 273 lines)
graphview
(2 files, 461 lines)
pfs
(3 files, 80 lines)
puda
(17 files, 142 lines)
radiusMaker
(3 files, 309 lines)
uda2nrrd
(17 files, 1367 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 4 (100.0%) | 12 (100.0%) | 3.0 |
dav | 3 (75.0%) | 10 (83.3%) | 3.3 |
worthen | 1 (25.0%) | 2 (16.7%) | 2.0 |
Moved uda2nrrd to its own location (tools/uda2nrrd). Split it into a
bunch of sub-files so it wouldn't be 50K of code in one file. Cleaned
up a little. Added particle extraction.
Note, when extracting particles, uda2nrrd (currently) assumes all
particles are on the same level. It also extracts particles for ALL
materials (which is different from when uda2nrrd extracts grid
variables).
Updated the code to append the timestep number to the filename.
Added the 'radiusMaker' utility that will update a nrrd and add a
radius component to it based on one of the other
parameters... however, the radius value calculation right now is hard
coded and needs to be make a little more general. This utility is
based on James Biglers version of the code.
Also included the sphere2nrrd shell script to convert a .raw file
into a nrrd (ie: create the nrrd header).
3 lines of code changed in 2 files:
restore graphview and fix its compilation errors
2 lines of code changed in 1 file:
MAJOR CHANGES: File (eg: puda) location changes. Puda updated. See
below:
Moved Puda, lineextract (et al), pfs, compare_mms, etc into the
StandAlone/tools/ directory. (There are still some more that should
be moved (compare_uda, selectpart, uda2nrrd, etc), but I haven't
gotten to them yet. This cleans up the StandAlone directory... and
hopefully makes it more clear where each of the utilities are.
Puda has been restructured. It is nolonger a single 3000 line
function. I broke the major pieces into files of their own. In
addition, I revamped 'varsummary' to use templated functions. It was
715 lines of repeated code, now it is 240 lines with some helper
functions.
To facilitate the templating, I have created a GridIterator class
(which is just (mostly) a copy of the CellIterator class). However it
should eventually be used to replace both CellIterator and
NodeIterator (as they currently do just about exactly the same thing).
NodeIterator and CellIterator are friends of GridIterator so that they
can be converted (via a constructor) to GridIterator's.
I fixed the problem with puda not taking into account extra cells. By
default, puda now considers them. If you wish to turn them off, then
use the -no_extra_cells flag.
Puda now reports the location of min/max variables. If there are more
than one cell with the same min/max, then it reports the first one it
finds, and the count of the number of min/max's.
Tecplot was turned off in the original, so it is turned off in the new
version... I haven't tested it at all.
M Uintah/CCA/Components/MPM/ImpMPM.cc
Indent #includes.
M Uintah/Core/DataArchive/DataArchive.cc
Turned off the locking in turnOffXMLCaching() as it was causing a
deadlock... this should be fine, but hasn't been extensively tested.
Indented #includes.
7 lines of code changed in 1 file: