- Mar 12, 2021
-
-
Mark OLESEN authored
- patch point ordering was affected by the EnSight face sorting (tri, quad, nsided). This did not affect other point fields, since they use the internal field values.
-
Andrew Heather authored
TUT: lagrangian: clean up tutorials See merge request !429
-
-
- Mar 10, 2021
-
-
mattijs authored
-
- Mar 09, 2021
-
-
Mark OLESEN authored
- fvMeshDistribute and redistributePar changes
-
Mark OLESEN authored
- for use when the is_contiguous check has already been done outside the loop. Naming as per std::span. STYLE: use data/cdata instead of begin ENH: replace random_shuffle with shuffle, fix OSX int64 ambiguity
-
Mark OLESEN authored
- direct check of punctuation. For example, while (!tok.isPunctuation(token::BEGIN_LIST)) .. instead of while (!(tok.isPunctuation() && tok.pToken() == token::BEGIN_LIST)) .. Using direct comparison (tok != token::BEGIN_LIST) can be fragile when comparing int values: int c = readChar(is); while (tok != c) .. // Danger, uses LABEL comparison! - direct check of word. For example, if (tok.isWord("uniform")) .. instead of if (tok.isWord() && tok.wordToken() == "uniform") .. - make token lineNumber() a setter method ENH: adjust internal compound method empty() -> moved() - support named compound tokens STYLE: setter method for stream indentation
-
- Mar 08, 2021
-
-
Mark OLESEN authored
- orient blocks in global x/y/z. Provisioning for coarser/smaller geometries.
-
Mark OLESEN authored
-
-
mattijs authored
- single-step for reconstructParMesh - no point merging for redistributePar -reconstruct
-
- Mar 05, 2021
-
-
Mark OLESEN authored
COMP: objective manager masks regIOobject::write function (#2005) See merge request !427
-
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- int64 ambiguity - std::array include - bsd-sed syntax (replaces gnu-sed syntax): * wmake-build-info * wmake-with-bear
-
- Mar 04, 2021
-
-
- return type of `eigenVectors` field functions should be `tensor` instead of `symmTensor`
-
-
- Mar 03, 2021
- Feb 22, 2021
-
-
Andrew Heather authored
Thermo ext See merge request Development/openfoam!424
-
Kutalmış Berçin authored
-
-
Adding thermo options for mass exchange Lee model for multiPhaseInter using tabulated type of thermos.
-
- Feb 19, 2021
-
-
Mark OLESEN authored
- pointPatches may or may not have a "value" type. Use the patch value field where possible and the internal field otherwise. Previously always used the internal field.
-
- Feb 17, 2021
-
-
Mark OLESEN authored
- the raw surface writer simply outputs x/y/z and field values. This additional flag allows recovery of some geometric information. - optional user-specified output precision Example, ``` formatOptions { raw { normal yes; precision 10; } } ```
-
Mark OLESEN authored
-
- Feb 16, 2021
-
-
- centralises existing functions (erfInv, incGamma*, invIncGamma*). Provides a location for additional functions in the future. - adjusted existing models to use these functions (e.g. distributionModels::normal)
-
-
Mark OLESEN authored
- location and naming more consistent with other controls old: DebugSwitch 'level' new: InfoSwitch 'outputLevel'
-
Mark OLESEN authored
- effectively 'steals' the pointer from the table but leaves its name as a placeholder
-
Mark OLESEN authored
- eliminates a potentially invalid code branch. Since it essentially had the same internals as std::swap anyhow, make that more evident. ENH: use std::swap for basic types - makes it clearer that they do not rely on any special semantics
-
Mark OLESEN authored
-
Mark OLESEN authored
- since the wrapped cmake calls generally use the regular build locations, add in MPI information to properly handle changes in that as well. This makes it easier to build for multiple MPI instances.
-
Mark OLESEN authored
- ensure surface writing is time-step and nFields aware. This avoids overwriting (ignoring) previous output fields. - allow sampled surfaces to be used for weight fields as well. Not sure why this restriction was still there. - remove old compatibility reading of orientedFields. Last used in v1612, now removed. - only use face sampling. For surfaceFieldValue we can only do something meaningful with face values. ENH: modify interface methods for surfaceWriter - replace direct modification of values with setter methods. Eg, old: writer.isPointData() = true; new: writer.isPointData(true); This makes it possible to add internal hooks to catch state changes. ENH: allow post-construction change to sampledSurface interpolation - rename interpolate() method to isPointData() for consistency with other classes and to indicate that it is a query. - additional isPointData(bool) setter method to change the expected representation type after construction - remove 'interpolate' restriction on isoSurfacePoint which was previously flagged as an error but within sampledSurfaces can use sampleScheme cellPoint and obtain representative samples. Relax this restriction since this particular iso-surface algorithm is slated for removal in the foreseeable future.
-
- Feb 15, 2021
-
-
sergio authored
-
sergio authored
1) Small modification to the tracking logic for detA zero. 2) Adding small vector displacement to locate function to avoid error where particle is inserted at the cell centre.
-
Andrew Heather authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-