fbd5a8363f
added new constructor
2009-05-26 11:22:04 +01:00
2d5fa6d2e9
Moving edgeMesh compilation after meshTools. Adding conformalVoronoiMesh.
2009-05-24 14:12:08 +01:00
f191a42448
Merge branch 'master' into cvm
2009-05-24 12:07:45 +01:00
17d6b425fc
removed coeffDict_ - already defind in parent injection model
2009-05-22 17:29:36 +01:00
449be34db9
adding trackedXXX to build
2009-05-22 17:02:01 +01:00
ab70815bd8
cosmetics
2009-05-22 16:33:08 +01:00
5ded294d68
removing cloudName - can get from name of objectRegistry
2009-05-22 16:28:28 +01:00
b04bc4c1c6
added hitPatch() routines
2009-05-22 16:24:53 +01:00
8b5e161973
cleaned up logic - valid face already checked in onBoundary()
2009-05-22 16:24:24 +01:00
c6feaace79
added copy constructors
2009-05-22 16:23:42 +01:00
7037f397dd
added particle current time function
2009-05-22 15:26:00 +01:00
e17ef8cfaa
cosmetics
2009-05-22 15:20:30 +01:00
b66e42e11a
added hitPatch() function
2009-05-22 14:57:03 +01:00
e009a15c83
refactoring cloudType -> cloudName
2009-05-22 14:50:17 +01:00
7c672a52a4
nicer code for find faces
2009-05-22 14:42:48 +01:00
bb8f7a286c
added function bodies for copy constructors
2009-05-22 14:30:55 +01:00
3b43ab0cfc
added new construct with size
2009-05-22 13:58:15 +01:00
b01210e58b
added prop headers for post-processing models
2009-05-22 13:54:08 +01:00
7a157d7b9b
updates
2009-05-22 13:44:12 +01:00
ca767e3045
adding IOList for partcels
2009-05-22 13:42:50 +01:00
5065b28748
added post-processing sub-models to build system
2009-05-22 13:38:17 +01:00
11dfd82fdc
removing old (now unused) file
2009-05-22 13:36:10 +01:00
796555d1e7
added copy, and updated clone constructors
2009-05-22 13:22:05 +01:00
fa89905b7d
adding particle tracking functionality
2009-05-22 13:14:22 +01:00
82fb5093bb
adding post-processing modelling capabilities
2009-05-22 13:11:48 +01:00
10c2f6bee0
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
2009-05-21 10:13:42 +01:00
8416ec4ebc
merging master, fixing conflict in surfaceFeatureExtract.
2009-05-20 18:40:50 +01:00
a0d9d0690a
Intermediate function for calling edge point group insertion, works out which
...
function to call.
Fixed error in calculating reflMasterPt in insertInternalEdgePointGroup.
Changed from do..while loop to while loop for iterative conformation to allow
the iterative part to be disabled by setting maxIterations = 0.
2009-05-20 18:22:18 +01:00
4459d245b7
updates to bring in to line with radiation lib
2009-05-20 17:31:46 +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
c8aa86841c
Added findEdgeNearestByType functions to allow simultaneous identification of
...
nearby pairs of edges of different type.
2009-05-19 19:20:30 +01:00
174efa305c
Merge branch 'lagrangianDev' into WBM
2009-05-19 18:27:02 +01:00
58871d4368
adding writeRegisteredObject
2009-05-19 18:18:56 +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
63daefa829
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
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
de937e59d1
typo - missing ()'s
2009-05-18 19:36:31 +01:00