ccf3b9db13
BUG: Changing init for thermocouple FO. Changing radiation.correct in fireFoam to allow
...
correct case re-start
2016-10-27 08:49:47 -07:00
708bfda5cb
MRG: Resolve conflict when merging branch merge-foundation
2016-10-26 15:48:39 +01:00
85e2b7e94b
BUG: thermoCoupleProbes - can only create the solver after setting the number of samples
2016-10-25 14:25:40 +01:00
2f2fa53b09
ENH: thermoCoupleProbes - simplified initialisation
2016-10-21 17:02:07 +01:00
fb0b764466
STYLE: Documentation updates
2016-10-20 11:08:50 +01:00
95347013a8
ENH: function object clean-up
2016-10-19 15:28:55 +01:00
53faca832d
Merge branch 'merge-foundation' of develop.openfoam.com:Development/OpenFOAM-plus into merge-foundation
2016-10-07 10:20:45 -07:00
b9b2ac694a
ENH: Adding eddyDissipationDiffusionModel, thermocouple probe and thermocoupleTestCase
2016-10-07 10:17:43 -07:00
9ae5e37a63
ENH: residuals function object - store results for further processing
2016-10-07 14:21:00 +01:00
07bbb1852e
STYLE: Updated Doxygen comment markers
2016-10-05 15:16:12 +01:00
58d16674a0
COMP: Corrected Clang-reported errors
2016-10-04 14:49:26 +01:00
22a7a70256
Merge remote-tracking branch 'origin/merge-foundation' into adjust-config-foundation-merge
2016-09-30 17:50:20 +02:00
54042b08df
ENH: Function objects - first pass at updating read functionality
...
Note: should be using the result of the parent::read(dict) when
deciding whether to read local entries...
2016-09-30 13:24:58 +01:00
bd0e982d99
MRG: Initial commit after latest Foundation merge
2016-09-30 11:16:28 +01:00
1e00bd7f45
GIT: resolve merge errors to ddt2, zeroGradient functionObjects
...
- the function objects are from issue #224 and issue #235
2016-09-30 11:26:58 +02:00
60d7a71eaf
STYLE: forceCoeffs - minor code updates
2016-09-29 16:24:08 +01:00
3dbd39146c
STYLE: consistency updates
2016-09-27 15:17:55 +01:00
47eb24bed5
GIT: Resolved conflicts arising from merge with develop branch
2016-09-26 10:57:34 +01:00
ad1e798293
ENH: Initial testing updates
2016-09-26 09:28:31 +01:00
1fbcb686ff
STYLE: Consistency updates
2016-09-23 16:52:46 +01:00
b9940cbbb1
COMP: Multiple changes - first clean build after latest merge - UNTESTED
2016-09-23 15:36:53 +01:00
9e1e9011a5
decomposePar: Corrected construction of cloud for processors
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2239
2016-09-21 17:19:58 +01:00
9fbd612672
GIT: Initial state after latest Foundation merge
2016-09-20 14:49:08 +01:00
e476f80e7a
functionObjects: Improved handling of multi-file indexing and code style
...
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2216
2016-08-24 19:34:00 +01:00
fc44390db3
forceCoeffs: Removed duplicate header writing
...
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2216
2016-08-24 16:01:29 +01:00
c6f9ed748a
functionObjects::forces: Corrected file names when using the 'binData' option
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2214
2016-08-24 11:24:27 +01:00
ab7dcca8a6
functionObjects::writeObjects: Corrected namespace for the definition of the NamedEnum
...
Resolves compilation failure with clang
2016-08-18 10:36:04 +01:00
b2e9655495
functionObjects::writeObjects: improved code and docs
...
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2090
2016-08-17 14:41:42 +01:00
9a739863e5
functionObjects::writeObjects: Added option "writeOption"
...
Description
Allows specification of different writing frequency of objects registered
to the database.
It has similar functionality as the main time database through the
\c writeControl setting:
- timeStep
- writeTime
- adjustableRunTime
- runTime
- clockTime
- cpuTime
It also has the ability to write the selected objects that were defined
with the respective write mode for the requested \c writeOption, namely:
- \c autoWrite - objects set to write at output time
- \c noWrite - objects set to not write by default
- \c anyWrite - any option of the previous two
Example of function object specification:
\verbatim
writeObjects1
{
type writeObjects;
libs ("libutilityFunctionObjects.so");
...
objects (obj1 obj2);
writeOption anyWrite;
}
\endverbatim
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2090
2016-08-16 23:41:22 +01:00
aaf8819c92
tetPtI -> tetPti
2016-08-16 11:30:17 +01:00
d048b857dc
functionObjects::surfaceFieldValue: New rational name for the surfaceRegion functionObject
...
surfaceRegion will be the name of a class to provide support for surface
region selection.
2016-08-12 10:04:11 +01:00
40b3f8b62c
functionObjects::volFieldValue: Updated to use the new volRegion functionObject
2016-08-11 16:25:27 +01:00
7b788f0922
functionObjects::volRegion: General base-class to handle vol (cell) region processing
...
Renamed the original volRegion -> volFieldValue to clarify the purpose
of this class to process vol fields on a volRegion.
2016-08-11 15:11:19 +01:00
2da5570c92
functionObjects: Further simplification and rationalization using the fvMeshFunctionObject base-class
2016-08-10 12:29:19 +01:00
6f098748cc
functionObjects: Separated writeFile and logFiles (previously writeFiles) from regionFunctionObject
...
Now the functionality to write single graph files or log files (vs time)
may be used in the creation of any form of functionObject, not just
those relating to a mesh region.
2016-08-07 15:23:55 +01:00
58f905ff70
C++11: Replaced the C NULL with the safer C++11 nullptr
...
Requires gcc version 4.7 or higher
2016-08-05 17:19:38 +01:00
1a69e4315b
functionObjects::wallShearStress: Corrected dimensions for compressible cases
2016-07-28 13:51:13 +01:00
d51687eb66
forces: Updated reading of 'nu'
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2158
2016-07-22 09:56:02 +01:00
6a8bac9235
functionObjects: Update documentation
2016-07-09 22:08:11 +01:00
9f682a0c5a
functionObjects::systemCall: Updated documentation
2016-07-09 14:23:27 +01:00
6e95af9d58
functionObjects: Removed superfluous controlDict files
2016-07-09 14:23:01 +01:00
417ac33aca
functionObjects: Updated documentation
...
Patch contributed by Bruno Santos
Resolves bug-report http://bugs.openfoam.org/view.php?id=2138
2016-07-03 23:16:29 +01:00
507b8988ec
functionObjects::surfaceRegion: Write the surface geometry for formats in which the data is in separate files
2016-06-30 10:33:55 +01:00
3e3a183732
Completed transformation of post-processing utilities into functionObjects
2016-06-28 19:26:23 +01:00
1bef3ab2e6
functionObjects::fieldExpression: Standardized warning message
2016-06-28 13:52:10 +01:00
850013e732
functionObjects::XiReactionRate: Writes the turbulent flame-speed and reaction-rate volScalarFields for the Xi-based combustion models
...
Replaces the obsolete and 'wdot' utility.
2016-06-27 08:58:36 +01:00
28f049e9b9
writeCellCentres utility: Replaced by writeCellCentres functionObject
...
postProcess -func writeCellCentres
2016-06-27 07:51:19 +01:00
dea6a3c6e8
wmake/Allwmake: Completed support for targetType 'objects'
...
Patch contributed by Mattijs Janssens
2016-06-24 15:25:11 +01:00
71fdcab771
Updated header documentation processed by Doxygen
2016-06-19 21:23:54 +01:00
6a53ed41ba
Doxygen documentation: Standardized the 'See also' heading
2016-06-17 17:31:34 +01:00