FUKA
|
The FUKA solvers support both piecewise polytropic and tabulated EOS in generating ID for Neutron Stars. For both cases, a file is required which includes either the tabulated EOS or describes the piecewise polytrope, as described below.
The file format for storing a piecewise polytrope is quite basic. All lines starting with a #
or are blank are ignored. Most importantly, the order of parameters is strictly defined
K_0
constant factor at the initial boundary and P0
(pressure at the initial boundary)K_0
and rho_tab
The format for tabulated EOS' that are currently supported is the well known format used by the LORENE spectral solver. Details on the format of the table can be found here
The backend that handles the EOS is constructed in two parts
As for FUKAv2.3, an EOS wrapper was written by Samuel Tootle to interface between multiple potential EOS backends which currently includes Margherita and now the GRHayL.
The construction and evaluation of the EOS is handled by default by a standalone version of the Margherita EOS framework developed by Elias R. Most For code details see $HOME_KADATH/include/EOS/standalone/
In FUKAv2.3, support has been added to link against the GRHayL library to leverage the GRHayLEOS module. While this includes support for hybid EOS', it provides additional support to ingest 3D temperature dependent EOSs in stellar collapse format. More information can be found here.
To interface between KADATH and the EOS backend, a user-defined module was written by Samuel Tootle and L. Jens Papenfort allowing the use of an EOS manager within KADATH's System_of_equations framework. For details see $HOME_KADATH/include/EOS/EOS.hh
.
To initialize an EOS manager, the following parameters need to be set within the config file
If no path is specified for the eosfile
, e.g. eosfile togashi.lorene
, the EOS framework will only search the $HOME_KADATH/eos/
directory for the EOS file specified. In the event you want to specify an EOS not located in the default directory, a path must be included. For example, to read an EOS from the current directory, one would need to write eos_file ./togashi.lorene
.
Both Margherita and GRHayL (eostype: Cold_PWPoly, ghl_eos_simple, ghl_eos_hybrid
) support poltryopic equations of state which can specified in a <eos>.polytrope
file. See, e.g. eos/apr4.polytrope
and eos/gam2.polytrope
.
Margherita supports ingesting 1D cold slices in the common LORENE
format. Examples of these tables include eos/dd2.lorene
and eos/togashi.lorene
, for instance. These tables can be used for computing initial data with eostype Cold_Table
.
Support for stellar collapse tables is now possible when compiling with GRHayL. Use of stellar collapse tables requires specifying a configuration file, e.g. dd2.stellarcollapse
, which stores the location of the 3D table along with initialization parameters such as table bounds and the temperature slice to use (T_beta
), in units of MeV.
For cold beta equilibrium slices, excellent agreement has been found between dd2.lorene
and dd2.stellarcollapse
computed initial data. Use of stellar collapse tables to compute initial data using a hot, beta equilibrium slice has not yet been fully explored.