- Sep 18, 2017
-
-
Mark OLESEN authored
- Any trailing whitespace when parsing from strings or character buffers is ignored rather than being treated as an error. This is consistent with behaviour when reading from an Istream and with leading whitespace being ignored in the underlying atof/atod, strtof/strtod... functions. - Allow parsing directly from a std::string instead of just from a 'char*'. This reflects the C++11 addition of std::stod to complement the C functions strtod. This also makes it easier to parse string directly without using an IStringStream. - Two-parameter parsing methods return success/failure. Eg, if (readInt32(str, &int32Val)) ... - One-parameter parsing methods return the value on success or emit a FatalIOError. Eg, const char* buf; int32Val = readInt32(buf, &); - Improved consistency when parsing unsigned ints. Use strtoimax and strtoumax throughout. - Rename readDoubleScalar -> readDouble, readFloatScalar -> readFloat. Using the primitive name directly instead of the Foam typedef for better consistency with readInt32 etc. - Clean/improve parseNasScalar. Handle normal numbers directly, reduce some operations.
-
- Sep 15, 2017
-
-
Mark OLESEN authored
-
- Sep 22, 2017
-
-
Andrew Heather authored
Integration openfoam.org See merge request !144
-
- Sep 21, 2017
- Sep 18, 2017
-
-
Andrew Heather authored
-
mattijs authored
-
mattijs authored
Note that now mirrorMesh does not delete empty patches anymore.
-
- Sep 15, 2017
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Sep 12, 2017
-
-
Mark OLESEN authored
Feature paraview clouds See merge request !145
-
Mark OLESEN authored
- Can occur if the selected geometry does not actually exist. A non-critical bug since paraview catches this anyhow and just emits a warning message.
-
Mark OLESEN authored
- previous only checked for clouds at the last instance and only detected lagrangian fields from the first cloud. Now check for clouds at all instances and detect all of their fields as well.
-
Mark OLESEN authored
Feature surface field value operations See merge request !141
-
Mark OLESEN authored
Feature surface scaling See merge request !139
-
- Sep 11, 2017
-
-
Mark OLESEN authored
- affects surfaceFieldValue, volFieldValue. Use 'none' (if desired) to explicitly suppress the weightField, but generally better to use a different operation.
-
Mark OLESEN authored
- relocate as Test-surfaceMeshConvert.
-
- Sep 09, 2017
-
-
Based on code contributed by SeongMo Yeon Resolves feature request https://bugs.openfoam.org/view.php?id=2656
-
- Sep 08, 2017
-
-
sergio authored
ENH: Adding required interpolation for alpha.water in fvSchemes for overInterDyMFoam floatingBody tutorial
-
sergio authored
-
Andrew Heather authored
-
- Sep 07, 2017
- Sep 06, 2017
- Aug 31, 2017
-
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-
Mattijs Janssens authored
ENH: Adds basic information for faceZone and cellZones during checkMesh (fixes #560) See merge request !142
-
Prashant Sonakar authored
-
- Aug 30, 2017
-
-
mattijs authored
-
Andrew Heather authored
BugFix: corrected keyword for flowRateInletVelocity BC fixes #577 Closes #577 See merge request !143
-
Prashant Sonakar authored
-
Prashant Sonakar authored
-
- Aug 29, 2017
-
-
mattijs authored
There are a few issues: - error would only throw exceptions if not parallel - if we change this we also need to make sure the functionObjectList construction is synchronised - bounding box overlap was not returning the correct status so the code to avoid the issue of 'badly formed bounding box' was not triggered.
-
- Aug 28, 2017
-
-
Prashant Sonakar authored
-
- Aug 18, 2017
-
-
Prashant Sonakar authored
fixes #560
-
- Aug 17, 2017
-
-
-
mattijs authored
-