Loading...
Searching...
No Matches
ITHACAPODdict
Go to the documentation of this file.
1FoamFile
2{
3 version 5.0;
4 format ascii;
5 class dictionary;
6 object ITHACAPODdict;
7}
8
9// Set fields you want to use to perform the POD
10// Do not specify here the field name but insert it in the subdictionary
11fields
12(
13U_pod
14p_pod
15);
16
17U_pod
18{
19// Specify the field name
20field_name U;
21// Specify the number of modes you want to extract
22nmodes 10;
23// Specify the type of field (if vector or scalar)
24field_type vector;
25}
26
27p_pod
28{
29// Specify the field name
30field_name p;
31// Specify the number of modes you want to extract
32nmodes 10;
33// Specify the type of field (if vector or scalar)
34field_type scalar;
35}
36
37// Set Time from which you want to start taking the Snapshots
38InitialTime 0;
39
40// Set Time when you want to stop taking the Snapshots (if you leave it empty it will take all the snaphsots in the folder)
41FinalTime 0.01;
42
43// Eventually you could set just InitalTime and Number of Snapshots you want
44//Nsnapshots 40;
45
46
47
48
49
50
51// ************************************************************************* //