Advertisement
Guest User

TARDIS configuration

a guest
Jun 8th, 2014
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. #New configuration for TARDIS based on YAML
  2. #IMPORTANT any pure floats need to have a +/- after the e e.g. 2e+5
  3. #Hopefully pyyaml will fix this soon.
  4. ---
  5. #Currently only simple1d is allowed
  6. tardis_config_version: v1.0
  7. supernova:
  8. luminosity_requested: 9.44 log_lsun
  9. time_explosion: 13 day
  10. # distance : 24.2 Mpc
  11.  
  12.  
  13. atom_data: kurucz_cd23_chianti_H_He.h5
  14.  
  15.  
  16. model:
  17.  
  18.  
  19. structure:
  20. type: specific
  21.  
  22.  
  23. velocity:
  24. start : 1.1e4 km/s
  25. stop : 20000 km/s
  26. num: 20
  27.  
  28.  
  29. density:
  30. #showing different configuration options separated by comments
  31. #simple uniform:
  32. #---------------
  33. #type : uniform
  34. #value : 1e-40 g/cm^3
  35. #---------------
  36.  
  37. #branch85_w7 - fit of seven order polynomial to W7 (like Branch 85):
  38. #---------------
  39. type : branch85_w7
  40.  
  41. # default, no need to change!
  42. #time_0 : 19.9999584 s
  43. # default, no need to change!
  44. #density_coefficient : 3e29
  45. #---------------
  46.  
  47.  
  48. abundances:
  49. type: uniform
  50. O: 0.19
  51. Mg: 0.03
  52. Si: 0.52
  53. S: 0.19
  54. Ar: 0.04
  55. Ca: 0.03
  56.  
  57. plasma:
  58. # initial_t_inner: 10000 K
  59. # initial_t_rads: 10000 K
  60. disable_electron_scattering: no
  61. ionization: lte
  62. excitation: lte
  63. #radiative_rates_type - currently supported are lte, nebular and detailed
  64. radiative_rates_type: dilute-blackbody
  65. #line interaction type - currently supported are scatter, downbranch and macroatom
  66. line_interaction_type: macroatom
  67.  
  68.  
  69. montecarlo:
  70. seed: 23111963
  71. no_of_packets : 1.0e+6
  72. iterations: 20
  73.  
  74. black_body_sampling:
  75. start: 1 angstrom
  76. stop: 1000000 angstrom
  77. num: 1.e+6
  78. last_no_of_packets: 1.e+5
  79. no_of_virtual_packets: 10
  80.  
  81. convergence_criteria:
  82. type: specific
  83. damping_constant: 1.0
  84. threshold: 0.05
  85. fraction: 0.8
  86. hold: 3
  87. t_inner:
  88. damping_constant: 1.0
  89.  
  90.  
  91. spectrum:
  92. start : 500 angstrom
  93. stop : 20000 angstrom
  94. num: 10000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement