Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90376769
material_point.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 02:28
Size
858 B
Mime Type
text/x-c++
Expires
Sun, Nov 3, 02:28 (2 d)
Engine
blob
Format
Raw Data
Handle
22062762
Attached To
R9482 SP4E_Homework_Ashtari_Sieber
material_point.hh
View Options
#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
Log In to Comment