Henry
7dfad7a74f
atomicWeights: Put in ascending order
2015-02-14 17:09:29 +00:00
Henry
9ac15414bf
Update header
2015-02-14 17:09:21 +00:00
Henry
e44376d363
Correct Info message
2015-02-14 17:09:07 +00:00
Henry
f9a8cb7cfc
dynamicLagrangian: Added template include
2015-02-14 16:43:27 +00:00
Henry
d9cc06f9f3
solidBodyMotionFunctions/SDA: Corrected the "See also"
...
Resolved bug-report http://www.openfoam.org/mantisbt/view.php?id=1529
2015-02-14 15:58:09 +00:00
Henry
0ddae8ba2c
turbulenceModels/LES/dynamicLagrangian: Added the Lagrangian averaged form of the dynamic Smagorinsky eddy-viscosity SGS model for LES
2015-02-14 15:52:08 +00:00
Henry
f58fd14271
Corrected capitalization of Doxygen documentation comments
2015-02-14 13:10:15 +00:00
Henry
fb68661de8
turbulenceModels/LES/dynamicKEqn/dynamicKEqn: Added dynamic version of the one-equation SGS model
2015-02-14 13:08:08 +00:00
Henry
3f7e377240
Minor correction
2015-02-14 11:07:57 +00:00
Henry
31fd2512fb
GeometricField: Do not transfer registration of a GeometricField to a copy unless it is being transferred from a tmp
...
This avoids loosing the registration of non-tmp fields
2015-02-13 21:40:45 +00:00
Henry
f17071cf70
constTransport: Avoid /0 in + and - operators averaging 1/Pr when the number of moles = 0
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1348
2015-02-13 12:41:34 +00:00
Henry
d57fcc90a0
mapFields: Corrected handling of fixed value BCs
...
Fix provided by Mattijs Janssens
2015-02-13 12:41:10 +00:00
Henry
63938fb3d3
decomposePar: Do not register Lagrangian IOFields as the names may conflict with those of volFields
...
Required change to IOobjectList to support the optional no-registration specification
2015-02-12 21:59:17 +00:00
Henry
e636b7c73b
Correct section comment: there can only be one destructor
2015-02-12 21:57:29 +00:00
Henry
53a2a040c2
Update headers
2015-02-12 15:10:29 +00:00
Henry
c539718f40
thermophysicalModels: Don't register derived fields such as Cp to avoid name conflicts in the objectRegistry
2015-02-12 15:08:57 +00:00
Henry
87de4f028c
Avoid registration of variables which may generate name conflicts
2015-02-12 13:24:51 +00:00
Henry
862697d49f
Update header
2015-02-12 13:19:47 +00:00
Henry
ef0d2397ae
Name intermediate fields to avoid duplicate registration
2015-02-12 13:19:28 +00:00
Henry
7d3f1067c7
Update headers
2015-02-12 12:34:27 +00:00
Henry
018de2e37a
Name fields to avoid duplicate registration
2015-02-12 12:33:45 +00:00
Henry
017855b877
Update headers
2015-02-12 10:01:10 +00:00
Henry
4003887517
Do not register temporaries
2015-02-12 10:00:53 +00:00
Henry
356cbd27f7
TurbulenceModels: No need to explicitly correct for boundedness, use the "bounded" scheme instead
2015-02-12 09:58:17 +00:00
Henry
6f63b722e0
TurbulenceModels: Do not register temporaries
2015-02-12 09:57:45 +00:00
Henry
ee9bef30fe
TurbulenceModels/turbulenceModels/RAS/v2f: Name the Ts variable Ts
2015-02-12 09:56:47 +00:00
Henry
43012d3833
kOmegaSST: correct nut from the S2 already available
2015-02-12 09:55:52 +00:00
Henry
c13136511a
kOmegaSST: Updated to be consistent with the latest version in OpenFOAM-2.3.x
2015-02-11 15:59:16 +00:00
Henry
e939d1de79
Solvers: Rationalized correctPhi
2015-02-11 13:22:24 +00:00
Henry
50c38dfdaa
LESModel and RASModel: Call read for immediate base-class rather than for the turbulenceModel class
2015-02-10 17:33:04 +00:00
Henry
5944f12a38
turbulenceModel: Correct handling of IOdictionary writing to support timeStampMaster
2015-02-10 17:32:27 +00:00
Henry
78f8e84d01
pimpleControl and pisoControl: Rationalize PISO and PIMPLE control
2015-02-10 13:47:18 +00:00
Henry
ca026b5dc7
Updated headers to ensure the class name declared to Doxygen is in the appropriate namespace
...
Also moved global classes which should be in the Foam namespace into it.
2015-02-09 14:43:11 +00:00
Henry
121a8f32bd
Corrected typo
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1514
2015-02-08 20:27:22 +00:00
Henry
1a05f2ad42
turbulenceModels/RAS/SSG: Added Speziale, Sarkar and Gatski pressure-strain based Reynolds-stress turbulence model
2015-02-06 23:08:45 +00:00
Henry
e5d9392caa
turbulenceModels/RAS/LRR: Added re-reading of wall-reflection coefficients
2015-02-06 20:50:20 +00:00
Henry
e18ebd2a38
LRR: added comment
2015-02-06 20:41:33 +00:00
Henry
b255f54120
turbulenceModels/RAS/LRR: Added optional Gibson-Launder wall-reflection
2015-02-06 17:38:04 +00:00
Henry
9d575335e1
regionCoupledBase: corrected output name for nbrRegionName_
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1511
2015-02-06 15:30:47 +00:00
Henry
e72b2557d5
PolynomialEntry: Templated polynomial DataEntry to support all basic field types from scalar to tensor
...
This allows polynomial functions for e.g. velocity to be specified in the uniformFixedValue BC
Consider a linear function for Ux(t) with Uy and Uz = 0:
inlet
{
type uniformFixedValue;
uniformValue polynomial
(
((10 0 0) (0 0 0))
((100 0 0) (1 0 0))
);
}
Resolves bug report http://www.openfoam.org/mantisbt/view.php?id=1508
2015-02-06 09:57:20 +00:00
Henry
0b7c2ee470
registerSwitch: rationalization of info and optimization switch registration
...
plus support for other than integer types
2015-02-05 18:10:42 +00:00
Henry
8e77fbc222
primitiveMeshTools: stabilize with VSMALL rather than SMALL to avoid problems with very small meshes
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1509
2015-02-05 16:31:29 +00:00
Henry
608145622b
fvMotionSolverEngineMesh: construct the motionSolver from the engineTime IOdictionary
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=774
2015-02-05 12:27:46 +00:00
Henry
c328c68638
gradingDescriptor: support SP compilation
2015-02-05 12:11:55 +00:00
Henry
c2aee2f2e2
mapFields: Minimum hack provided by Mattijs to get mapFields working again
...
This version is very inefficient in parallel and does not provide the
-parallelSource or -parallelTarget options which will need to be
reinstanted in the future or we could revert mapFields to the
OpenFOAM-2.2 version.
2015-02-05 12:09:34 +00:00
Henry
02ba39d93c
Rationalized handling of debug, info and opt switches
2015-02-05 10:43:10 +00:00
Henry
ec922fb419
isoSurfaceCellTemplates: Skip undefined tets
...
Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1506
2015-02-04 23:06:31 +00:00
Henry
ebc88a4680
MRFSource: Update the velocity boundary conditions for changes in rotation speed
2015-02-04 23:03:45 +00:00
Henry
c481b625ef
kLowReWallFunction: Limit k to avoid failure of the turbulence model due to division by k
2015-02-04 22:11:15 +00:00
Henry
287e970b18
Update headers
2015-02-04 22:11:06 +00:00