1 | /* |
---|
2 | * ---------------------------------------------------------------------- |
---|
3 | * INTERFACE: Fortran Rappture Units Source |
---|
4 | * |
---|
5 | * ====================================================================== |
---|
6 | * AUTHOR: Derrick Kearney, Purdue University |
---|
7 | * Copyright (c) 2004-2005 Purdue Research Foundation |
---|
8 | * |
---|
9 | * See the file "license.terms" for information on usage and |
---|
10 | * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
---|
11 | * ====================================================================== |
---|
12 | */ |
---|
13 | |
---|
14 | #ifndef _RpUNITS_F_H |
---|
15 | #define _RpUNITS_F_H |
---|
16 | |
---|
17 | #ifdef __cplusplus |
---|
18 | #include "RpFortranCommon.h" |
---|
19 | #include "RpUnitsFStubs.h" |
---|
20 | |
---|
21 | extern "C" { |
---|
22 | #endif |
---|
23 | |
---|
24 | int rp_define_unit(char* unitName, int* basisName, int unitName_len); |
---|
25 | |
---|
26 | int rp_find(char* searchName, int searchName_len); |
---|
27 | |
---|
28 | int rp_get_units(int* unitRefVal, char* retText, int retText_len); |
---|
29 | |
---|
30 | int rp_get_units_name(int* unitRefVal, char* retText, int retText_len); |
---|
31 | |
---|
32 | int rp_get_exponent(int* unitRefVal, double* retExponent); |
---|
33 | |
---|
34 | int rp_get_basis(int* unitRefVal); |
---|
35 | |
---|
36 | int rp_units_convert_dbl ( char* fromVal, |
---|
37 | char* toUnitsName, |
---|
38 | double* convResult, |
---|
39 | int fromVal_len, |
---|
40 | int toUnitsName_len ); |
---|
41 | |
---|
42 | int rp_units_convert_str ( char* fromVal, |
---|
43 | char* toUnitsName, |
---|
44 | char* retText, |
---|
45 | int fromVal_len, |
---|
46 | int toUnitsName_len, |
---|
47 | int retText_len ); |
---|
48 | |
---|
49 | #ifdef __cplusplus |
---|
50 | } |
---|
51 | #endif // ifdef __cplusplus |
---|
52 | |
---|
53 | #endif // ifndef _RpUNITS_F_H |
---|