Page MenuHomec4science

material_point.hh
No OneTemporary

File Metadata

Created
Thu, Mar 28, 19:33

material_point.hh

#ifndef __MATERIAL_POINT__HH__
#define __MATERIAL_POINT__HH__
/* -------------------------------------------------------------------------- */
#include "particle.hh"
//! Class for MaterialPoint
class MaterialPoint : public Particle {
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
void printself(std::ostream& stream) const override;
void initself(std::istream& sstr) override;
Real & getTemperature(){return temperature;};
Real & getHeatRate(){return heat_rate;};
private:
Real temperature;
Real heat_rate;
};
/* -------------------------------------------------------------------------- */
#endif //__MATERIAL_POINT__HH__

Event Timeline