comparison cpp/chourdakisreiss2016cpp/limits.hpp @ 1:144fbd1d29c3

added c++ class Parameter
author Emmanouil Theofanis Chourdakis <e.t.chourdakis@qmul.ac.uk>
date Wed, 28 Dec 2016 17:22:49 +0000
parents
children
comparison
equal deleted inserted replaced
0:246d5546657c 1:144fbd1d29c3
1 /*
2 * limits.hpp
3 *
4 * Created on: Dec 14, 2016
5 * Author: mmxgn
6 */
7
8 #ifndef LIMITS_HPP_
9 #define LIMITS_HPP_
10
11
12 /*
13 * Low level parameter limits
14 */
15
16 #define GA sqrt(2)
17 #define G1_MIN 0.001
18 #define G1_MAX 0.999
19 #define D1_MIN 0.010
20 #define D1_MAX 0.900
21 #define DA_MIN 0.006
22 #define DA_MAX 0.012
23 #define GC_MIN 0.001
24 #define GC_MAX 0.999
25 #define G_MIN 0.001
26 #define G_MAX 0.999
27
28 /*
29 * High level parameter limits
30 */
31
32 #define T60_MIN 0.2
33 #define T60_MAX 4.0
34 #define ED_MIN 1000.0
35 #define ED_MAX 10000.0
36 #define C_MIN -20.0
37 #define C_MAX 10.0
38 #define TC_MIN 0.01
39 #define TC_MAX 2.0
40 #define SC_MIN 200.0
41
42
43 #endif /* LIMITS_HPP_ */