This is an old revision of the document!


Computing stars at the Kepler limit

This test follows the computation performed in Camelio et al., 2019. While the code is not perfectly identical to the one used for the paper, the code changes have been minimal.

It is worth pointing out that this test case takes up more runtime than the other that is provided for the computation of the non-barotropic configuration, hence, it might be useful to check out this test first if you have not done so.

Model Parameters

Theoretical Background

In this setup, we consider a cold rigidly rotating neutron star described by an equation of state (EOS) of the form:

EOS5

with the free parameters k1 and Gamma.

The potential Q follows the form (Eq. 38 of Camelio et al., 2019)

EOS4

Changing the code input

The simple example that is given in the git repository looks at a cold, rigidly rotating neutron star. In input parameters can be found at the beginning of kepler.f90 and they are:

  • gam (double) –> polytropic index of the cold component
  • k1 (double) –> proportionality constant of the cold component
  • omg0 (double) –> angular velocity (rigid rotation)
  • rhostart (double) –> starting density of the Keplerian curve
  • rhoend (double) –> final density for the search, e.g., 7d0*rhon
  • verbose (logical parameters) –> determines is output is put on the screen
  • filename (character) –> defines where to store the results

A first Test

After following the outlined installation guide, you can run a first test configuration

./kepler.x

This will prompt an output in which you see the computation of a sequence of TOV stars, e.g.,

TOV: cycle=           1 surf=        1011 M=   1.9273597635660831      x=   1.0000000000000000      dx=   1.0000000000000000
TOV: cycle=           2 surf=         504 M=   1.9290154365593117      x=   2.0000000000000000      dx= -0.11245266184992331
TOV: cycle=           3 surf=         535 M=   1.9293689630752393      x=   1.8875473381500767      dx= -0.15463603290380235
TOV: cycle=           4 surf=         583 M=   1.9290878086382708      x=   1.7329113052462743      dx=   2.8155619686886402E-002
...

followed by the computation of the rotating configuration

 >    1: max|hden - old hden| = 0.8462E-04
 >    2: max|hden - old hden| = 0.1179E-04
 >    3: max|hden - old hden| = 0.1272E-04
 >    4: max|hden - old hden| = 0.1680E-04
 ...

Once in a while, when the required tolerance is met, you see the final output:

## find_kep: iteration=            1
 gravitivational mass =    1.9406076078197565     
 rest mass            =    2.2703990441460347     
 total entropy        =    0.0000000000000000     
 angular momentum     =   0.53421095941810259     
 equatorial radius    =    5.7849999999999211       =    8.5422992991762108       km
 radii ratio          =   0.98271391529818508     
 equatorial Omega     =    1.0000000000000000E-002
 keplerian Omega      =    6.2028428506061051E-002
 disk mass            =    0.0000000000000000     
 central rho          =    1.7355999999999999E-003
 axial Omega          =    1.0000000000000000E-002
 error flag           =            0

This was simply the first step of the iteration and you see that the code is continuously increasing the mass and tries to find the maximum mass that you can reach at the Kepler limit. For this dummy example, you should arrive at:

This computation can take a while, so please be patient.

Plotting your results

Last modified: le 2022/08/16 14:33