951c8436aa
ENH: Applying Gijs' patch: Update header documentation for utilities
2013-02-21 10:54:34 +00:00
bc57d89d01
COMP: setSet: extraneous library
2013-01-03 16:13:16 +00:00
d1767ccaca
BUG: setSet: use c string
2012-02-06 10:28:46 +00:00
cd01c8f1a2
BUG: mergePolyMesh: merging zones
2012-02-03 15:53:37 +00:00
acba38b8aa
ENH: setSet: do not exit upon error if in interactive mode
2011-11-16 11:52:40 +00:00
c2dd153a14
Copyright transfered to the OpenFOAM Foundation
2011-08-14 12:17:30 +01:00
1e2832fd7d
Corrected class names in the file descriptions
2011-07-19 17:26:55 +01:00
eaef8d482b
STYLE: Updated 1991 start copyright year to 2004
2011-01-14 16:08:00 +00:00
099cc39e2e
Revert "STYLE: 2011 copyright date."
...
This reverts commit b18f6cc1ce .
2011-01-05 18:24:29 +00:00
b18f6cc1ce
STYLE: 2011 copyright date.
2011-01-05 11:14:26 +00:00
cbfb01db4e
ENH: setSet : parallel reduction of stats
2010-12-08 17:33:02 +00:00
6261ef058b
ENH: setSet : proper exit upon eof
2010-10-25 12:22:25 +01:00
012494fdb5
STYLE: Fixing code style requirements for all apps.
...
Exception: applyWallFunctionBoundaryConditions.C cannot split #include
directives.
2010-07-27 15:27:05 +01:00
1a17581567
STYLE: consistent handling of compile/link flags for fileMonitor and setSet
2010-06-08 14:35:11 +02:00
925202da2e
ENH: have -noSync option to prevent topoSet/setSet automatically syncing coupled faces.
2010-05-12 15:52:19 +01:00
147fa2a75d
STYLE: add notes to some (most) command-line options
...
- mapFields and splitMeshRegions need more clarification
2010-04-27 10:50:15 +02:00
42807ddd7e
STYLE: fix worst spacing violations for 'os <<' constructions
...
- accept some violations of the coding guidelines though
- perhaps adding a style exception would be simpler.
2010-04-13 17:45:49 +02:00
d29c438657
STYLE: use url for FSF license instead of postal address, switch to GPL v3
2010-03-29 14:07:56 +02:00
9c60eb17d1
ENH: strip off comment lines
2010-03-18 14:38:44 +00:00
91967fb196
COMP: compiling setSet directly (without Allwmake) now works
2010-02-22 13:51:17 +01:00
689d4b2860
ENH: provide operator[] for accessing argList options.
...
- operator[] with label -> get args at index
- operator[] with word -> get named option
2010-02-17 11:43:42 +01:00
20ac00f67c
ENH: have -loop option on setSet to enable -batch over a set of directories.
...
Only allowed in batch mode. Causes any set to be written to time directory
instead of facesInstance.
2010-01-29 11:43:28 +00:00
8b7f6666ca
ENH: sets are now searched for.
...
Some tools now output sets at the pointsInstance (if relating to geometry),
some at the facesInstance (if relating to topology).
So when loading them we now search for them from current time down
to facesInstance. They cannot be beyond facesInstance.
Adapted Time::findInstance to take optional limiting instance. Adapted
topoSet to use this. Adapted all uses of IOobjectList on sets to do the
same.
2010-01-29 10:25:13 +00:00
b7ba2d273a
Corrected printing to be on master only
2010-01-15 17:15:42 +00:00
37c4f2f375
remove empty 'Description' from various .C files
2009-12-04 14:11:33 +01:00
5e972c772f
remove trailing space from some files
2009-12-04 13:39:35 +01:00
58b7e64185
Use argList::addOption, argList::addBoolOption (almost) everywhere
...
- ensure that the standard options (eg, from timeSelector) also have
some usage information
2009-12-03 13:32:12 +01:00
fa93ce8cd7
coding style adherence
...
- markup codingStyleGuide.org examples so they actually indent correctly
- use 'Info<<' as per codingStyleGuide instead of 'Info <<'
2009-11-27 15:39:14 +01:00
69a4c76c6e
changed help text
2009-11-03 18:08:53 +00:00
7e985f898e
added remove command
2009-09-24 23:48:19 +01:00
72cacc9588
added zoneSets
2009-09-24 18:39:04 +01:00
791b5aaeaa
replacing isType with isA to enable directMappedWall to work
2009-09-15 17:51:59 +01:00
077b6ec769
extraneous include files
2009-07-15 12:03:43 +01:00
12a924a3f5
no backup of old set
2009-06-30 22:17:20 +01:00
8edf105c45
cleanup of time handling (cosmetic changes), used timeSelector in more places
2009-05-20 15:40:30 +02:00
d1295da31f
adjust solvers and utilities to use new argList methods
...
- also drop various unused time options from src/OpenFOAM/include
2009-05-19 20:21:50 +02:00
be8cbc1018
use timeSelector mechanism in a few more utilities
2009-03-23 16:57:26 +01:00
0128b2be68
UIndirectList
2009-03-12 19:25:21 +00:00
ffd9bb08a8
OSspecific: altered file tests
...
- removed the previously added fileName type(), isDir(), isFile() methods.
- added optional bool parameter to isFile() function to explicitly
enable/disable the check for gzip files.
- fixed minor bugginess where the default usage of isFile() would result in
false positive matches.
- be slightly more stringent and use isDir() and isFile() instead of
exists() function when we actually know the expected type.
2009-02-06 10:25:41 +01:00
95dcb6ded7
Simplify checking of container (List/HashTable, strings) sizes
...
- can use 'XX.empty()' instead of 'XX.size() == 0', 'XX.size() < 1' or
'XX.size() <= 0' or for simpler coding.
It also has the same number of characters as '!XX.size()' and /might/ be
more readable
- many size checking had 'XX.size() > 0', 'XX.size() != 0', or 'XX.size() >= 1'
when a simple 'XX.size()' suffices
2009-01-10 20:28:06 +01:00
cdd2266467
Merge commit 'OpenCFD/master' into olesenm
...
Conflicts:
src/OpenFOAM/db/IOstreams/Pstreams/IPstream.C
src/OpenFOAM/db/IOstreams/Pstreams/OPstream.C
2009-01-07 09:39:17 +01:00
eb2e37b296
SiCortex port
2009-01-06 21:41:20 +00:00
28b200bcd9
update copyrights for 2009
2008-12-31 19:01:56 +01:00
345df1e970
Merge commit 'OpenCFD/master' into olesenm
2008-11-05 10:42:05 +01:00
5d0b3348c5
can call Allwmake scripts directly instead of with ( cd foo && ./Allwmake )
2008-11-05 10:39:06 +01:00
3403802282
region option
2008-10-28 21:07:59 +00:00
d5d80f0181
modified remaining Allwmake scripts to run from anywhere
2008-09-19 14:47:06 +02:00
8e3d196ec8
logic
2008-07-15 22:06:26 +01:00
46c6422976
corrected logic
2008-07-01 18:17:07 +01:00
02cabc3cf2
updated Copyright (C) \d+-2008 OpenCFD Ltd.
2008-06-25 15:01:46 +02:00