Parent Directory
|
Revision Log
Regen toluene model working, next water.
1 | #ifndef FPROPS_FLUIDS_H |
2 | #define FPROPS_FLUIDS_H |
3 | |
4 | #include "helmholtz.h" |
5 | |
6 | /** |
7 | Look up the named fluid and return its internal data structure, or |
8 | NULL if not found. |
9 | */ |
10 | const HelmholtzData *fprops_fluid(const char *name); |
11 | |
12 | /** |
13 | @return number of fluids in the database. |
14 | */ |
15 | int fprops_num_fluids(); |
16 | |
17 | /** |
18 | Retrieve fluid according to its position in the list of added fluids. |
19 | @return NULL if i is out of bounds. |
20 | */ |
21 | const HelmholtzData *fprops_get_fluid(int i); |
22 | |
23 | #endif |
24 |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |