blob: 106b01f08ddff39bdfd93438809c6223b1ed4a61 (
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(0.24); // J/g°C
setSpecificHeatSolid(0.24); // J/g°C
// No specific heat capacity for gas
setLatentHeatOfFusion(11.3); // kJ/mol
setLatentHeatOfVaporization(250); // kJ/mol
setMeltingPoint(1234.8); // °C
setBoilingPoint(2485); // °C
}
~Silver();
};
#endif // SILVER_HPP_INCLUDED
|