- Feb 01, 2019
-
-
sergio authored
-
sergio authored
from e to T. T proved to be more generic solution.
-
Andrew Heather authored
Add minMax and clip field functions See merge request OpenFOAM-plus!230
-
Mark OLESEN authored
-
Mark OLESEN authored
STYLE: avoid local variable name masking
-
- Jan 29, 2019
-
-
Mark OLESEN authored
- changed ensightOutput from a class solely comprising static methods to a namespace and added in sub-namespaces Detail and Serial. This makes it easier to "mix-in" functions at different levels. Refactored and combined some serial/parallel code where possible. The general ensightOutput namespace has now shifted to be in the fileFormats lib, while leaving volField outputs in the conversion lib and cloud outputs in the lagrangian-intermediate lib. The ensightCloud namespace is now simply folded into the new ensightOutput namespace. These changes clean up some code, reduce fragmentation and duplication and removes the previous libconversion dependency for sampling. - use int for ensight nTypes constexpr Note: issue #1176 is unaffected except for the change in file name: ensightOutputTemplates.C -> ensightOutputVolFieldTemplates.C
-
- Jan 31, 2019
-
-
Andrew Heather authored
Function object updates See merge request OpenFOAM-plus!231
-
mattijs authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- allows localized extension of functionality
-
Mark OLESEN authored
-
Mark OLESEN authored
-
mattijs authored
-
- Jan 30, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- improved the selection mechanism to include using a bitSet cell selection (more efficient and convenient). Use templated implementation internally to remove the previous reliance on a NullObject.
-
- Jan 29, 2019
-
-
Andrew Heather authored
Example usage: continuityError1 { type continuityError; libs ("libfieldFunctionObjects.so"); ... writeToFile yes; log yes; phi phi; }
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
- Jan 28, 2019
-
-
Mark OLESEN authored
Eg, #define FOAM_CONFIGURED_PROJECT_ETC "/usr/share/openfoam/etc" This provides some easy to file patching locations, but is not yet integrated in the build system at all.
-
Mark OLESEN authored
- in some circumstances we need to pass a bool value upwards to the caller and know if the true/false value was set based on real input or is a default value. Eg, in the object::read() we might normally have enabled_(dict.readIfPresent(key, true)); but would lose information about why the value is true/false. We can change that by using enabled_(dict.readIfPresent<Switch>(key, Switch::DEFAULT_ON)); After which we can use this information is testing. if ( child.enabled().nonDefault() ? child.enabled() : parent.enabled() ) { ... } And thus enable output if the parent requested it explicitly or by default and it has not been explicitly disabled in the child. No difference when testing as a bool and the text representation of DEFAULT_ON / DEFAULT_OFF will simply be "true" / "false". ENH: add construction of Switch from dictionary (similar to Enum)
-
Mark OLESEN authored
- avoids removal of files and the dummy fallback
-
mattijs authored
-
mattijs authored
-
Andrew Heather authored
Feature snappy hex mesh check See merge request OpenFOAM-plus!229
-
- Jan 26, 2019
-
-
Mark OLESEN authored
- as well as being more convenient to find, this is necessary when the OpenFOAM installation is without sources or tutorials
-
Mark OLESEN authored
-
Mark OLESEN authored
- older emacs tools into legacy - old process tools * Less frequently used scripts into bin/tools/ - findEmptyMake - foamAllHC - foamUpdateCaseFileHeader * Infrastructure file (only used by foamNewApp) - wmake/wmakeFilesAndOptions -> wmake/scripts/wmakeFilesAndOptions * Merge wmakeRoot convenience as 'wmake -pwd' * Remove obsolete wmakePrintBuild (superseded by wmakeBuildInfo) * Remove unused mergeHistory file
-
Mark OLESEN authored
Previously silently accepted '-o' as being equivalent to '-output', but the former could be misinterpreted meaning an output file (which it is not) instead of an output directory.
-
- Jan 25, 2019
-
-
Mark OLESEN authored
- instead of WM_COMPILER=GccKNL WM_COMPILE_OPTION=Opt -> linux64GccKNLDPInt32Opt now specify WM_COMPILER=Gcc WM_COMPILE_OPTION=OptKNL -> linux64GccDPInt32OptKNL This makes it easier (and more obvious) for adding different tweaks without needing to generate too many files. Eg, cd wmake/rules/linux64Gcc cp cOpt cOptBdw cp c++Opt c++OptBdw edit these two files and then use WM_COMPILE_OPTION=OptBdw CONFIG: provide some default c/c++ flags in General compiler rules - can make is easier when deriving new compile options, and ensures that '-02' is enabled as an initial default.
-
Mark OLESEN authored
- finds the correct root directory location before creating the lnInclude directory Eg, from within something like src/finiteVolume/fields/fvPatchFields/.. wmakeLnInclude -update -root it backtracks to find the top-level directory with Make/ and makes the lnInclude directory there: Using /home/mark/openfoam/OpenFOAM-plus/src/finiteVolume ln: /home/mark/openfoam/OpenFOAM-plus/src/finiteVolume/lnInclude
-
Mark OLESEN authored
- Can result in inadvertent conversions where the user should really know or check if the pointer is valid prior to using. - Still have several places to fix that are using the deprecated copy construct and copy assignment
-
Mark OLESEN authored
- workaround for some old compilers many years ago, but no longer relevant
-
Mark OLESEN authored
-
Mark OLESEN authored
- in the previous version, a specification such as (U "U.*") would have selected the field name twice for writing
-
Mark OLESEN authored
- can also be used for other purposes. Eg, if (ListOps::found(list, matcher)) { ... } vs. if (!findStrings(matcher, list).empty()) { ... }
-
Mark OLESEN authored
- add compile-time detection of deprecated findIndex() function - replace occurrences of findIndex() with the equivalent container method
-
Mark OLESEN authored
- simply a functionObject with an additional Time reference, which is a combination frequently used by concrete functionObjects
-
- Jan 24, 2019
-
-
Mark OLESEN authored
- use for-range when iterating - dictionary access/search methods - autoPtr for memory management
-
- Jan 25, 2019
-
-
Mark OLESEN authored
-