Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
examples_aswns_nonbaro [2022/08/16 13:56] theoastro [Changing the code input] |
examples_aswns_nonbaro [2022/08/16 20:52] (current) theoastro [Computing non-barotropic stars] |
||
---|---|---|---|
Line 1: | Line 1: | ||
===== Computing non-barotropic stars ===== | ===== Computing non-barotropic stars ===== | ||
- | + | ==== Theoretical Background and Model Parameters ==== | |
- | This test follows the computation focusses on the computation of a non-barotropic configuration | + | |
- | + | ||
- | ==== Model Parameters | + | |
- | + | ||
- | ==== Theoretical Background | + | |
For a careful theoretical understanding, | For a careful theoretical understanding, | ||
Line 23: | Line 18: | ||
{{ASWNS_EOS_4.png|EOS4}} | {{ASWNS_EOS_4.png|EOS4}} | ||
- | ==== Changing the code input ==== | + | ==== Code input ==== |
The simple example that is given in the git repository looks at a cold, rigidly rotating neutron star. | 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: | In input parameters can be found at the beginning of kepler.f90 and they are: | ||
- | * gam (double) --> polytropic index of the cold component | + | |
- | * gamth (double) --> exponent of the thermal component | + | |
- | * k1 (double) --> | + | |
- | * k2 (double) --> proportionality constant of the thermal component | + | |
- | * k3 (double) | + | |
- | * omg0 (double) --> angular velocity in the center | + | |
- | * bvalue (double) --> baroclinic parameter | + | |
- | * rho0 (double) --> central rest mass density | + | |
- | * sigma (double) --> inverse scale radius of the differential rotation sigma = 1/R0 | + | |
- | * verbose (logical) --> | + | |
- | * logfile (character) --> defines where the extended summary of the results is stored | + | |
- | * binfile (character) --> defined where the stellar profiles are stored | + | |
- | * maxit (integer) --> maximum number of iterations for the Newton-Raphson scheme | + | |
- | * tol (double) --> relative tolerance of the employed Newton-Raphson scheme | + | |
- | * relax_iters (integer) --> relaxation iterations in the force balance equation (Euler) solver | + | * **relax_iters** (integer) --> relaxation iterations in the force balance equation (Euler) solver |
- | * rhocit (double) --> critical density for the EOS inversion from (p, hden) to (rho, s) | + | * **rhocit** (double) --> critical density for the EOS inversion from (p, hden) to (rho, s) |
- | * funmax (double) --> maximal value of the function needed for the EOS inversion from (p, hden) to (rho, s) | + | * **funmax** (double) --> maximal value of the function needed for the EOS inversion from (p, hden) to (rho, s) |
==== A first Test ==== | ==== A first Test ==== | ||
Line 49: | Line 44: | ||
After following the outlined [[installation_ASWNS|installation guide]], you can run a first test configuration | After following the outlined [[installation_ASWNS|installation guide]], you can run a first test configuration | ||
./ | ./ | ||
+ | |||
+ | The code starts with computing fist some TOV configurations : | ||
+ | TOV: cycle= | ||
+ | ... | ||
+ | TOV: cycle= | ||
+ | |||
+ | Then, the computation of the non-barotropic configuration begins. | ||
+ | > 1: max|hden - old hden| = 0.6006E-03 | ||
+ | > 2: max|hden - old hden| = 0.2515E-03 | ||
+ | ... | ||
+ | > 289: max|hden - old hden| = 0.1056E-10 | ||
+ | > 290: max|hden - old hden| = 0.9721E-11 | ||
+ | |||
+ | Once the final [[general_aswns|tolerance]] is reached the code provides the final results: | ||
+ | | ||
+ | rest mass = 2.4938629670750729 | ||
+ | total entropy | ||
+ | | ||
+ | | ||
+ | radii ratio = | ||
+ | | ||
+ | | ||
+ | disk mass = 0.0000000000000000 | ||
+ | | ||
+ | | ||
+ | error flag | ||
+ | |||
+ | |||
+ | |||
==== Plotting your results ==== | ==== Plotting your results ==== | ||
+ | ASWNS also provides a simple script to transform the binary output (that is by default stored in `star.out' | ||
+ | | ||
+ | from binfile_reader import * | ||
+ | bin2dat(binstar(' | ||
+ | |||
+ | This would create an output file with the name star.dat in which you can see the columns theta, r, rest mass density, pressure, internal energy density, fluid velocity, conformal factor, lapse, ZAMO energy, entropy per baryon, and the temperature. | ||
+ | |||
+ | The most straight forward way to make a 2d plot from the data would be to use gnuplot or any other low-level routine and type: | ||
+ | |||
+ | gnuplot | ||
+ | gnuplot> set xrange [0:10] | ||
+ | gnuplot> set yrange [0:10] | ||
+ | gnuplot> splot ' | ||
+ | |||
+ | {{Simple2d_plot.png}} | ||
+ | |||
+ | |||
+ | Of course, it would also be possible to produce simple 1d plots and/or use python for plotting, where an example is given below, where we show the density along one radial direction (by using just the first 1000 entries) for approximately theta=0: | ||
+ | |||
+ | import numpy as np | ||
+ | import matplotlib.pyplot as plt | ||
+ | | ||
+ | th, r, rho = np.loadtxt(' | ||
+ | fig = plt.figure() | ||
+ | plt.plot(r[0: | ||
+ | plt.xlabel(' | ||
+ | plt.ylabel(' | ||
+ | plt.show(); | ||
+ | |||
+ | |||
+ | {{ASWNS_nonbaro_1d.png}} | ||
+ |
Last modified: le 2022/08/16 13:56