- May 06, 2021
-
-
Mark OLESEN authored
-
- Apr 26, 2021
-
-
Mark OLESEN authored
- some code used copy construct from dictionary::null instead. The result is the same but suggests that something else may be intended. Only need dictionary::null for const-ref usage.
-
- Mar 18, 2021
-
-
sergio authored
-
- Dec 21, 2020
-
-
Andrew Heather authored
Calculates the mass flux for surface film models. Example usage: filmFlux { type filmFlux; writeControl writeTime; result myPhi; // optional }
-
- Jul 16, 2020
-
-
Mark OLESEN authored
- cleaner code, more similarity with unique_ptr Now if (ptr) if (!ptr) instead if (ptr.valid()) if (!ptr.valid())
-
Mark OLESEN authored
- less clutter using plain tests with the bool operator: (!ptr) vs (ptr.empty()) (ptr) vs (!ptr.empty())
-
- Jun 24, 2020
-
-
- Jun 02, 2020
-
-
Mark OLESEN authored
- previously introduced `getOrDefault` as a dictionary _get_ method, now complete the transition and use it everywhere instead of `lookupOrDefault`. This avoids mixed usage of the two methods that are identical in behaviour, makes for shorter names, and promotes the distinction between "lookup" access (ie, return a token stream, locate and return an entry) and "get" access (ie, the above with conversion to concrete types such as scalar, label etc).
-
- May 04, 2020
-
-
Mark OLESEN authored
-
- May 01, 2020
-
-
Mark OLESEN authored
-
- Apr 28, 2020
-
-
Mark OLESEN authored
- use dictionary::get<..> instead of lookup in a few more places
-
- Apr 06, 2020
-
-
sergio authored
Now the thermal baffle can be extrapolated from a patch which is coupled to the bottom patch of the solid region. The user can set the T bc on the 'top' patch of the solid. The new keyword is 'internal' and its default is true. Check new tutorial for an example: tutorials/heatTransfer/buoyantSimpleFoam/roomWithThickCeiling/
-
- Mar 26, 2020
-
-
Andrew Heather authored
-
- Feb 21, 2020
-
-
Mark OLESEN authored
-
- Feb 19, 2020
-
-
- reduces the number of parameters that are being passed around and allows future additions into the IOstreamOption with mininal effort.
-
- Jan 13, 2020
-
-
Andrew Heather authored
-
- Nov 13, 2019
-
-
Mark OLESEN authored
-
- Oct 31, 2019
-
-
OpenFOAM bot authored
-
- Nov 06, 2019
-
-
Mark OLESEN authored
-
- Oct 01, 2019
-
-
sergio authored
-
- Oct 02, 2019
-
-
OpenFOAM bot authored
-
- Sep 20, 2019
-
-
sergio authored
-
- Jul 16, 2019
-
-
Mark OLESEN authored
-
- Jul 12, 2019
-
-
Mark OLESEN authored
-
- Jun 26, 2019
-
-
Andrew Heather authored
-
- Apr 28, 2019
-
-
Mark OLESEN authored
- Eg, with surface writers now in surfMesh, there are fewer libraries depending on conversion and sampling. COMP: regularize linkage ordering and avoid some implicit linkage (#1238)
-
- May 17, 2019
-
-
Mark OLESEN authored
-
- Jan 23, 2019
-
-
Mark OLESEN authored
- retrieved value for the modelType was masked by a local variable
-
- Jan 07, 2019
-
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
- Feb 13, 2019
-
-
Mark OLESEN authored
-
- Feb 06, 2019
-
-
OpenFOAM bot authored
-
- Jan 18, 2019
-
-
Mark OLESEN authored
-
- Jan 09, 2019
-
-
Mark OLESEN authored
-
- Jan 03, 2019
-
-
Mark OLESEN authored
- provide a lookupOrDefault constructor form, since this is a fairly commonly used requirement and simplifies the calling sequence. Before dimensionedScalar rhoMax ( dimensionedScalar::lookupOrDefault ( "rhoMax", pimple.dict(), dimDensity, GREAT ) ); After dimensionedScalar rhoMax("rhoMax", dimDensity, GREAT, pimple.dict()); - read, readIfPresent methods with alternative lookup names. - Mark the Istream related constructors with compile-time deprecated warnings. BUG: read, readIfPresent methods not handling optional dimensions (#1148)
-
- Dec 11, 2018
-
-
Mark OLESEN authored
- makes the intent clearer and avoids the need for additional constructor casting. Eg, labelList(10, Zero) vs. labelList(10, 0) scalarField(10, Zero) vs. scalarField(10, scalar(0)) vectorField(10, Zero) vs. vectorField(10, vector::zero)
-
- Oct 19, 2018
-
-
Mark OLESEN authored
-
- Oct 17, 2018
-
-
Mark OLESEN authored
New name: findObject(), cfindObject() Old name: lookupObjectPtr() Return a const pointer or nullptr on failure. New name: findObject() Old name: -- Return a non-const pointer or nullptr on failure. New name: getObjectPtr() Old name: lookupObjectRefPtr() Return a non-const pointer or nullptr on failure. Can be called on a const object and it will perform a const_cast. - use these updated names and functionality in more places NB: The older methods names are deprecated, but continue to be defined.
-
- Oct 15, 2018
-
-
Mark OLESEN authored
- use keyType::option enum to consolidate searching options. These enumeration names should be more intuitive to use and improve code readability. Eg, lookupEntry(key, keyType::REGEX); vs lookupEntry(key, false, true); or Eg, lookupEntry(key, keyType::LITERAL_RECURSIVE); vs lookupEntry(key, true, false); - new findEntry(), findDict(), findScoped() methods with consolidated search options for shorter naming and access names more closely aligned with other components. Behave simliarly to the methods lookupEntryPtr(), subDictPtr(), lookupScopedEntryPtr(), respectively. Default search parameters consistent with lookupEntry(). Eg, const entry* e = dict.findEntry(key); vs const entry* e = dict.lookupEntryPtr(key, false, true); - added '*' and '->' dereference operators to dictionary searchers.
-
- Oct 12, 2018
-
-
Mark OLESEN authored
- use the dictionary 'get' methods instead of readScalar for additional checking Unchecked: readScalar(dict.lookup("key")); Checked: dict.get<scalar>("key"); - In templated classes that also inherit from a dictionary, an additional 'template' keyword will be required. Eg, this->coeffsDict().template get<scalar>("key"); For this common use case, the predefined getXXX shortcuts may be useful. Eg, this->coeffsDict().getScalar("key");
-
- Oct 01, 2018
-
-
Mark OLESEN authored
- can now construct with READ_IF_PRESENT and use count() to determine if it was loaded. names() and sortedNames() for a collected overview.
-