Commit Graph

2836 Commits

Author SHA1 Message Date
eefaf72069 Added four dsmc tutorials and run/clean scripts. 2009-06-18 14:52:31 +01:00
edcf49af67 More modified copyright years 2009-06-17 14:59:34 +01:00
80ef3117bf Moving Tref from Cloud to models, to be read from coeffDict 2009-06-17 14:48:14 +01:00
774dcafb45 Merge branch 'master' into dsmc 2009-06-17 14:38:47 +01:00
aac4dc6e49 Modified copyright years 2009-06-17 14:30:24 +01:00
88ea18c3a7 change to QMAKE_PATH 2009-05-22 12:32:17 +01:00
71a73d9490 removing duplicate file 2009-05-22 11:57:05 +01:00
cc5506f103 Added backward compatibility in the naming of the ParaView directory. 2009-05-21 18:29:13 +01:00
a562395687 Allow the setting of the Qt version via the path to the appropriate qmake. 2009-05-21 17:45:56 +01:00
10c2f6bee0 Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev 2009-05-21 10:13:42 +01:00
287fd398e2 adding missed file from tutorial 2009-05-20 17:37:54 +01:00
4459d245b7 updates to bring in to line with radiation lib 2009-05-20 17:31:46 +01:00
69e2eefdb0 added new coalChemisryFoam tutorial 2009-05-20 17:30:21 +01:00
c7ab2fcc4c changed field name 2009-05-20 16:05:10 +01:00
57bc6a726a Merge branch 'lagrangianDev' into WBM 2009-05-20 14:58:43 +01:00
a9e1faf9c3 removing const-ness 2009-05-20 14:58:27 +01:00
5866b3a114 correcting signs for return heat of reaction 2009-05-20 14:54:12 +01:00
6ec44522c0 Merge branch 'lagrangianDev' into WBM 2009-05-20 14:50:30 +01:00
0696e9aa44 corrections to chemical enthalpy transfer 2009-05-20 14:50:08 +01:00
8edf105c45 cleanup of time handling (cosmetic changes), used timeSelector in more places 2009-05-20 15:40:30 +02:00
7941b04785 Merge commit 'OpenCFD/master' into olesenm 2009-05-19 21:15:56 +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
174efa305c Merge branch 'lagrangianDev' into WBM 2009-05-19 18:27:02 +01:00
5ccff5ffca updated version in header to 1.5.x 2009-05-19 18:23:41 +01:00
58871d4368 adding writeRegisteredObject 2009-05-19 18:18:56 +01:00
30baccd509 adding reactingParcelFoam tutorial 2009-05-19 17:54:45 +01:00
4fa5f74f8a using null constructor for none option 2009-05-19 17:37:41 +01:00
c4ac52e6b0 fix: taking carrier specie id 2009-05-19 17:37:04 +01:00
724b034cc7 argList enhancement: added convenience methods for accessing options
Oriented somewhat on dictionary methods.

Return the argument string associated with the named option:
    Info<< "-foo: " << args.option("foo") << nl;

Return true if the named option is found
    if (args.optionFound("foo")) ...

Return an IStringStream to the named option
    old:      value = readScalar(IStringStream(args.options()["foo"])());
    newer:    value = readScalar(args.optionLookup("foo")());
    also:     List<scalar> lst(args.optionLookup("foo")());

Read a value from the named option
    newest:   value = args.optionRead<scalar>("foo");

Read a value from the named option if present.
    old:  if (args.options().found("foo"))
          {
              value = readScalar(IStringStream(args.options()["foo"])());
          }
    new:  args.optionReadIfPresent("foo", value);

Read a List of values from the named option
    patches = args.optionReadList<word>("patches");

Didn't bother adding optionReadListIfPresent<T>(const word&), since it
probably wouldn't be common anyhow.
2009-05-19 18:19:49 +02:00
55e766bd67 Fix: edge lookup from edgeLabels_ by index rather than just from edges 2009-05-19 15:48:54 +01:00
3efc299dea multiple updates 2009-05-19 15:06:43 +01:00
bbb9e52353 updates to surface reaction models 2009-05-19 15:05:18 +01:00
5dbc2e53c1 moved h-eqn out of PISO loop 2009-05-19 15:03:39 +01:00
04064d110b fixed: wrong calculation of H1 2009-05-19 15:03:00 +01:00
1d2a94c38b HashTable minor iterator issues
- made const_iterator::operator* and const_iterator::operator() const only
- added const versions of iterator::operator* and iterator::operator()
2009-05-19 13:14:54 +02:00
ef1f480257 adding path to meshTools/lnInclude 2009-05-19 10:02:53 +01:00
de937e59d1 typo - missing ()'s 2009-05-18 19:36:31 +01:00
a723b85abd updates to enable requested field activated injection 2009-05-18 19:04:04 +01:00
f2f7b74f03 added pre-factor for reference field 2009-05-18 19:02:16 +01:00
6f68f6fb20 typo - missing ()'s 2009-05-18 19:36:31 +01:00
868e2e4096 adding path to meshTools/lnInclude 2009-05-19 10:02:53 +01:00
2ca4831e61 multiple updates 2009-05-19 15:06:43 +01:00
8883e2b87e fixed: wrong calculation of H1 2009-05-19 15:03:00 +01:00
98fc11e827 added pre-factor for reference field 2009-05-18 19:02:16 +01:00
2f5178f60c updates 2009-05-18 18:05:17 +01:00
13a61cb519 Merge branch 'lagrangianDev' into WBM 2009-05-18 17:13:47 +01:00
f97e559be8 Merge branch 'master' into lagrangianDev 2009-05-18 17:10:02 +01:00
f6108ac023 updated copyright notices 2009-05-18 17:04:50 +01:00
c7d2bbec32 updates 2009-05-18 17:01:58 +01:00
04b673aada added new models 2009-05-18 17:01:20 +01:00