File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed
OFtutorial9_transportEquation/testCase Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ /* --------------------------------*- C++ -*----------------------------------*\
2+ | ========= | |
3+ | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
4+ | \\ / O peration | Version: 3.0.0 |
5+ | \\ / A nd | Web: www.OpenFOAM.org |
6+ | \\/ M anipulation | |
7+ \*---------------------------------------------------------------------------*/
8+ FoamFile
9+ {
10+ version 2.0 ;
11+ format ascii;
12+ class volScalarField ;
13+ object beta;
14+ }
15+ // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16+
17+ // Make this a dimensionless scalar
18+ dimensions [0 0 0 0 0 0 0 ];
19+
20+ internalField uniform 0 ;
21+
22+ boundaryField
23+ {
24+ left
25+ {
26+ type fixedValue;
27+ value uniform 1 ;
28+ }
29+
30+ lower
31+ {
32+ type fixedValue;
33+ value uniform 0 ;
34+ }
35+
36+ " (upper|right)"
37+ {
38+ type zeroGradient;
39+ }
40+
41+ frontAndBack
42+ {
43+ type empty;
44+ }
45+ }
46+
47+ // ************************************************************************* //
Original file line number Diff line number Diff line change 11#! /bin/bash
2- rm 0/result* 0/beta * constant/polyMesh/* log.* 2> /dev/null
2+ rm 0/result* constant/polyMesh/* log.* 2> /dev/null
You can’t perform that action at this time.
0 commit comments