Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
applications
solvers
basic
laplacianFoam
write.H
Go to the documentation of this file.
1
if
(runTime.outputTime())
2
{
3
volVectorField
gradT =
fvc::grad
(
T
);
4
5
volScalarField
gradTx
6
(
7
IOobject
8
(
9
"gradTx"
,
10
runTime.timeName(),
11
mesh
,
12
IOobject::NO_READ,
13
IOobject::AUTO_WRITE
14
),
15
gradT.component(vector::X)
16
);
17
18
volScalarField
gradTy
19
(
20
IOobject
21
(
22
"gradTy"
,
23
runTime.timeName(),
24
mesh
,
25
IOobject::NO_READ,
26
IOobject::AUTO_WRITE
27
),
28
gradT.component(
vector::Y
)
29
);
30
31
volScalarField
gradTz
32
(
33
IOobject
34
(
35
"gradTz"
,
36
runTime.timeName(),
37
mesh
,
38
IOobject::NO_READ,
39
IOobject::AUTO_WRITE
40
),
41
gradT.component(vector::Z)
42
);
43
44
45
runTime.
write
();
46
}
47
48
// ************************ vim: set sw=4 sts=4 et: ************************ //