a4a593d645
Merge branch 'master' into cvm
2010-09-24 18:31:29 +01:00
02f4581b30
ENH: For cell size functions of equal priority, choose the smallest size, not average.
2010-09-24 18:29:47 +01:00
eb5f2954b9
BUG: Reporting unit vector, not scaled vector.
2010-09-24 14:48:00 +01:00
43c2ab5d51
ENH: Commenting out unused face-centre tet decomp variables.
2010-09-24 13:26:17 +01:00
7d993e98e2
Merge branch 'master' into cvm
2010-09-24 13:12:47 +01:00
8c6206e003
STYLE: Remove blank line.
2010-09-24 13:11:05 +01:00
04c60c46d3
ENH: Disabling face centre tet decomposition quality checks.
...
Difficult to achieve both types of decomposition with positive tets
simultaneously in cvMeshes.
2010-09-23 18:24:58 +01:00
fef610ae9f
ENH: Better writing of cell size fields. Writes to constant for the correct mesh.
2010-09-23 18:22:25 +01:00
72cc187a79
Merge branch 'master' into cvm
2010-09-23 14:56:51 +01:00
76d4197ead
ENH: Do not require the writeReferredParticleCloud keyword by default.
2010-09-22 18:11:01 +01:00
3f637b2fcf
ENH: InflationInjection.
...
Needs dTarget data member in KinematicParcel.
Some functions in InjectionModel no longer const.
2010-09-22 16:28:47 +01:00
bd91a2d5c3
ENH: Adding bools to turn off initCellFacePt() for reconstruction, post-processing etc.
2010-09-22 16:20:54 +01:00
27dc56ed0d
BUG: fixedValue pdf returning +-VGREAT for min/maxValue() -should be value_ surely?
2010-09-22 12:27:42 +01:00
d1b9dab50a
ENH: Moving cellOccupancy into KinematicCloud.
2010-09-20 12:45:57 +01:00
f39d084874
Merge branch 'master' into cvm
2010-09-17 17:20:19 +01:00
ebb9a9e1ac
ENH: tet decomposed particle tracking.
...
Squashed merge of particleInteractions up to
commit e7cb5bcf0315c359539ef1e715e1d51991343391
2010-09-17 16:59:17 +01:00
b329ea6f92
ENH: Added convenience function to access film solution dict
2010-09-17 15:59:31 +01:00
ff916073b1
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2010-09-17 15:44:02 +01:00
ed544c9584
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2010-09-17 15:10:59 +01:00
1411945b38
ODESolver.C: Corrected the estimated step-size returned to the calling code
...
Correction provided by David Gaden.
2010-09-17 15:10:44 +01:00
1cac1aaecc
localBlended: Added support for "corrected" schemes
...
Resolves bug report: http://www.openfoam.com/mantisbt/view.php?id=30
2010-09-17 15:10:28 +01:00
2e1a37e9f9
STYLE: Added comment re: enthalpy change for film source term
2010-09-17 14:38:06 +01:00
1dc587c327
ENH: Moved total mass variable to sub-model
2010-09-17 14:35:10 +01:00
3013a98081
ENH: Updates to surfaceFilm lib - structure, sources
2010-09-17 13:23:36 +01:00
255aecb58b
ENH: partial restructure of film injection models
2010-09-17 13:22:40 +01:00
61b50c01a0
ENH: add subset() method to PackedBoolList
...
- support &= for UList<label>, UIndirectList<label>
- support set/unset for PackedList<1>
2010-09-17 08:54:54 +02:00
596c4d3a0a
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2010-09-16 18:28:27 +01:00
6c27982968
ENH: pointZone,cellZone,ZoneMesh : add parallel checking facility.
2010-09-16 18:22:34 +01:00
f2a536811a
ENH: Correction missed from commit 32a6d67ef1
2010-09-16 18:14:58 +01:00
cc55cb39ee
ENH: Use film surface values, and removed copy of cell labels from member data
2010-09-16 18:04:53 +01:00
32a6d67ef1
ENH: Better treatment for inactive film models
2010-09-16 18:02:59 +01:00
ba896b6903
ENH: better handling of resizing for PackedList bit-wise operators
...
- previously using an '|=' or '^=' would increase the list size to
match the RHS. Now it only increases to last bit set.
- limit bit-wise operations to addressable range for minor efficiency
improvement
- trim results from '&' and '^' operations for more consistent
behaviour
2010-09-16 16:37:41 +02:00
cc631ad6cd
Merge branch 'master' into cvm
2010-09-16 15:13:45 +01:00
f472fe31a4
ENH: moved phase change output to phase change model
2010-09-16 13:18:17 +01:00
bb32504c3b
ENH: add constructor/assignment from UIndirectList<label> to PackedList
...
- more consistent with PackedBoolList
2010-09-16 11:43:07 +02:00
514661e990
Merge remote branch 'OpenCFD/master' into olesenm
2010-09-15 15:42:24 +02:00
b7c85357d5
ENH: added binary IO for PackedList and compact ASCII format
...
The compact ASCII format is a block of index/value tuples for the
non-zero entries:
{ (index1 value1) (index2 value2) (index3 value3) }
For PackedList<1>, and thus PackedBoolList, the compact ASCII format is
a block of indices for the non-zero entries:
{ index1 index2 index3 }
Thus either of the following could be used - for PackedList<2>:
- a list of all values:
16(0 3 0 2 0 0 3 1 0 0 0 0 0 0 0 1)
- a block of index/value tuples:
{(1 3) (3 2) (7 3) (8 1) (15 1)}
For PackedList<1> and PackedBoolList, either of the following could be
used:
- a list of all values, using any valid bool representation:
16(0 1 0 true 0 0 t 1 0 n n 0 0 0 0 yes)
- a block of the indices for non-zero entries:
{1 3 7 8 15}
2010-09-15 10:20:39 +02:00
d18695d70d
ENH: DynamicList append() returns reference to allow chaining
2010-09-14 11:43:50 +02:00
2a37f5b11c
ENH: allow single-character 't' and 'f' aliases for bool/Switch
2010-09-14 11:42:25 +02:00
c4269ad7ac
BUG: use isA<> instead of isType for cyclicFvsPatchField to enable derived types to operate correctly
2010-09-13 14:54:13 +01:00
68af83dbbd
ENH: Updates to surface film phase change modelling
2010-09-10 16:09:27 +01:00
ecbdccf2b1
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2010-09-10 13:34:08 +01:00
f83bfb62e0
ENH: Updates to surface film models
2010-09-10 13:33:08 +01:00
97ee7cfb20
STYLE: minor code formatting change
2010-09-10 13:32:30 +01:00
e2d08fe512
Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev
2010-09-08 17:30:20 +01:00
e709d1a401
ENH: PointEdgeWave : have explicit iterate option
2010-09-08 17:29:51 +01:00
ee67553d2b
STYLE: inverseDistanceDiffusivity : typo in comment
2010-09-08 17:29:24 +01:00
4ef01f85e4
ENH: Added additional clone(...) function to nonuniformCyclicPolyPatch
2010-09-08 14:19:58 +01:00
8badeb9ff0
ENH: Updated surface film pahse change models
2010-09-08 13:32:58 +01:00
21c4bb4b40
ENH: Cp now looked up from transport dict for incompressible turb heat flux BC
2010-09-08 12:14:12 +01:00