createFields.H 3.94 KB
Newer Older
shunbo's avatar
shunbo committed
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#include "gpucreateRDeltaT.H"

Info<< "Reading thermophysical properties\n" << endl;
autoPtr<psiReactionThermo> pThermo(psiReactionThermo::New(devicemesh));
psiReactionThermo& thermo = pThermo();
thermo.validate(args.executable(), "h", "e");

/*autoPtr<psiThermo> pThermo
(
    psiThermo::New(mesh)
);
psiThermo& thermo = pThermo();*/

	// switch for cold flow or reacting flow
	bool SolveChemistry = readBool(runTime.controlDict().lookup("SolveChemistry"));

basicSpecieMixture& composition = thermo.composition();
PtrList<volScalargpuField>& Y = composition.Y();

const word inertSpecie(thermo.get<word>("inertSpecie"));
if (!composition.species().found(inertSpecie))
{
    FatalIOErrorIn(args.executable().c_str(), thermo)
        << "Inert specie " << inertSpecie << " not found in available species "
        << composition.species() << exit(FatalIOError);
}

volScalargpuField& e = thermo.he();

Info<< "Reading field U\n" << endl;
volVectorgpuField U
(
    IOobject
    (
        "U",
        runTime.timeName(),
        mesh,
        IOobject::MUST_READ,
        IOobject::AUTO_WRITE
    ),
    devicemesh
);

volScalargpuField rho
(
    IOobject
    (
        "rho",
        runTime.timeName(),
        mesh,
        IOobject::NO_READ,
        IOobject::AUTO_WRITE
    ),
    thermo.rho()
);

volVectorgpuField rhoU
(
    IOobject
    (
        "rhoU",
        runTime.timeName(),
        mesh,
        IOobject::NO_READ,
        IOobject::NO_WRITE
    ),
    rho*U
);

volScalargpuField rhoE
(
    IOobject
    (
        "rhoE",
        runTime.timeName(),
        mesh,
        IOobject::NO_READ,
        IOobject::NO_WRITE
    ),
    rho*(e + 0.5*magSqr(U))
);

surfaceScalargpuField pos
(
    IOobject
    (
        "pos",
        runTime.timeName(),
        mesh
    ),
    devicemesh,
    dimensionedScalar("pos", dimless, 1.0)
);

surfaceScalargpuField neg
(
    IOobject
    (
        "neg",
        runTime.timeName(),
        mesh
    ),
    devicemesh,
    dimensionedScalar("neg", dimless, -1.0)
);

surfaceScalargpuField phi("phi", fvc::flux(rhoU));

Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::turbulenceModel> turbulence
(
    compressible::turbulenceModel::New
    (
        rho,
        U,
        phi,
        thermo
    )
);

Info<< "Creating combustion model\n" << endl;
autoPtr<CombustionModel<psiReactionThermo>> combustion
(
     CombustionModel<psiReactionThermo>::New(thermo, turbulence())
);

gpumultivariateSurfaceInterpolationScheme<scalar>::fieldTable fields;

forAll(Y, i)
{
    fields.add(Y[i]);
}
fields.add(thermo.he());

Info<< "Creating field kinetic energy K\n" << endl;
volScalargpuField K("K", 0.5*magSqr(U));

PtrList<volScalargpuField> rhoY(Y.size()); 
forAll(Y, i)
{
    rhoY.set
    (
        i,
		new volScalargpuField 
		(
	    	IOobject
	    	(
			"rho"+Y[i].name(),
			runTime.timeName(),
			mesh,
			IOobject::NO_READ,
			IOobject::NO_WRITE
	    	),
	    	rho*Y[i]
		)
    );    
}

volScalargpuField Qdot
(
    IOobject
    (
        "Qdot",
        runTime.timeName(),
        mesh,
        IOobject::NO_READ,
        IOobject::AUTO_WRITE
    ),
    devicemesh,
    dimensionedScalar(dimEnergy/dimVolume/dimTime, 0.0)
);

const label inertIndex(composition.species()[inertSpecie]);

volScalargpuField Yt
(
    IOobject
    (
        "Yt",
         mesh.time().timeName(),
         mesh,
         IOobject::NO_READ,
         IOobject::NO_WRITE
     ),
     devicemesh,
     dimensionedScalar( dimless, 0)//,
);

Info<< "Reading transport properties" <<endl;
IOdictionary transportProperties
(
    IOobject
    (
        "transportProperties",
        runTime.constant(),
        runTime,
        IOobject::MUST_READ_IF_MODIFIED,
        IOobject::NO_WRITE
     )
);
dictionary Schmidt(transportProperties.subDict("Sc"));
scalarField Sc(Y.size(),0.75);
forAll(Sc,i)
{
    const word& name = Y[i].name();
    if(Schmidt.found(name))
    {
        Sc[i]=readScalar(Schmidt.lookup(name));
    }
} 
const scalar Sct(Schmidt.lookupOrDefault<scalar>("Sct",0.7));