aboutsummaryrefslogtreecommitdiff
path: root/elements/water.h
blob: a20eacdb5a99cf7ece0148eea94c056177022130 (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
#ifndef WATER_HPP_INCLUDED
#define WATER_HPP_INCLUDED

#include "../headers/baseElement.h"

class water : public baseElement
{
public:
    water()
    {
        setElementName("Water");
        setSpecificHeatLiquid(4184);
        setSpecificHeatSolid(2093);
        setSpecificHeatGas(2010);
        setLatentHeatOfFusion(334000);
        setLatentHeatOfVaporization(2260000);
        setMeltingPoint(273);
        setBoilingPoint(373);
    }
};


#endif // WATER_HPP_INCLUDED