OGS
TESLocalAssemblerData.cpp
Go to the documentation of this file.
1
11
12#include "TESReactionAdaptor.h"
13
14namespace ProcessLib
15{
16namespace TES
17{
19 const unsigned num_int_pts,
20 const unsigned dimension)
21 : ap(ap_),
22 solid_density(num_int_pts, ap_.initial_solid_density),
23 reaction_rate(num_int_pts),
24 velocity(dimension, std::vector<double>(num_int_pts)),
25 reaction_adaptor(TESFEMReactionAdaptor::newInstance(*this)),
26 solid_density_prev_ts(num_int_pts, ap_.initial_solid_density),
27 reaction_rate_prev_ts(num_int_pts)
28{
29}
30
32} // namespace TES
33} // namespace ProcessLib
TESLocalAssemblerData(AssemblyParams const &ap_, const unsigned num_int_pts, const unsigned dimension)