aa02bf904e
BUG: incorrect startLineNumber for primitiveEntry ( fixes #1706 )
2020-05-14 17:21:33 +02:00
cd79ac6fd5
BUG: Pair sort on construct did the opposite ( fixes #1701 )
2020-05-11 20:28:52 +02:00
964dcb5b53
COMP: avoid -Wstringop-truncation warning
2020-01-31 12:08:31 +01:00
3166fc0b73
COMP: backport of updates for gcc-92 compilation
...
ENH: add typedefs for interpolation tables
2020-01-28 12:46:27 +01:00
89e7775f90
BUG: incorrect Nastran surface output and segmentation faults #1571
...
- indexing error in the output of values resulted in uniform output in
most cases.
- allocation error for on-the-fly triangulation
ENH: changed decomposed storage from DynamicList to plain faceList for
clearer allocation control and better overhead
2020-01-27 11:04:25 +01:00
40c713c48c
COMP: silence gcc 8.2 memcpy warnings
...
- we know they have already protected by an is_contiguous check,
so the class-memaccess warning/error can be suppressed.
2019-10-28 16:57:47 +01:00
b9eedb35d1
STYLE: use const reference for caught exceptions
2019-01-23 09:03:06 +01:00
9c076da13a
BUG: incorrect binary read of injectedParticle ( fixes #1393 )
...
- the read offset missed the tag_ member entirely and thus the entire
particle information would be corrupt (incorrectly interpreted) as
well as potential violation of adjacent (trailing) memory locations.
2019-08-06 10:30:07 +02:00
7782a66e88
BUG: incorrect blocked face synchronisation crashes regionSplit ( #1370 )
...
- now catch these and emit a warning.
Still need to investigate the root cause in the caller(s) or regionSplit.
2019-07-12 13:29:20 +02:00
a031c194b8
BUG: Sf field ignored for sumDirection operation ( fixes #1287 )
2019-04-16 18:32:07 +02:00
e5d2c89f9a
COMP: fix conditional for VTK legacy rendering.
...
- was deprecated for removal with VTK 8.1.0
definitely removed in VTK 8.2.0
2018-11-08 21:28:26 +01:00
641cb490b4
ENH: export FOAM_API in dictionary (issue #1158 )
...
- uses the value of the OPENFOAM compiler define
2019-01-07 19:04:50 +01:00
3357b86ab5
DOC: Updated header - see #875
2018-10-16 15:26:55 +01:00
e9d156ce54
DOC: Added reference to header files. Fixes #1038
2018-10-16 15:24:28 +01:00
dba1bc24ca
ENH: Added warning if using an isotropic assumption with an anisotropic thermal conductivity
2018-10-16 15:04:38 +01:00
5db18df6bc
ENH: Particle interaction lists - do not include partially open wall faces. See #957
2018-09-27 12:51:13 +01:00
cab600d567
ENH: polyPatch - added areaFraction method
...
Helper function to calculate the current face area vs the area returned
from the current point locations. Useful for ACMI-type baffles where we
scale the face areas without moving points.
2018-09-27 12:46:48 +01:00
868045b2e1
BUG: Correct initialization for psi and mu for solidThermo
2018-10-08 15:40:12 -07:00
ef652062ec
BUG: Corrected viscosity field names. Fixes #1017
2018-09-21 16:00:28 +01:00
5782af39f5
BUG: kEpsilonLopesdaCosta model - loop was using the incorrect index
2018-09-21 13:44:17 +01:00
3e29b9c3aa
BUG: Doxygen corrections
2018-09-11 12:13:19 +01:00
cf2630dd1a
BUG: multiSolidBodyMotionSolver: parallel consistent message. Fixes #990 .
2018-09-05 13:17:37 +01:00
c332b2cbc8
BUG: bitSet: extraneous exit. Fixes #984 .
2018-08-29 12:50:50 +01:00
bd48ca4920
BUG: externalWallHeatFluxTemperature - set size of qrPrevious_ before
...
mapping. Fixes #983
2018-08-28 15:39:06 +01:00
be740dcb06
BUG: cubicEqn, quadraticEqn: Correction to repeated roots
...
Also extended the cubic equation test routine and modified the error
methods so that they more accurately generate the round of error of
evaluation.
This resolves bug report https://bugs.openfoam.org/view.php?id=3015
2018-07-24 15:54:32 +01:00
ef1324a1b0
BUG: double read when updating ensight fieldsDict
2018-07-30 16:07:49 +02:00
108d14967a
BUG: incorrect lookup name for lumpedMotion scaling parameter ( fixes #949 )
2018-07-23 20:19:07 +02:00
41e93f735f
BUG: incorrect swirlFan tangential velocity calculation ( closes #945 )
...
- missing indexing caused the real radius to be largely ignored
when useRealRadius = true
2018-07-20 08:14:58 +02:00
5ff5b0afc4
BUG: particle: locate can get stuck on cell centre. Fixes #935 .
2018-07-12 11:31:27 +01:00
fa026a13a1
BUG: cyclicAMI: stabilise projection in case of 90 degree angles. Fixes #930 .
2018-07-11 12:05:05 +01:00
1b76ff6001
BUG: vtkCloud suppresses output for empty clouds ( closes #866 )
...
- the original intention was to avoid vtp output when the clouds are
empty anyhow. However, it is useful for post-processing to have
clouds with zero parcels (eg, before the start of injection).
Pruning of empty clouds is now an option in the vtkCloud dictionary
controls, with the default being false (no pruning). This represents
a non-breaking change in behaviour since it generates more output
than previously.
Example,
{
type vtkCloud;
//- Suppress writing of empty clouds (default: false)
prune true;
}
2018-07-11 07:53:51 +02:00
baba0069d4
BUG: inconsistent AMI information (issue #860 )
...
- use "min:xxx" format for AMIInterpolation as well
2018-07-04 09:13:11 +02:00
6e35bcda70
ENH: Updated config for release v1806
2018-06-28 12:56:00 +01:00
ddd176bc1a
ENH: Corrected header documentation
2018-06-26 17:33:00 +01:00
30b4eda7a4
TUT: update some old keywords found in tutorials
...
- functionObjectLibs -> libs
- redirectType -> name
- change deprecated writeCompression flags types to Switch.
- cleanup some trailing ';;' from some dictionaries
2018-06-26 14:18:52 +02:00
cc075b88ea
STYLE: Minor header correction - see #831
2018-06-26 13:16:51 +01:00
26a3167843
Merge branch 'feature-normalMethods' into 'develop-pre-release'
...
STYLE: separate areaNormal/unitNormal method for primitives (issue #885 )
See merge request Development/OpenFOAM-plus!208
2018-06-26 12:58:59 +01:00
f5628d72aa
BUG: AMI/ACMI - corrected setting of [src|tgt]MagSf for parallel runs. See #856 #906
2018-06-26 11:14:57 +01:00
0b14c637e6
STYLE: minor code formatting
2018-06-25 19:27:21 +01:00
a410f52e6d
COMP: handle unset WM_OSTYPE for cmake targets (issue #909 )
...
- regularise referencing of OpenFOAM env variables, sources etc.
2018-06-26 09:48:57 +02:00
df9c675c84
STYLE: remove unnecessary include for cartesianCS
2018-06-26 08:36:05 +02:00
e30ca79924
BUG: Correcting solidThermo constructor
2018-06-25 16:38:54 -07:00
2d7f3d09a8
ENH: regIOobject: improved debug message
2018-06-25 12:55:36 +01:00
3de018af57
BUG: heSolidThermo: initialise mu,psi. See #905 .
2018-06-25 12:53:58 +01:00
67f208bd43
BUG: partial/possible regression related to closing stdin (issue #893 , #856 )
...
- The problem is not 100% reproducible, but be somewhat conservative
and now only close(stdin) for pure background (daemon-like) use of
Foam::system(), where it can be useful.
Using Foam::system() for launching background processes is currently
only used for the doc browser.
2018-06-25 11:39:53 +02:00
f4d3c071ff
Merge branch 'feature-processorLOD' into 'develop-pre-release'
...
Feature processor level of detail (LOD)
See merge request Development/OpenFOAM-plus!210
2018-06-25 08:55:20 +01:00
3d22c5c265
STYLE: use fileName::expand() instead of stringOps::inplaceExpand
...
- do not need the stringOps version if there is no dictionary context
2018-06-23 16:40:51 +02:00
e0db37f043
ENH: support rhoRef for derived surfMesh sampled fields (issue #898 )
2018-06-22 16:57:30 +02:00
5d2ad9227f
STYLE: separate areaNormal/unitNormal method for primitives (issue #885 )
2018-06-20 12:17:03 +02:00
1c64911367
ENH: Updated meshToMesh to be able to use the new processorLOD
2018-06-20 07:57:25 +01:00