Advertisement
NUCLEARESOL

Inlist_project

Dec 28th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. ! inlist to evolve a 15 solar mass star
  2.  
  3. ! For the sake of future readers of this file (yourself included),
  4. ! ONLY include the controls you are actually using. DO NOT include
  5. ! all of the other controls that simply have their default values.
  6.  
  7. &star_job
  8. ! see star/defaults/star_job.defaults
  9.  
  10. ! begin with a pre-main sequence model
  11. create_pre_main_sequence_model = .true.
  12.  
  13. ! save a model at the end of the run
  14. save_model_when_terminate = .true.
  15. save_model_filename = 'y_087msun.mod'
  16.  
  17. ! display on-screen plots
  18. pgstar_flag = .true.
  19. new_omega_div_omega_crit = 0.0013
  20. / ! end of star_job namelist
  21.  
  22.  
  23. &eos
  24. ! eos options
  25. ! see eos/defaults/eos.defaults
  26.  
  27. / ! end of eos namelist
  28.  
  29.  
  30. &kap
  31. ! kap options
  32. ! see kap/defaults/kap.defaults
  33. use_Type2_opacities = .true.
  34. Zbase = 0.02
  35.  
  36. / ! end of kap namelist
  37.  
  38.  
  39. &controls
  40. ! see star/defaults/controls.defaults
  41.  
  42. ! starting specifications
  43. initial_mass = 0.87 ! in Msun units
  44. initial_z = 0.02
  45. convergence_ignore_equL_residuals = .true.
  46. relax_use_gold_tolerances = .true.
  47. ! when to stop
  48.  
  49. ! stop when the star nears ZAMS (Lnuc/L > 0.99)
  50. max_model_number = 17000
  51. min_timestep_limit = 1d-6
  52. max_num_profile_models = 1000
  53. cool_wind_RGB_scheme = 'Reimers'
  54. cool_wind_AGB_scheme = 'Blocker'
  55. Reimers_scaling_factor = 0.1
  56. Blocker_scaling_factor = 0.1
  57.  
  58. ! wind
  59.  
  60. ! atmosphere
  61.  
  62. ! rotation
  63.  
  64. ! element diffusion
  65.  
  66. ! mlt
  67.  
  68. ! mixing
  69.  
  70. ! timesteps
  71.  
  72. ! mesh
  73.  
  74. ! solver
  75. ! options for energy conservation (see MESA V, Section 3)
  76. energy_eqn_option = 'dedt'
  77. use_gold_tolerances = .true.
  78.  
  79. ! output
  80.  
  81. / ! end of controls namelist
  82.  
Tags: mesa
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement