be4776ea65
BUG: Function objects - updated to enable user time emtries, e.g. if using engineTime. Fixes #437
2017-03-21 13:32:55 +00:00
80064f42ac
BUG: forceCoeffs - corrected handling of pDyn for compressible cases. Fixes #436
2017-03-21 13:27:47 +00:00
c74632f022
BUG: wallHeatFlux FO - corrected output of header info tofile. Fixes #435
2017-03-21 13:23:52 +00:00
4cb89e67f5
BUG: incorrect patch lookup in ensight conversion ( fixes #430 )
2017-03-17 09:09:31 +01:00
09086dd289
BUG: in wordRe::operator=(const keyType&)
...
- the regex was not being unset on assignment.
- drop unused recompile() method as being dubious
2017-03-10 13:05:35 +01:00
4cb459f30d
Fixes #416
2017-03-02 10:22:24 +05:30
ff785f60cb
ENH: Minor modification to the description
2017-02-28 10:37:43 -08:00
38bf08fca0
ENH: Correcting coefficient description in solarCalculator.H header
2017-02-28 10:35:55 -08:00
ef60db6d72
ENH: Adding skyCloudCoverFraction to SunLoadFairWeatherConditions mode in the solarCalculator.
...
This scalar allows to introduce a factor for cloudy sky between 0 (clear) and 1 (fully cloudy)
2017-02-27 16:46:12 -08:00
b7c50cc0e1
Use subDict for changeDictionary, Fixes #409
2017-02-23 11:33:29 +05:30
99014cc6af
CONFIG: provide foamConfigurePaths -mpi option
...
- makes it easier to switch between mpi implementations (eg, openmpi, intelmpi etc)
- add comment about compiler setting for KNL
2017-02-16 09:14:17 +01:00
25fb05fe45
ENH:Delete 'not Implemented' function updateCoeffs() in slicedFvPatchField. ACMI patch is used with mesh.C() in isoSurface
...
which uses slicedFvPatch.
2017-02-20 10:34:01 -08:00
7b4d3fbe42
ENH: adding runTime selectable wallDist calculation to inverseDistanceDiffusivity
2017-02-14 08:30:53 -08:00
1e7244bd17
BUG: noise - updated creation of control dictionary to allow -case option and env variables. Fixes #402
2017-02-10 13:57:36 +00:00
68ce03377a
ENH: setSystem*Dictionary - expand file names to enable the use of
2017-02-10 13:56:42 +00:00
1abcb4cdb8
temperatureCoupledBase: alphaAni set to none by default
...
boundaryRadiationProperties: updating to new format
dynamicMeshDict and snappyHexMeshDict in utorials/multiphase/interDyMFoam/RAS/motorBike to follow Mattijs Git lab id 381
2017-02-10 11:40:15 -08:00
033a867f6f
BUG: Correcting calculation of azimuth angle in the solar direction
2017-02-09 13:13:45 -08:00
eca9fefa42
ENH: Modification of the start point for ray shooting to avoid self-hit in distorted meshes
2017-01-31 16:06:44 -08:00
64c91f2a52
BUG: missing specializations in foamVtkPTraits header
2017-01-17 08:54:07 +01:00
b061346ad2
BUG: extra newline in foamVtkAppendBase64Formatter flush()
...
Enhancements
- introduce intermediate layer for base64 foamVtk formatting
- add encodedLength() method, which is useful for xml appended output
2017-01-17 08:42:05 +01:00
f72413ac29
BUG: incorrect super-cells for foamVtkCells decomposition ( fixes #385 )
2017-01-16 18:25:03 +01:00
ed12c73af4
BUG: not incrementing when reading via singly-linked list
2017-01-24 12:59:13 +01:00
3a1e884bbd
ENH: freshen code in labelRange classes
...
- misc improvements in functionality.
2017-01-23 17:09:26 +01:00
fcf6fd8257
STYLE: use pre-increment and cbegin/cend form for forAll* macros
...
- no reason to use post-increment in forAll() macro.
- use C++11 cbegin()/cend() method names for forAll*Iter() macros.
These method names have been in OpenFOAM since 2009 and are also
used by C++11 containers.
STYLE: nullptr instead of 0 in UList
2017-01-20 21:13:38 +01:00
10afef2025
STYLE: adjust documentation for scalarTransport FO
2017-01-18 11:31:15 +01:00
9035f13710
BUG: RunFunctions - updated retrieval of nProcs to suppress warning when no system/deomposeParDict
2017-02-03 12:27:50 +00:00
c1e06e145a
BUG: waveModels - corrected wavelength calculation for StokesV model; code clean-up
2017-02-03 12:17:42 +00:00
c244279087
STYLE: Minor code tidying
2017-02-03 12:20:58 +00:00
f2c6964a48
BUG: boundaryDataTemplates - make dir before writing to stream. Fixes #390
2017-01-23 08:41:43 +00:00
a236d1dc2e
BUG: wave models - corrected setting of U for shallowWaterAbsorption. Fixes #388
2017-01-19 13:30:59 +00:00
5566d5d487
adding viewFactorWall to inGroups fixes #384
2017-01-17 11:27:42 +00:00
ea1bd3301d
ENH: command-line query for the OPENFOAM_PLUS wmake value (issue #378 )
...
Examples,
wmakePrintBuild -plus
Check if value is known
(ie, everything configured and also OpenFOAM+):
if wmakePrintBuild -plus >/dev/null 2>&1
then
echo YES
else
echo NO
fi
Check if version is new enough
if ofver=$(wmakePrintBuild -plus 2>/dev/null) && [ "$ofver" -ge 1612 ]
then
echo YES
else
echo NO
fi
Conditionals
ofver=$(wmakePrintBuild -plus 2>/dev/null)
case "${ofver:=0}" in
1612)
echo "something for 1612
;;
1706)
echo "something for 1706
;;
esac
2017-01-12 11:25:37 +01:00
884850bcbb
ENH: GAMGSolver: use raw pointers in critical loops. Fixes #379 .
2017-01-11 17:23:10 +00:00
005502fb0e
BUG: meshToMesh - corrected indexing of cutting patches. Fixes #376
2017-01-10 17:02:58 +00:00
93b51a524c
ENH: optionally eliminate duplicates on hashedWordList construction (issue #375 )
...
- makes it easier to use as a wordHashSet replacement for situations
where we want to avoid duplicates but retain the input order.
- support construction from HashTable, which means it works like the
HashTable::sortedToc but with its own hashing for these keys.
- expose rehash() method for the user. There is normally no need for
using it directly, but also no reason to lock it away as private.
2017-01-10 12:42:40 +01:00
401241bbc1
BUG: turbulentDFSEMInlet BC - corrected singleProc usage for parallel runs. Fixes #374
2017-01-06 10:55:46 +00:00
1582128a9d
STYLE: Updated README text
2017-01-04 16:09:00 +00:00
845682e4bc
STYLE: Documentation updates - fixes #371
2017-01-04 16:05:47 +00:00
7c73ca1b12
BUG: ISLList - did not close #ifdef with #endif
2017-01-04 16:00:37 +00:00
9ab4318dd9
BUG: test-mesh updated to test polyMesh constructor. Fixes #372
2017-01-04 15:59:49 +00:00
e68219a148
ENH: polyMeshGeometry: normalise cellDeterminant calculation. Fixes #380 .
2017-01-11 10:46:06 +00:00
cb79d79f2b
BUG: Incomplete cleanup of paraview environment ( fixes #369 )
...
- LD_LIBRARY_PATH was not being cleaned at all when switching between
paraview versions.
- PATH was cleaned against the third-party paraview-*, although 3rd
party paraview is installed as ParaView-*.
The additional cleanup for ParaView_DIR may not catch this (if it
was unset elsewhere).
2017-01-03 17:12:02 +01:00
64df20d94a
BUG: timeControl: add tolerance to timeStart, timeEnd. Fixes #367 .
2017-01-04 11:17:12 +00:00
2c778ce54e
STYLE: Tutorial - updated keyword
OpenFOAM-v1612
2016-12-23 14:20:30 +00:00
79ee563e32
BUG: pointNoise model - avoid double read
2016-12-23 14:18:18 +00:00
89517146b2
BUG: pressure FO - create new tmp to avoid db clash
2016-12-23 14:17:39 +00:00
b8f328c7f2
STYLE: Header updates
2016-12-23 11:15:32 +00:00
58b6fae81a
BUG: Corrected logFiles usage for parallel running; doc updates. Fixes #366
2016-12-23 10:30:29 +00:00
13395c17f4
STYLE: Corrected fieldNames -> fields. Fixes #365
2016-12-23 09:12:36 +00:00
8701c57ecb
BUG: Removed call to topoChanging(false) in interDyMFoam and compressibleInterDyMFoam - see #363 and 03db8627
2016-12-23 09:09:30 +00:00