! this file is for setting control parameters for HIF in mppnp ! for detailed documentaion see ../DOC/mppnp-chapter.pdf and of course the code &ppn_hif dmIngest = 15d0 ! mass at the top of He shell where H is ingested ! dmdtIngest = 1.74d-05 ! the rate of ingestion, N15 ! dmdtIngest = 1.85d-05 ! the rate of ingestion, N16 dmdtIngest = 2.07d-04 ! the rate of ingestion, N17 ! this is absolute path to ingested abundances ini_file_name_hif = '/project/f/fherwig/fherwig/projects/iRAWDyields/mppnp_hif/iniab1.6E-04As09_fehm2.6.ppn' / ! *** end of namelist ! the parameter values are given as fortran95 "namelists" ! here's a brief summary of how things work with namelists. ! each line in a namelist is of the form name = value ! comment ! each name must be declared as a control in the program, ! but you don't need to include all of the controls in the list. ! and the order of the list doesn't matter. ! blank lines and comment lines can be freely included in the list. ! blanks at the start of a line containing a name-value pair are okay too. ! all of the controls are given reasonable default values at initialization. ! so you only need to set the ones that you actually want to change ! if you don't want to change a control, but you do want to keep in the list, ! either comment out the line, or leave the value field blank. ! fortran supports structured values in namelists (arrays and derived types), ! but for simplicity, we only use basic types (integers, doubles, logicals, strings). ! values are given using the usual fortran syntax. ! for example, character string values are enclosed in quotes ! ****** REMINDER ****** ! A '/' character terminates the namelist. ! So, do not use '/' outside of comments or strings. ! In particular, don't write something like 1d0/3d0 as a value.