File: T

package info (click to toggle)
calculix-cgx 2.21%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 65,752 kB
  • sloc: ansic: 109,184; cpp: 3,087; sh: 70; makefile: 35
file content (47 lines) | stat: -rwxr-xr-x 1,242 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/cgx -foam
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.7.1                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 1 0 0 0];

internalField   uniform 288;

boundaryField
{
  in
  {
    type cyclic;
  }

    SYMP3           
    {
        type            empty;
    }

    wall          
    {
        //type            zeroGradient;
        type            fixedValue;
        value           uniform 288;
    }

    slip         
    {
        type            zeroGradient;
    }
}

// ************************************************************************* //