Skip to content

Commit

Permalink
more work on network docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Jan 12, 2025
1 parent 1726cb4 commit 1d44a0a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 31 deletions.
4 changes: 2 additions & 2 deletions Docs/source/networks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,10 @@ to the neutron captures. This network can be quite slow.

This network is meant to study explosive H and He burning. It combines
the ``CNO_extras`` network (with the exception of the inert ${}^{56}\mathrm{Fe}$
with the ``subch_simple`` network. This allows it to capture hot-CNO and
with the ``he-burn-22a`` network. This allows it to capture hot-CNO and
He burning.

.. figure:: CNO_He_burn.png
.. figure:: ../../networks/he-burn/cno-he-burn-33a/cno-he-burn-33a.png
:align: center

``ECSN``
Expand Down
24 changes: 0 additions & 24 deletions Docs/source/runtime_parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -751,18 +751,6 @@ namespace: ``network``



**NETWORK_DIR=CNO_He_burn:**

+---------------------------------------+---------------------------------------------------------+------------------------------+
| parameter | description | default value |
+=======================================+=========================================================+==============================+
| ``disable_p_C12_to_N13`` | | 0 |
+---------------------------------------+---------------------------------------------------------+------------------------------+
| ``disable_He4_N13_to_p_O16`` | | 0 |
+---------------------------------------+---------------------------------------------------------+------------------------------+



**NETWORK_DIR=ase:**

+---------------------------------------+---------------------------------------------------------+------------------------------+
Expand All @@ -775,18 +763,6 @@ namespace: ``network``



**NETWORK_DIR=he-burn/CNO_He_burn:**

+---------------------------------------+---------------------------------------------------------+------------------------------+
| parameter | description | default value |
+=======================================+=========================================================+==============================+
| ``disable_p_C12_to_N13`` | | 0 |
+---------------------------------------+---------------------------------------------------------+------------------------------+
| ``disable_He4_N13_to_p_O16`` | | 0 |
+---------------------------------------+---------------------------------------------------------+------------------------------+



**NETWORK_DIR=he-burn/he-burn-18a:**

+---------------------------------------+---------------------------------------------------------+------------------------------+
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions networks/he-burn/cno-he-burn-33a/cno_he_burn_33a.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ def doit():
rho = 1.e6
T = 1.e9

net.plot(rho, T, comp, outfile="cno-he-burn-33a.png",
rotated=True, hide_xalpha=True, curved_edges=True,
size=(1500, 450),
node_size=500, node_font_size=11, node_color="#337dff", node_shape="s",
Z_range=(1, 29))
fig = net.plot(rho, T, comp,
rotated=True, hide_xalpha=True, curved_edges=True,
size=(1500, 450),
node_size=500, node_font_size=11, node_color="#337dff", node_shape="s",
Z_range=(1, 29))

net.write_network()

fig.savefig("cno-he-burn-33a.png", bbox_inches="tight")


if __name__ == "__main__":
doit()

0 comments on commit 1d44a0a

Please sign in to comment.