Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91108821
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 8, 00:02
Size
850 B
Mime Type
text/x-c++
Expires
Sun, Nov 10, 00:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22193389
Attached To
R7571 SP4E-TB-TL-FR
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