blob: bef246c7c6c654adaf29aac5a5a02329cef2fed0 (
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
|
#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
}
};
#endif // SILVER_HPP_INCLUDED
|