mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
functionObjects::streamLine: Reinstated default "U"
This commit is contained in:
@ -311,7 +311,7 @@ bool Foam::functionObjects::streamLine::read(const dictionary& dict)
|
|||||||
Info<< type() << " " << name() << ":" << nl;
|
Info<< type() << " " << name() << ":" << nl;
|
||||||
|
|
||||||
dict.lookup("fields") >> fields_;
|
dict.lookup("fields") >> fields_;
|
||||||
dict.lookup("U") >> UName_;
|
UName_ = dict.lookupOrDefault("U", word("U"));
|
||||||
|
|
||||||
if (findIndex(fields_, UName_) == -1)
|
if (findIndex(fields_, UName_) == -1)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -72,7 +72,7 @@ Usage
|
|||||||
Property | Description | Required | Default value
|
Property | Description | Required | Default value
|
||||||
type | Type name: streamLine | yes |
|
type | Type name: streamLine | yes |
|
||||||
setFormat | Output data type | yes |
|
setFormat | Output data type | yes |
|
||||||
U | Tracking velocity field name | yes |
|
U | Tracking velocity field name | no | U
|
||||||
fields | Fields to sample | yes |
|
fields | Fields to sample | yes |
|
||||||
lifetime | Maximum number of particle tracking steps | yes |
|
lifetime | Maximum number of particle tracking steps | yes |
|
||||||
trackLength | Tracking segment length | no |
|
trackLength | Tracking segment length | no |
|
||||||
|
|||||||
Reference in New Issue
Block a user