Page MenuHomec4science

compute_temperature.cc
No OneTemporary

File Metadata

Created
Fri, May 3, 13:32

compute_temperature.cc

#include "compute_temperature.hh"
#include "fft.hh"
#include "material_point.hh"
#include <cmath>
/* -------------------------------------------------------------------------- */
void ComputeTemperature::compute(System& system) {
}
/* -------------------------------------------------------------------------- */
void ComputeTemperature::print_var() {
std::cout << "Compute Temeperature variables." << std::endl;
std::cout << "Conductivity: " << conductivity << std::endl;
std::cout << "Capacity: " << capacity << std::endl;
std::cout << "Density: " << density << std::endl;
std::cout << "Space length: " << L << std::endl;
std::cout << "Time increment: " << delta_t << std::endl;
}
/* -------------------------------------------------------------------------- */
// #include "pypart_pybind.cpp"

Event Timeline