d987648ef4
dictionary label lookup: simplified syntax using the type templated lookup function
...
Replaced
readLabel(dict.lookup("name"))
with
dict.lookup<label>("name)
2019-11-27 11:38:59 +00:00
81fca4c43a
Corrected typos in comments
...
found using cspell.
Patch contributed by Timo Niemi, VTT.
2019-10-18 11:46:20 +01:00
5c188ddce7
Completed standardisation of the class declaration section comments to correspond to the foamNewSource template
2019-06-21 22:45:47 +01:00
8e9f692aa4
Standardised the class declaration section comments to correspond to the foamNewSource template
2019-06-13 21:26:33 +01:00
fc4d7b92c3
Corrected documentation comment for disabled copy constructors
2019-05-29 15:58:42 +01:00
9140984cf4
Added "= delete" to disabled bitwise copy constructors and assignment operators
...
Currently these deleted function declarations are still in the private section
of the class declarations but will be moved by hand to the public section over
time as this is too complex to automate reliably.
2019-05-28 15:26:45 +01:00
cd8aee2d76
PrimitivePatch: Simplified templating
2019-01-21 09:08:03 +00:00
bf54ab67e1
Updated OpenFOAM Foundation web-link in headers
2018-07-06 21:42:54 +01:00
87e32ab499
Code style: Updated line comments to start with a space
...
//This is a comment -> // This is a comment
2018-05-01 11:57:50 +01:00
0248dd81e3
Corrected comments: inbetween -> in between
2018-02-13 16:38:41 +00:00
fc2b2d0c05
OpenFOAM: Rationalized the naming of scalar limits
...
In early versions of OpenFOAM the scalar limits were simple macro replacements and the
names were capitalized to indicate this. The scalar limits are now static
constants which is a huge improvement on the use of macros and for consistency
the names have been changed to camel-case to indicate this and improve
readability of the code:
GREAT -> great
ROOTGREAT -> rootGreat
VGREAT -> vGreat
ROOTVGREAT -> rootVGreat
SMALL -> small
ROOTSMALL -> rootSmall
VSMALL -> vSmall
ROOTVSMALL -> rootVSmall
The original capitalized are still currently supported but their use is
deprecated.
2018-01-25 09:46:37 +00:00
1e6c9a0a54
Updated UPstream::commsTypes to use the C++11 enum class
2017-03-10 19:54:55 +00:00
48e3fb7805
Allwmake: Remove 'set -x' which generates a lot of noise
...
'set -x' should be used for debugging.
Added command printing into wmake and Allwmake as a replacement for
'set -x' to log current target.
2016-11-13 18:08:22 +00:00
a28370dda1
MGridGenGAMGAgglomeration: Update call to continueAgglomerating
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2244
2016-09-14 09:41:03 +01:00
7656c076c8
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
26f706da43
fvAgglomerationMethods/Allwmake: Removed reference to Scotch
...
Resolves bug-report http://bugs.openfoam.org/view.php?id=2168
2016-08-01 17:05:16 +01:00
2cb97ec2ef
wmake/Allwmake: Completed support for targetType 'objects'
...
Patch contributed by Mattijs Janssens
2016-06-24 15:25:11 +01:00
8c4f6b8fcb
Standardized cell, patch and face loop index names
2016-04-25 10:28:32 +01:00
fa8929df6d
Use Zero rather than pTraits<Type>::zero unless a static typed '0' is required
2016-03-22 17:46:52 +00:00
99c000fc94
Rationalized the indentation of C-preprocessor directives
2016-02-29 15:42:03 +00:00
7859083246
OpenFOAM: Updated all libraries, solvers and utilities to use the new const-safe tmp
...
The deprecated non-const tmp functionality is now on the compiler switch
NON_CONST_TMP which can be enabled by adding -DNON_CONST_TMP to EXE_INC
in the Make/options file. However, it is recommended to upgrade all
code to the new safer tmp by using the '.ref()' member function rather
than the non-const '()' dereference operator when non-const access to
the temporary object is required.
Please report any problems on Mantis.
Henry G. Weller
CFD Direct.
2016-02-26 17:31:28 +00:00
49c54e9070
OpenFOAM libraries: Updated to use the new const-safe tmp
2016-02-26 08:13:59 +00:00
fa0656c358
scripts: Reformat with consistent section separators
2016-02-15 18:30:24 +00:00
f48d94b4a6
Updates for changes to etc/config structure
2016-02-10 16:20:19 +00:00
94c05a1e6c
Update code to use the simpler C++11 template syntax removing spaces between closing ">"s
2016-01-10 22:41:16 +00:00
3dd784315b
Correct formatting: "forAll (" -> "forAll("
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1967
2016-01-09 23:10:16 +00:00
5e6a7ea282
Completed update ...ErrorIn -> ...ErrorInFunction
...
Avoids the clutter and maintenance effort associated with providing the
function signature string.
2015-11-11 09:03:39 +00:00
9f666b0dbd
pairPatchAgglomeration: Added call to compactLevels at the end of agglomerate
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1853
2015-09-17 17:05:12 +01:00
8fd3cee834
pairPatchAgglomeration: Stop agglomeration loop if no further agglomeration is achieved
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1157
2015-06-15 17:14:24 +01:00
94e1fd68c2
pairPatchAgglomeration: Do not use the result agglomeratePatch if the return indicates it is not valid
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1157
2015-06-13 23:05:45 +01:00
b0c120b7b5
wmake/scripts/AllwmakeParseArguments: Handle stop-on-error
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1485
2015-01-10 21:58:19 +00:00
bc5134a55e
New version of wmake supporting out-of-tree object and dependency files
2014-12-14 21:42:18 +00:00
446e5777f0
Add the OpenFOAM source tree
2014-12-10 22:40:10 +00:00