Mark Olesen
324ce9adec
BUG: VTK write pointSet fails in parallel ( fixes #2773 )
...
- de-referenced autoPtr with () instead of ref() will fail on
non-master ranks.
2023-05-05 16:08:36 +02:00
Mark Olesen
a8cba8ba8f
COMP: code adjustments for gcc-13 ( #2714 )
2023-02-28 16:03:12 +01:00
Mark Olesen
58a5587ca8
BUG: globalIndex gather/scatter fails with multi-world ( fixes #2706 )
...
- was using UPstream::procIDs(), which returns the sub-ranks with
respect to the parent communicator. This is normally just an
identity list (single-world) but with multi-world the indexing
is incorrect. Use UPstream::allProcs() instead.
2023-02-21 12:24:15 +01:00
Mark Olesen
6d045eabc1
BUG: inconsistent faceArea on processor boundaries ( fixes #2683 )
...
- was missing evaluateCoupled on the initial faceAreaNormals field
(related to #2507 )
ENH: simplify/consistent geometry updating
2023-02-21 12:24:01 +01:00
Mark Olesen
d45b9b4e41
COMP: backslash instead of slash in Make/options
2023-02-20 18:04:13 +01:00
Mark Olesen
dae13bfae8
BUG: expression field functionObject 'store' keyword ignored
2023-02-20 18:04:13 +01:00
Mark Olesen
5894f2ed95
BUG: vtk::coordSetWriter produces incorrect VTK legacy format ( fixes #2678 )
...
- has a special purpose beginPiece() method, but was missing an update
on the numberOfPoints, numberOfCells values required by the base class.
2023-01-13 09:39:23 +01:00
Mark Olesen
d0151570a1
BUG: inconsistent finiteArea proc-boundary contributions ( fixes #2672 )
2023-01-13 09:38:45 +01:00
Mark Olesen
8993af73ac
CONFIG: bump patch level
2022-11-20 18:16:53 +01:00
Kutalmis Bercin
a4d235af6b
BUG: porousBafflePressure: read fixedJump entries - apply under-relaxation ( fixes #2626 )
2022-11-09 14:18:06 +00:00
mattijs
dffac4d887
BUG: distributedTriSurfaceMesh: locally empty surface. Fixes #2612
2022-10-13 11:57:27 +01:00
Mark Olesen
f1da147925
CONFIG: bump patch level
2022-09-07 16:02:10 +02:00
Mark Olesen
d3123a1107
BUG: redistributePar fails with some area fields ( fixes #2574 )
...
- this is especially evident in -reconstruct mode when
the fields have several processor boundaries.
Testing for an existing patch edge mapping must use the `test`
method (with range-checking) instead of the more common `set`
method since the source field will likely have many more boundaries
than physical edge mappings.
2022-09-07 16:00:54 +02:00
Mark Olesen
4965dc4cfb
COMP: declare forceCoeffs operator<< in Foam namespace ( fixes #2576 )
2022-09-07 16:00:50 +02:00
Mark Olesen
a39b50d783
COMP: incorrect type in valueAverageBase ( fixes #2568 )
...
- caused inadvertent truncation of label types
2022-09-07 16:00:50 +02:00
mattijs
2a007b007e
BUG: PPCR: check outstanding request. Fixes #2577
...
If the exit is through maxIter it should still wait
for outstanding requests
2022-09-07 14:16:43 +01:00
Mark Olesen
b6a6e40c27
BUG: incorrect order for output scaling (transformPoints, ...)
...
- the output write scaling should be applied *after* undoing the
effects of the specified rotation centre. Fixes #2566
ENH: update option names for transformPoints and surfaceTransformPoints
- prefer '-auto-centre' and '-centre', but also accept the previous
options '-auto-origin' and '-origin' as aliases.
Changing to '-centre' avoids possible confusion with
coordinate system origin().
2022-08-18 11:46:08 +02:00
Kutalmis Bercin
bc3bff8ef5
BUG: binModels: ensure main processor writes out binned data ( fixes #2530 )
2022-08-09 16:03:55 +01:00
Kutalmis Bercin
b0cd2ea991
BUG: binModels: read and use writeFile settings ( fixes #2553 )
2022-08-09 16:03:48 +01:00
Kutalmis Bercin
9f40db8977
BUG: forceCoeffs: correct the order of pressure and viscous components ( fixes #2552 )
2022-08-02 16:59:41 +01:00
Kutalmis Bercin
a72d4a1708
BUG: externalHeatFluxSource: memory leakage ( fixes #2545 )
2022-07-27 13:11:21 +01:00
Robin Knowles
71a612085b
BUG: caseDicts: fix pressureDifferencePatch and pressureDifferenceSurface scripts ( fixes #2482 )
2022-07-25 14:41:31 +01:00
Kutalmis Bercin
92f38b589a
BUG: solidBodyMotionFunction: avoid reading model name from subdictionary ( fixes #2526 )
2022-07-08 09:20:51 +01:00
Andrew Heather
ce486da6bd
Merge branch 'issue-2527-setTurbulenceFields' into 'master'
...
BUG: setTurbulenceFields: update processor boundaries (fixes #2527 )
Closes #2527
See merge request Development/openfoam!554
2022-07-04 15:26:53 +00:00
Kutalmis Bercin
de21a6bc0e
BUG: setTurbulenceFields: update processor boundaries ( fixes #2527 )
2022-07-04 13:34:13 +01:00
Andrew Heather
76d719d1e6
RELEASE: Updated version to v2206
2022-06-24 15:41:02 +01:00
Andrew Heather
7c4bb57949
RELEASE: updated completion cache
2022-06-24 15:41:02 +01:00
Andrew Heather
7792501a01
RELEASE: Updated headers for v2206
2022-06-24 15:41:02 +01:00
Mark Olesen
3c64283364
BUG: redistributePar -reconstruct lagrangian trashes fields ( fixes #2494 )
...
- the file removal cleanup, which makes reasonable sense for
redistribute mode, always forced the removal of the reconstructed
lagrangian fields (since all of the non-master fields are empty by
definition)!
Detect reconstruct mode (by using constructSize from the map) to
circumvent this logic.
2022-06-24 14:49:14 +02:00
Mark Olesen
39d8964851
BUG: distributed roots cause redistributePar failure ( fixes #2523 )
...
- zero-sized faMeshSubset and fvMeshSubset had READ_IF_PRESENT instead
of simply copying the schemes/solution setting from the baseMesh
2022-06-24 13:18:41 +02:00
Mark Olesen
7b94573add
BUG: distributed roots cause redistributePar failure ( fixes #2523 )
...
- fvMeshSubset zero constructor triggers readIfPresent for
fvSchemes/fvSolution: causing mismatched parallel communication
2022-06-23 18:26:28 +02:00
Mark Olesen
f99baa83c3
SUBMODULE: updates
2022-06-23 18:26:25 +02:00
Mark Olesen
58850f3145
ENH: surfaceBooleanFeatures -no-cgal option
...
- use hand-rolled interesction routines instead of CGAL routines.
Ignored if compiled without CGAL support.
2022-06-23 18:26:25 +02:00
Mark Olesen
57c4b27b8b
TUT: simple test for redistributePar with distributed roots
...
TUT: prefer 'subtract' instead of old 'delete'
TUT: enable multiFieldValue function object, update topoSet action
2022-06-23 18:26:25 +02:00
Andrew Heather
21680e93cc
BUG: stabilityBlendingFactor - indicator field to be owned by mesh. See #2511
2022-06-23 11:31:55 +01:00
mattijs
4850f1dca1
ENH: cpuCabinet: remove excess cellZone. Fixes #2516
2022-06-23 11:26:10 +01:00
Mark Olesen
b51e0d4c1c
STYLE: verbose point field decompose/reconstruct ( #120 )
...
TUT: use redistributePar for multiphase/interFoam/RAS/DTCHull
2022-06-22 19:45:08 +02:00
Mark Olesen
e84c2d84ad
COMP: adjust link parameters (mingw)
2022-06-22 14:32:47 +02:00
Mark Olesen
365b391bd2
CONFIG: set API level to 2206 (now in pre-release state)
...
- relevant docs updated to v2206
2022-06-21 15:32:11 +02:00
Mark Olesen
4afd9c3b1d
CONFIG: update completion cache
2022-06-21 15:32:08 +02:00
Mark Olesen
dd438ffd3f
TUT: add cloudInfo example to reactingParcelFoam/filter ( #2390 )
2022-06-21 14:15:00 +02:00
Mark Olesen
48a50fec51
BUG: foamJob does not detect collated format ( #2514 )
2022-06-21 14:15:00 +02:00
Mark Olesen
2b86a22f56
BUG: inconsistent ifdef detection for application -listXXX options
...
- as part of the style change, include guards are increasingly
prefixed with 'Foam_'
2022-06-21 13:50:40 +02:00
Mark Olesen
80b0f5f740
DOC: adjust wording
...
STYLE: replace stray 'Web:' entries with 'Website:'
2022-06-21 13:50:40 +02:00
Andrew Heather
307e380f8f
BUG: forces/forceCoeffs - fields to be owned by mesh. See #2511
2022-06-21 12:09:24 +01:00
Andrew Heather
ebac6c9b94
Merge branch 'feature-icoMulti-FOs' into 'develop'
...
General enhancement to icoReactingMultiphaseInterFoam solver, sub-models and FO's
See merge request Development/openfoam!542
2022-06-21 09:30:43 +00:00
sergio
c0581fe8eb
TUT: poolEvaporationMultiComponent: new tutorial for icoReactingMultiphaseInterFoam
...
TUT: icoReactingMultiphaseInterFoam: various changes in settings
2022-06-21 09:30:02 +01:00
sergio
618aee84a5
ENH: diffusionGasEvaporation: new diffusion based mass transfer model
...
ENH: saturationModels: new library for saturation models
2022-06-21 09:30:02 +01:00
sergio
d91fe9a6ac
ENH: multiphaseInter: ensure consistent Hf treatment for phases
...
TUT: icoReactingMultiphaseInterFoam: update thermophysicalProperties.liquid
2022-06-21 09:30:02 +01:00
sergio
0f0a5c5c0f
BUG: interfaceHeatResistance: remove max condensation limiter
2022-06-21 09:30:02 +01:00