Tables of Nuclear Cross Sections and Reaction Rates: an Addendum to the Paper "Astrophysical Reaction Rates from Statistical Model Calculations"

T. Rauscher,F.-K. Thielemann
DOI: https://doi.org/10.1006/adnd.2001.0863
2001-04-02
Abstract:In a previous publication [Atomic Data and Nuclear Data Tables 75, 1 (2000)], we had given seven parameter analytical fits to theoretical reaction rates derived from nuclear cross sections calculated in the statistical model (Hauser-Feshbach formalism) for targets with 9<Z<84 (Ne to Bi) and for a mass range reaching the neutron and proton driplines. Reactions considered were (n,gamma), (n,p), (n,alpha), (p,gamma), (p,alpha), (alpha,gamma), and their inverse reactions. On public demand, we present here the theoretical nuclear cross sections and astrophysical reaction rates from which those rate fits were derived, and we provide these data as on-line electronic files. Corresponding to the fitted rates, two complete data sets are provided, one of which includes a phenomenological treatment of shell quenching for neutron-rich nuclei.
Nuclear Theory,Astrophysics
What problem does this paper attempt to address?
The problem that this paper attempts to solve is: how to write deterministic metainterpreters. Many existing metainterpreters are non - deterministic in choosing program clauses, that is, their choices are not unique. This non - determinism is advantageous in some application scenarios, but in other cases, a deterministic metainterpreter with clear clause selection is required. Specifically, the paper focuses on the following types of problems: 1. **Parallel logic program transformation**: Transform or - parallelism into and - parallelism for execution on committed - choice processors. 2. **Implementing search strategies for logic - based imperative languages**: Use logic programs to describe flowchart - like search strategies. 3. **Simulation of bounded - resource reasoning**: Simulate the process of reasoning under limited resources. To achieve these goals, the author proposes a new method, that is, to convert the object program into a syntactically restricted form called "chain form". In this form, the unification problem can be ignored, except for unit clauses. Through this method, the author simplifies the design and implementation of the deterministic metainterpreter. ### Main contributions - **Definition of chain form**: A new form of program representation - chain form is introduced, which makes deterministic traversal easier. - **Conversion methods**: Two methods for converting logic programs into chain form are provided: - One is suitable for "moded" programs, which is implicit in the existing exhaustive traversal methods. - The other is suitable for any deterministic program. - **Application examples**: Show how to use these methods to write deterministic metainterpreters to solve the above - mentioned application problems. Through these contributions, the paper aims to bridge the gap between the "don't - know" form of logic programming (for user - level applications) and the "don't - care" form (for controlling the execution of logic programs). ### Formula summary - **Definition of chain form**: \[ p(X_0, X_n)\leftarrow q_1(X_0, X_1), q_2(X_1, X_2),\ldots, q_n(X_{n - 1}, X_n) \] where \(X_i\) are different variables, and \(t\) and \(t'\) are arbitrary terms. - **Inclusion relation of relational expressions**: \[ P\supseteq(Q_1; Q_2;\ldots; Q_n) \] where \(P\) and \(Q_i\) represent the relations represented by \(p\) and \(q_i\) respectively, and ";" represents relation composition. - **Union operation of sets**: \[ S;R = \{z:\exists y [y\in S\land(y, z)\in R]\} \] These formulas and concepts together form the core content of the paper, helping to understand how to simplify the design and implementation of the deterministic metainterpreter through the chain form.