Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
DOUBLE PRECISION PURE FUNCTION pr_wd(rho)!********************************************!!# Degenerate pressure as a function of density!! See [Benz W., Bowers R.L., Cameron A.G.W., Press W.H., 1990, APJ, 348, 647.](https://ui.adsabs.harvard.edu/abs/1990ApJ...348..647B/abstract){:target="_blank"}, eqs.(2.4)!!! FT 19.12.2022!!********************************************IMPLICIT NONEDOUBLE PRECISION,INTENT(IN)::rhoDOUBLE PRECISION::xx=(rho/b_wd)**thirdpr_wd=a_wd*f_wd(x)END FUNCTION pr_wd