| 330 | } |
| 331 | |
| 332 | void ca_derdiffcoeff(const Box& bx, FArrayBox& derfab, int /*dcomp*/, int /*ncomp*/, |
| 333 | const FArrayBox& datfab, const Geometry& /*geom*/, |
| 334 | Real /*time*/, const int* /*bcrec*/, int /*level*/) |
| 335 | { |
| 336 | |
| 337 | auto const dat = datfab.array(); |
| 338 | auto const der = derfab.array(); |
| 339 | |
| 340 | fill_temp_diff_coeff(bx, dat, der); |
| 341 | |
| 342 | } |
| 343 | |
| 344 | void ca_derdiffterm(const Box& bx, FArrayBox& derfab, int /*dcomp*/, int /*ncomp*/, |
| 345 | const FArrayBox& datfab, const Geometry& geom, |
nothing calls this directly
no test coverage detected