aboutsummaryrefslogtreecommitdiff
path: root/elements/water.h
blob: a1a597eb3ff612e0b40931609043421aaf811a9a (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/genericElement.h"

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


#endif // WATER_HPP_INCLUDED