Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 117 (100.0%) | 245 (100.0%) | 2.0 |
tsaad | 4 (3.4%) | 191 (78.0%) | 47.7 |
jas | 97 (82.9%) | 54 (22.0%) | 0.5 |
leavy | 8 (6.8%) | 0 (0.0%) | 0.0 |
harman | 4 (3.4%) | 0 (0.0%) | 0.0 |
dav | 4 (3.4%) | 0 (0.0%) | 0.0 |
Initial Convected Particle Tetrahedral domain Interpolation (CPTI) method implementation. Input files are used to import tetrahedral mesh geometries to better fit complex shapes. The axisymmetric version is just a placeholder for now. CPTI uses a similar technique to the one used in CPDI.
0 lines of code changed in 8 files:
Sub.mks: for macs, need to link in Core/Thread for these libraries. Also alphabetized, removed tabs, and cleaned up.
0 lines of code changed in 2 files:
First phase of improving the GeometryPiece et al. capabilities:
1. Add support for storing and returning a vector of points that are inside a named geometryPiece on a given patch
2. Add support for storing and returning a vector of points that are inside ALL named geometries for a given patch
usage:
To get the vector of points for a given geometry on a given patch, use:
const std::vector<SCIRun::Point>& insidePoints = GeometryPieceFactory::getInsidePoints(geomName, patch);
To get the vector of points for ALL named geometries on a given patch, use:
const std::vector<SCIRun::Point>& insidePoints = GeometryPieceFactory::getInsidePoints(patch);
Points are calculated once and then referenced every time the above calls are made. If a patch doesn't have any points inside the geometry then the above will return an empty vector. Note that these are static function calls so there is no need to carry around the list of geometry objects.
191 lines of code changed in 4 files:
Fix warning, d_numAngular is an integer...
0 lines of code changed in 2 files:
Eliminate warnings as turned up by clang.
1 lines of code changed in 1 file:
Spring cleaning, removed code from the days of SCIRun.
0 lines of code changed in 4 files:
Updated copyright information.
53 lines of code changed in 96 files: