Directory Core/Algorithms/Fields/

Total Files:
58
Deleted Files:
2
Lines of Code:
6056

[root]/Core/Algorithms/Fields

Lines of Code

Core/Algorithms/Fields/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 150 (100.0%) 12440 (100.0%) 82.9
jeroen 139 (92.7%) 12421 (99.8%) 89.3
worthen 5 (3.3%) 19 (0.2%) 3.8
callahan 6 (4.0%) 0 (0.0%) 0.0

Most Recent Commits

jeroen 2006-06-12 16:44 Rev.: 34470

Added speed ups in BuildFEMatrix, for regular grids (need to compute Jacobians only once as each element is the same). Added LogFile support for regression tests and fixed the regression testing program

676 lines of code changed in 8 files:

  • Core/Algorithms/Fields: DomainBoundary.cc (new), DomainBoundary.h (new), FieldsAlgo.cc (+16), FieldsAlgo.h (+5)
jeroen 2006-06-09 12:57 Rev.: 34453

Series of bug fixes and first version of regression test for the core algorithms (currently limited), but will expand this soon to include most algorithms. Fixed HexVolMesh to do degenerate elements properly this time. First series of test indicated a series of problems in the algorithms fixed these here. To run the regression tests one still needs to have example files and gold standards. We will be setting up that directory shortly. Added the ability in the algorithms to compile dynamic files and delete them afterwards, so it is not a burden on the filing system. This now happens automatically when the algorithm detects that the ProgressReporter is of the class RegressionReporter. This automatically triggers the dynamic compilation system to build those libs on-the-fly but remove them afterwards

91 lines of code changed in 49 files:

  • Core/Algorithms/Fields: ClearAndChangeFieldBasis.cc (+2), ClipBySelectionMask.cc (+2), ConvertToTetVol.cc (new), ConvertToTetVol.h (new), ConvertToTriSurf.cc (+3 -1), DistanceField.cc (+9 -1), DomainBoundary.cc (+4), FieldBoundary.h (new), FieldDataElemToNode.cc (+2), FieldDataNodeToElem.cc (+2), GatherFields.cc (+2), GetFieldData.cc (new), GetFieldDataMinMax.cc (new), GetFieldInfo.cc (+2), IsInsideField.cc (new), LinkToCompGridByDomain.cc (new), MappingMatrixToField.cc (new), MergeFields.cc (new), ScaleField.cc (new), SetFieldData.cc (new), SplitByConnectedRegion.cc (new), SplitFieldByDomain.cc (+2), ToPointCloud.cc (+2), TransformField.cc (+2), Unstructure.cc (+1 -3)
jeroen 2006-05-29 21:23 Rev.: 34352

Adding preparations for Regression testing: added comaprison functions for dataflow objects. Modified Dynamic compilation so it has an option to compile load and destroy the library, to prevent the on-the-fly-lib directory to grow out of control when testing whether dynamically compilled algorithms work. Fixed HexVolMesh to deal with degenerate meshes and started to better optimize this mesh to use less memory (still need to finish this as table sizes can be shrunk even more). Added a RegressionReporter to store all the information during regression testing. Fixed the Finite Element Code to deal with degenerate elements (Comparison with Tetsn and Prisms show that Hexahedral elements with degenerate nodes can act as tetrahedrals or prisms and still generate the proper stiffness matrix). Fixed the visualization so degenerate elements show upm properly (fixed the order of the faces of these degenerate elements so the three unique element nodes are always returned first when quering a face). Still need to upgrade the quadsurfmesh to also support degenerate elements. Field boundary now also supports degenerate elements as the number of faces returned per element can now vary with the actual number of faces. Next to do: generate degenerate meshes with tets, piramids, prisms and hexahedral and test which algorithms fail and fix those.

9 lines of code changed in 5 files:

  • Core/Algorithms/Fields: ApplyMappingMatrix.cc (+3 -1), FieldBoundary.cc (+2), Unstructure.cc (+4)
callahan 2006-05-18 10:18 Rev.: 34274

Fix various compiler warnings.

0 lines of code changed in 2 files:

  • Core/Algorithms/Fields: LinkToCompGrid.cc (new)
callahan 2006-05-15 11:25 Rev.: 34228

Clean up compiler warnings.

0 lines of code changed in 4 files:

  • Core/Algorithms/Fields: GatherFields.h (new), GetFieldDataMinMax.h (new)
jeroen 2006-05-13 01:47 Rev.: 34222

Updates to algorithms

352 lines of code changed in 10 files:

  • Core/Algorithms/Fields: ConvertToTriSurf.h (+26 -19), DomainBoundary.cc (+79), DomainBoundary.h (+216 -3), FieldsAlgo.cc (+11 -4), FieldsAlgo.h (+1 -1), SplitByConnectedRegion.h (new), Unstructure.h (+5 -18)
jeroen 2006-05-08 17:08 Rev.: 34169

Merge my algorithms from the ModelCreation package to Core/Algorithms so they are available for everyone. I added four directories to Core/Algorithms: Math for mathematical operations (mirrors Math in module tree), this currently has the FE code, Fields: my version of the field algorithms, these contain new ones and old ones with bug fixes to get my CardioWave stuff to work, Converter: Converter algorithms a series of converters to deal with conversion between Matrices, Nrrds and Fields, DataIO: gui less version for writing and reading in SCIRun files using PersistentIO or the Plug-ins. All the algorithms are grouped into libraries with one main header file: Algorithms/Math/MathAlgo.h Algorithms/Fields/FieldsAlgo.h Algorithms/DataIO/DataIOAlgo.h Algorithms/Converter/ConverterAlgo.h. Each library needs to be initialised with the ProgressReporter after which all the dynamic compilation is hidden from the user. I put all the algorithms in a separate namespace call SCIRunAlgo to avoid possible conflicts between class names. Similarly all the dynamic files will start with the word ALGO, to avoid duplication of filenames created by the current set of modules. --Jeroen

10748 lines of code changed in 61 files:

  • Core/Algorithms/Fields: ApplyMappingMatrix.cc (+93), ApplyMappingMatrix.h (new 172), ClearAndChangeFieldBasis.cc (+92), ClearAndChangeFieldBasis.h (new 142), ClipBySelectionMask.cc (+81), ClipBySelectionMask.h (new 287), ConvertToTetVol.cc (+101), ConvertToTetVol.h (+459), ConvertToTriSurf.cc (+103), ConvertToTriSurf.h (+385), DistanceField.cc (+356), DistanceField.h (new 748), DomainBoundary.cc (+111), DomainBoundary.h (+286), FieldBoundary.cc (+109), FieldBoundary.h (+224), FieldCount.cc (del), FieldCount.h (del), FieldDataElemToNode.cc (+95), FieldDataElemToNode.h (new 209), FieldDataNodeToElem.cc (+94), FieldDataNodeToElem.h (new 217), FieldsAlgo.cc (+345 -2), FieldsAlgo.h (+200 -13), GatherFields.cc (+160), GatherFields.h (+190), GetFieldData.cc (+71), GetFieldData.h (new 341), GetFieldDataMinMax.cc (+73), GetFieldDataMinMax.h (+127), GetFieldInfo.cc (+70), GetFieldInfo.h (new 74), IsInsideField.cc (+88), IsInsideField.h (new 153), LinkFieldBoundary.cc (new 83), LinkFieldBoundary.h (new 611), LinkToCompGrid.cc (+136), LinkToCompGrid.h (new 47), LinkToCompGridByDomain.cc (+88), LinkToCompGridByDomain.h (new 193), MappingMatrixToField.cc (+87), MappingMatrixToField.h (new 147), MergeFields.cc (+168), MergeFields.h (new 392), ScaleField.cc (+78), ScaleField.h (new 117), SetFieldData.cc (+120), SetFieldData.h (new 765), SplitByConnectedRegion.cc (+92), SplitByConnectedRegion.h (+248), SplitFieldByDomain.cc (+88), SplitFieldByDomain.h (new 203), ToPointCloud.cc (+11 -9), ToPointCloud.h (+7 -6), TransformField.cc (+118), TransformField.h (new 363), Unstructure.cc (+100), Unstructure.h (+186), sub.mk (new)
jeroen 2006-03-14 23:19 Rev.: 33497

fixing bug: accidently their was a Module.h included which should not be there

0 lines of code changed in 1 file:

  • Core/Algorithms/Fields: FieldsAlgo.h (-1)
jeroen 2006-03-06 20:10 Rev.: 33430

Example of building a stand alone dynamically compiling algorithm. I soon want to transfer a whole range of algorithms from my packages into the core as pure algorithms that can be reused by other modules.

545 lines of code changed in 5 files:

  • Core/Algorithms/Fields: FieldsAlgo.cc (+45), FieldsAlgo.h (+61), ToPointCloud.cc (+181), ToPointCloud.h (+252), sub.mk (+6 -3)
worthen 2006-01-31 16:17 Rev.: 33123

SHARE -> SCISHARE

5 lines of code changed in 3 files:

  • Core/Algorithms/Fields: FieldCount.h (new 1), share.h (+4 -4)
worthen 2006-01-30 13:35 Rev.: 33106

Windows Port. Big changes: new share.h includes and SHARE macros. Change use of hash_map to be compatible with windows. Use of gl extensions

14 lines of code changed in 2 files:

  • Core/Algorithms/Fields: FieldCount.h (+3 -1), share.h (+11)
Generated by StatSVN 0.4.0