Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91900489
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 15, 14:22
Size
850 B
Mime Type
text/x-c++
Expires
Sun, Nov 17, 14:22 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22342315
Attached To
R9490 Homework_sp4e_Peruzzo_SáezUribe
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