print values for paper
This commit is contained in:
parent
6ff3b90ceb
commit
d8bf270db2
1 changed files with 22 additions and 1 deletions
|
|
@ -5,5 +5,26 @@ Code version: <code version>
|
|||
Availability: <where it's located> """
|
||||
|
||||
from cara.montecarlo import *
|
||||
from cara.model_scenarios import *
|
||||
from cara.model_scenarios_publication import *
|
||||
|
||||
# qR table:
|
||||
#TODO table with qR values
|
||||
|
||||
# qR values for Breathing, light activity:
|
||||
print('\n<<<<<<<<<<< qR for Breathing, light activity >>>>>>>>>>>')
|
||||
present_qR_values(qR_models[0].concentration_model)
|
||||
# qR values for Speaking, light activity:
|
||||
print('\n<<<<<<<<<<< qR for Speaking, light activity >>>>>>>>>>>')
|
||||
present_qR_values(qR_models[1].concentration_model)
|
||||
# qR values for Shouting, light activity:
|
||||
print('\n<<<<<<<<<<< qR for Shouting / Singing, light activity >>>>>>>>>>>')
|
||||
present_qR_values(qR_models[2].concentration_model)
|
||||
|
||||
# qR values for shouting and light activity - qID=100, 500 and 1000
|
||||
print('\n<<<<<<<<<<< shouting and light activity - qID=100 >>>>>>>>>>>')
|
||||
present_qR_values(qR_models_shout_light[0].concentration_model)
|
||||
print('\n<<<<<<<<<<< shouting and light activity - qID=500 >>>>>>>>>>>')
|
||||
present_qR_values(qR_models_shout_light[1].concentration_model)
|
||||
print('\n<<<<<<<<<<< shouting and light activity - qID=1000 >>>>>>>>>>>')
|
||||
present_qR_values(qR_models_shout_light[2].concentration_model)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue