blob: 6955bf32e977fef4e620d90ada66118d06757709 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef SILVER_HPP_INCLUDED
#define SILVER_HPP_INCLUDED
#include "../headers/baseElement.h"
class Silver : public baseElement
{
public:
Silver()
{
setElementName("Silver");
setSpecificHeatLiquid(240); // J/kg.K
setSpecificHeatSolid(240); // J/kg.K
// No specific heat capacity for gas
setLatentHeatOfFusion(104.72); // J/kg
setLatentHeatOfVaporization( 2318.83); //J/kg
setMeltingPoint(1234.8); // k
setBoilingPoint(2485); // k
}
~Silver();
};
#endif // SILVER_HPP_INCLUDED
|