mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
TUT: update tutorials to use dictionary-style sets
- can now specify sampled sets as dictionary entries instead of a list
entry.
can now use: sets { ... }
instead of: sets ( ... );
This is similar to sampled surfaces and makes it easier to
manage with dictionary manipulation tools.
TUT: update to use writeTime instead of outputTime
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/*--------------------------------*- C++ -*----------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: v2112 |
|
||||
| \\ / O peration | Version: v2206 |
|
||||
| \\ / A nd | Website: www.openfoam.com |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
@ -52,8 +52,12 @@ functions
|
||||
libs (sampling);
|
||||
writeControl onEnd;
|
||||
setFormat raw;
|
||||
interpolationScheme cellPoint;
|
||||
|
||||
fields (T);
|
||||
|
||||
sets
|
||||
(
|
||||
{
|
||||
line1
|
||||
{
|
||||
type uniform;
|
||||
@ -64,9 +68,7 @@ functions
|
||||
end (1 0 0.00501);
|
||||
nPoints 200;
|
||||
}
|
||||
);
|
||||
interpolationScheme cellPoint;
|
||||
fields (T);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user