Commit Graph

1466 Commits

Author SHA1 Message Date
88cd954540 triSurface/triSurfaceMesh adjustments
- typedefs to simplify code
 - added scalePoints() member
   * this is especially useful for the triSurfaceMesh dictionary constructor
     when we have surfaces in mm or inches and don't wish to rescale in some
     external program
2008-10-25 16:34:35 +02:00
c2dd9825fa Merge commit 'OpenCFD/master' into olesenm 2008-10-24 18:11:02 +02:00
23476071dc polyMesh, fvMesh xfer constructors
- drop copy components constructors in favour of the xfer versions. Even if
  the caller sends through constant data, if will be automatically promoted
  to xfer (via a copy operation).
2008-10-24 17:29:05 +02:00
2a3bb0f5c4 autoPtr, tmp cosmetics
- dropped non-const tmp::clear() in favour of the const version
2008-10-24 17:21:02 +02:00
7d081f0ed3 dropped polyMesh::resetPrimitives copy version 2008-10-24 13:03:18 +02:00
ac00f974e6 drop ununsed nUsedFaces parameter from polyMesh::resetPrimitives(xfer<..)
- use xfer form for calls to resetPrimitives
2008-10-24 12:25:27 +02:00
ba6979747c optimize polyMesh::resetPrimitives for 'null' parameters 2008-10-24 10:25:39 +02:00
2023ab6e0d added xfer<T>::null() 2008-10-24 10:13:48 +02:00
8ffa04c892 cosmetics 2008-10-24 10:52:59 +02:00
77913b2efa Same change as before again. 2008-10-23 23:03:11 +01:00
c781b84d03 See message about commiting the changes to fitting 2008-10-23 22:54:30 +01:00
6111ea3e0b Implemented Mark's suggestion of removing wcleanAlmostAll. 2008-10-23 22:45:26 +01:00
2a1f28a3a8 Parallelized stencil-based fitting. 2008-10-23 22:44:27 +01:00
651a64d609 force ascii writing of IOdictionary 2008-10-23 18:18:52 +01:00
96dac1cb93 removed quadraticFit 2008-10-23 16:16:43 +01:00
2bb928ec8f checked in surfMesh library code
- keyedSurface is similar to triSurface, but uses faces
  - meshedSurface is sorted in regions and should be more memory efficient
  - surfMesh is the placeholder name for an OpenFOAM native surface format
2008-10-23 16:29:36 +02:00
0581aeda6f added Map<T>::null() 2008-10-23 15:27:39 +02:00
e30c626d4b Merge branch 'master' of /home/hunt2/OpenFOAM/OpenFOAM-dev 2008-10-23 13:41:21 +01:00
3c2f9b3337 comment 2008-10-23 13:41:13 +01:00
c5998b7045 improved matching 2008-10-23 12:54:19 +01:00
105f09b69f meshPhi writing 2008-10-23 12:53:04 +01:00
704afbf946 improved matching 2008-10-23 12:52:23 +01:00
60d1734564 add xferCopyTo and xferMoveTo functions 2008-10-23 09:56:21 +02:00
1faad839a9 etc/settings.* set a minimum MPI_BUFFER_SIZE, but retain larger values 2008-10-23 09:52:47 +02:00
50427d7712 leave *~ files alone in wcleanAll and drop wcleanAlmostAll 2008-10-23 08:16:43 +02:00
f294ca468c initialisation of normal 2008-10-22 16:18:57 +01:00
295a4e5433 removed extra move 2008-10-22 16:18:31 +01:00
50a2ddfcc7 bin/ wmake/ script updates
- send error messages to stderr
  - added -h/-help options where some were missing
  - changed 3-space to 4-space indentation
  - where possible, allow multiple directories from the command-line
2008-10-22 14:33:59 +02:00
809bbd5aeb Generalised and templated the fitting surfaceInterpolation schemes.
Changed the quadratic scheme to quadraticLinear (linear in the plane of the face).
Added a linear scheme based on the CFC stencil used by the quadratic scheme.
2008-10-22 12:35:55 +01:00
342b1847c7 added xfer<> constructors for meshShapes 2008-10-22 13:15:25 +02:00
042d8d0781 xfer use 2008-10-22 09:39:52 +01:00
135c6d0536 colouring; indentation 2008-10-22 09:23:59 +01:00
805b45e88a dumping redistributed surfaces 2008-10-21 21:38:43 +01:00
527d64a640 comment 2008-10-21 21:20:46 +01:00
f050ca8248 read fields 2008-10-21 19:52:10 +01:00
755e884878 resolving conflict 2008-10-21 16:50:47 +01:00
3efb4ebe20 merge from master 2008-10-21 15:04:18 +01:00
4c5ebb4cb1 added isoSurface 2008-10-21 15:03:13 +01:00
99e8bf7516 volPointInterpolation, pointMesh now MeshObject 2008-10-21 15:02:04 +01:00
cdb0a8a8d5 iso surface 2008-10-21 14:06:10 +01:00
204f93e89d xfer constructors 2008-10-21 14:05:05 +01:00
20e528e8bd xfer constructors 2008-10-21 14:01:18 +01:00
5640ed63c2 writing 2008-10-21 13:49:25 +01:00
99e9ffa46f deletion of owned objects 2008-10-21 13:46:32 +01:00
9b15a7e249 foamAddLib does not like multiple paths 2008-10-21 13:45:50 +01:00
20d3c10bb2 DynamicList bugfixes
- transfer(DynamicList&) now preserves the allocated space as-is
  - operator=(const List&) should now avoid spurious allocation/deallocation
2008-10-21 09:58:36 +02:00
bd78708543 just use plain ssh for GridEngine compilation 2008-10-20 17:28:33 +02:00
50dcc40e9a new interval syntax 2008-10-20 15:31:39 +01:00
b22ada09b7 DynamicList re-visited:
- shrink() should now correctly actually shrink
 - List::transfer(DynamicList&) invokes shrink() before transferring
   contents: otherwise the ununsed allocated space is never recovered
   until much, much later.
 - DynamicList::transfer(List&) no longer throws a FatalError when
   transferring in a smaller list. The original list contents are getting
   tossed away anyhow!
2008-10-20 16:30:48 +02:00
bb5bc16457 minor changes to test/DynamicListTest.C 2008-10-20 14:32:28 +02:00