42 (cloud.pMesh().lookupObject<
dictionary>(
"thermophysicalProperties"))
43 .lookup(
"liquidComponents")
45 X_(liquidComponents_.size(), 0.0),
54 if (is.format() == IOstream::ASCII)
69 for (label j=0; j<nX; j++)
78 reinterpret_cast<char*>(&d_),
79 sizeof(d_) +
sizeof(T_) +
sizeof(m_) +
sizeof(y_)
80 +
sizeof(yDot_) +
sizeof(ct_) +
sizeof(ms_) +
sizeof(tTurb_)
81 +
sizeof(liquidCore_) +
sizeof(injector_)
82 +
sizeof(U_) +
sizeof(Uturb_) +
sizeof(n_)
87 reinterpret_cast<char*>(X_.begin()),
88 X_.size()*
sizeof(scalar)
94 is.check(
"parcel::parcel(Istream&)");
165 p.liquidCore_ = liquidCore[i];
179 const parcel& p0 = iter();
181 label nX = p0.
X().
size();
184 for (label j=0; j<nX; j++)
243 liquidCore[i] = p.liquidCore_;
272 const parcel& p0 = iter();
274 label nX = p0.
X().
size();
277 for (label j=0; j<nX; j++)
299 if (os.
format() == IOstream::ASCII)
301 os << static_cast<const Particle<parcel>&>(
p)
302 << token::SPACE << p.d_
303 << token::SPACE << p.T_
304 << token::SPACE << p.m_
305 << token::SPACE << p.y_
306 << token::SPACE << p.yDot_
307 << token::SPACE << p.ct_
308 << token::SPACE << p.ms_
309 << token::SPACE << p.tTurb_
310 << token::SPACE << p.liquidCore_
311 << token::SPACE << p.injector_
312 << token::SPACE << p.U_
313 << token::SPACE << p.Uturb_
314 << token::SPACE << p.n_
315 << token::SPACE << p.X_;
319 os << static_cast<const Particle<parcel>&>(
p);
322 reinterpret_cast<const char*>(&p.d_),
323 sizeof(p.d_) +
sizeof(p.T_) +
sizeof(p.m_) +
sizeof(p.y_)
324 +
sizeof(p.yDot_) +
sizeof(p.ct_) +
sizeof(p.ms_) +
sizeof(p.tTurb_)
325 +
sizeof(p.liquidCore_) +
sizeof(p.injector_)
326 +
sizeof(p.U_) +
sizeof(p.Uturb_) +
sizeof(p.n_)
331 reinterpret_cast<const char*>(p.X_.
begin()),
332 p.X_.
size()*
sizeof(scalar)
337 os.
check(
"Ostream& operator<<(Ostream&, const parcel&)");