|
[Sponsors] | |||||
|
|
|
#1 |
|
New Member
Luca
Join Date: Feb 2014
Posts: 19
Rep Power: 13 ![]() |
Hi,
I need to monitor the profile of my variable while OF is running. I find this functions and it works but ... I need multiple points of measurement, not just one. Code:
functions
{
streamLines
{
type streamLine;
// Where to load it from (if not already in solver)
functionObjectLibs ("libfieldFunctionObjects.so");
// Output every
outputControl outputTime;
// outputInterval 10;
setFormat vtk; //gnuplot;//xmgr;//raw;//jplot;//csv;//ensight;
// Velocity field to use for tracking.
UName U;
// Tracked forwards (+U) or backwards (-U)
trackForward true;
// Names of fields to sample. Should contain above velocity field!
fields (p k U);
// Steps particles can travel before being removed
lifeTime 10000;
// Number of steps per cell (estimate). Set to 1 to disable subcycling.
nSubCycle 5;
// Cloud name to use
cloudName particleTracks;
// Seeding method. See the sampleSets in sampleDict.
seedSampleSet uniform; //cloud;//triSurfaceMeshPointSet;
uniformCoeffs
{
type uniform;
axis x; //distance;
start (-0.0205 0.001 0.00001);
end (-0.0205 0.0251 0.00001);
nPoints 10;
}
}
}
Thanks |
|
|
|
|
|
|
|
|
#2 |
|
New Member
Luca
Join Date: Feb 2014
Posts: 19
Rep Power: 13 ![]() |
Solved. Just replicate the whole code:
Code:
functions
(
streamLines1
{
...
...
...}.
streamLines2
{
...
...
...
}
.
.
.
streamLinesN
{
...
...
...
}
);
|
|
|
|
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to set periodic boundary conditions | Ganesh | FLUENT | 15 | November 18, 2020 07:09 |
| [General] Problems with streamlines for 2D porous media flow simulations | twophaseflow | ParaView | 4 | February 11, 2014 15:32 |
| OpenFOAM static build on Cray XT5 | asaijo | OpenFOAM Installation | 9 | April 6, 2011 13:21 |
| Streamlines under Moving reference frame; Spiral streamline from Tecplot | aiqch | Tecplot | 2 | October 30, 2009 00:27 |
| STAR-CD, moving grid and streamlines | Mohamed GUEROUACHE | Main CFD Forum | 1 | September 13, 1999 14:33 |