SWHSNoPCM
All Classes Files Functions
Calculations.hpp
Go to the documentation of this file.
1 
7 #ifndef Calculations_h
8 #define Calculations_h
9 
10 #include <vector>
11 
12 #include "ODE.hpp"
13 #include "Populate.hpp"
14 
15 using std::vector;
16 
21 double func_V_W(double V_tank);
22 
28 double func_m_W(double rho_W, double V_W);
29 
37 double func_tau_W(double C_W, double h_C, double A_C, double m_W);
38 
49 vector<double> func_T_W(double T_C, double T_init, double t_final, double A_tol, double R_tol, double t_step, double tau_W);
50 
51 #endif
double func_V_W(double V_tank)
Calculates volume of water: the amount of space occupied by a given quantity of water (m^3)
vector< double > func_T_W(double T_C, double T_init, double t_final, double A_tol, double R_tol, double t_step, double tau_W)
Calculates temperature of the water: the average kinetic energy of the particles within the water (de...
double func_tau_W(double C_W, double h_C, double A_C, double m_W)
Calculates ODE parameter for water related to decay time: derived parameter based on rate of change o...
double func_m_W(double rho_W, double V_W)
Calculates mass of water: the quantity of matter within the water (kg)
Class representing an ODE system.
Class for populating a list during an ODE solution process.