diff options
author | andreas128 <Andreas> | 2017-09-14 19:12:20 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-15 11:47:29 +0200 |
commit | a7f37b014174d09ff3b5aaaf7a54acee84a29ff2 (patch) | |
tree | 542c9151dc3f9aa542e4c8d32127d4c46d41777d /dpd/src/const.py | |
parent | 67ca2e1249eb4805ea064d5fa99b442afc560fc5 (diff) | |
download | dabmod-a7f37b014174d09ff3b5aaaf7a54acee84a29ff2.tar.gz dabmod-a7f37b014174d09ff3b5aaaf7a54acee84a29ff2.tar.bz2 dabmod-a7f37b014174d09ff3b5aaaf7a54acee84a29ff2.zip |
Add minimum tx value for analysis by Model_PM
Diffstat (limited to 'dpd/src/const.py')
-rw-r--r-- | dpd/src/const.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dpd/src/const.py b/dpd/src/const.py index 75ff819..2a7e64c 100644 --- a/dpd/src/const.py +++ b/dpd/src/const.py @@ -41,4 +41,7 @@ class const: self.ES_start = 0.0 self.ES_end = 1.0 self.ES_n_bins = 64 - self.ES_n_per_bin = 256 + self.ES_n_per_bin = 128 + + # Constants for Model_PM + self.MPM_tx_min = 0.1 |