LORENE
|
Equation of state base class. More...
#include <eos.h>
Public Member Functions | |
virtual | ~Eos () |
Destructor. More... | |
const char * | get_name () const |
Returns the EOS name. More... | |
void | set_name (const char *name_i) |
Sets the EOS name. More... | |
virtual bool | operator== (const Eos &) const =0 |
Comparison operator (egality) More... | |
virtual bool | operator!= (const Eos &) const =0 |
Comparison operator (difference) More... | |
virtual int | identify () const =0 |
Returns a number to identify the sub-classe of Eos the object belongs to. More... | |
virtual void | sauve (FILE *) const |
Save in a file. More... | |
virtual double | nbar_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the baryon density from the log-enthalpy and extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | nbar_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the baryon density field from the log-enthalpy field and extra parameters. More... | |
Scalar | nbar_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the baryon density field from the log-enthalpy field and extra parameters. More... | |
virtual double | ener_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the total energy density from the log-enthalpy and extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | ener_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the total energy density from the log-enthalpy and extra parameters. More... | |
Scalar | ener_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the total energy density from the log-enthalpy and extra parameters. More... | |
virtual double | press_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the pressure from the log-enthalpy and extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | press_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the pressure from the log-enthalpy and extra parameters. More... | |
Scalar | press_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the pressure from the log-enthalpy and extra parameters. More... | |
virtual double | der_nbar_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the logarithmic derivative from the log-enthalpy and extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | der_nbar_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
Scalar | der_nbar_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
virtual double | der_ener_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the logarithmic derivative from the log-enthalpy with extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | der_ener_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
Scalar | der_ener_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
virtual double | der_press_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the logarithmic derivative from the log-enthalpy and extra parameters (virtual function implemented in the derived classes). More... | |
Cmp | der_press_ent (const Cmp &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
Scalar | der_press_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters. More... | |
virtual double | csound_square_ent_p (double ent, const Param *par=0x0) const =0 |
Computes the sound speed squared from the enthapy with extra parameters (virtual function implemented in the derived classes). More... | |
Scalar | csound_square_ent (const Scalar &ent, int nzet, int l_min=0, Param *par=0x0) const |
Computes the sound speed squared from the enthalpy with extra parameters. More... | |
Static Public Member Functions | |
static Eos * | eos_from_file (FILE *) |
Construction of an EOS from a binary file. More... | |
static Eos * | eos_from_file (ifstream &) |
Construction of an EOS from a formatted file. More... | |
Protected Member Functions | |
Eos () | |
Standard constructor. More... | |
Eos (const char *name_i) | |
Standard constructor with name. More... | |
Eos (const Eos &) | |
Copy constructor. More... | |
Eos (FILE *) | |
Constructor from a binary file (created by the function sauve(FILE*) ). More... | |
Eos (ifstream &) | |
Constructor from a formatted file. More... | |
virtual ostream & | operator>> (ostream &) const =0 |
Operator >> More... | |
void | calcule (const Cmp &thermo, int nzet, int l_min, double(Eos::*fait)(double, const Param *) const, Param *par, Cmp &resu) const |
General computational method for Cmp 's. More... | |
void | calcule (const Scalar &thermo, int nzet, int l_min, double(Eos::*fait)(double, const Param *) const, Param *par, Scalar &resu) const |
General computational method for Scalar 's. More... | |
Protected Attributes | |
char | name [100] |
EOS name. More... | |
Friends | |
ostream & | operator<< (ostream &, const Eos &) |
Display. More... | |
|
protected |
|
explicitprotected |
|
protected |
|
protected |
Constructor from a binary file (created by the function sauve(FILE*)
).
This constructor is protected because any EOS construction from a binary file must be done via the function Eos::eos_from_file(FILE*)
.
Definition at line 142 of file eos.C.
References name.
|
protected |
Constructor from a formatted file.
This constructor is protected because any EOS construction from a formatted file must be done via the function Eos::eos_from_file(ifstream&)
.
Definition at line 150 of file eos.C.
References name.
|
protected |
General computational method for Cmp
's.
thermo | [input] thermodynamical quantity (for instance the enthalpy field)from which the thermodynamical quantity resu is to be computed. |
nzet | [input] number of domains where resu is to be computed. |
l_min | [input] index of the innermost domain is which resu is to be computed [default value: 0]; resu is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
fait | [input] pointer on the member function of class Eos which performs the pointwise calculation. |
par | possible extra parameters of the EOS |
resu | [output] result of the computation. |
Definition at line 213 of file eos.C.
References Lorene::Cmp::get_etat().
|
protected |
General computational method for Scalar
's.
thermo | [input] thermodynamical quantity (for instance the enthalpy field)from which the thermodynamical quantity resu is to be computed. |
nzet | [input] number of domains where resu is to be computed. |
l_min | [input] index of the innermost domain is which resu is to be computed [default value: 0]; resu is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
fait | [input] pointer on the member function of class Eos which performs the pointwise calculation. |
par | possible extra parameters of the EOS |
resu | [output] result of the computation. |
Definition at line 285 of file eos.C.
References Lorene::Scalar::get_etat().
Scalar Lorene::Eos::csound_square_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the sound speed squared from the enthalpy with extra parameters.
ent | [input, unit: c^2] enthalpy |
nzet | number of domains where the derivative dln(e)/dln(H) is to be computed. |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(e)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 499 of file eos.C.
References calcule(), csound_square_ent_p(), and Lorene::Tensor::get_mp().
|
pure virtual |
Computes the sound speed squared from the enthapy with extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: c^2] enthalpy |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_fit_AkmalPR, Lorene::Eos_tabul, Lorene::Eos_consistent, Lorene::Eos_multi_poly, Lorene::Eos_fit_FPS, Lorene::Eos_compose_fit, Lorene::Eos_mag, Lorene::Eos_fit_SLy4, and Lorene::Eos_fitting.
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(e)/dln(H) is to be computed. |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(e)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 454 of file eos.C.
References calcule(), der_ener_ent_p(), and Lorene::Cmp::get_mp().
Scalar Lorene::Eos::der_ener_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(e)/dln(H) is to be computed. |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(e)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 464 of file eos.C.
References calcule(), der_ener_ent_p(), and Lorene::Tensor::get_mp().
|
pure virtual |
Computes the logarithmic derivative from the log-enthalpy with extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(n)/dln(H) is to be computed. |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(n)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 431 of file eos.C.
References calcule(), der_nbar_ent_p(), and Lorene::Cmp::get_mp().
Scalar Lorene::Eos::der_nbar_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(n)/dln(H) is to be computed. |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(n)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 441 of file eos.C.
References calcule(), der_nbar_ent_p(), and Lorene::Tensor::get_mp().
|
pure virtual |
Computes the logarithmic derivative from the log-enthalpy and extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
Cmp Lorene::Eos::der_press_ent | ( | const Cmp & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(p)/dln(H) is to be computed. |
par | possible extra parameters of the EOS |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(p)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
Definition at line 476 of file eos.C.
References calcule(), der_press_ent_p(), and Lorene::Cmp::get_mp().
Scalar Lorene::Eos::der_press_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the logarithmic derivative from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the derivative dln(p)/dln(H) is to be computed. |
par | possible extra parameters of the EOS |
l_min | index of the innermost domain is which the coefficient dln(n)/dln(H) is to be computed [default value: 0]; the derivative dln(p)/dln(H) is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
Definition at line 486 of file eos.C.
References calcule(), der_press_ent_p(), and Lorene::Tensor::get_mp().
|
pure virtual |
Computes the logarithmic derivative from the log-enthalpy and extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
Computes the total energy density from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the energy density is to be computed. |
l_min | index of the innermost domain is which the energy density is to be computed [default value: 0]; the energy density is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 387 of file eos.C.
References calcule(), ener_ent_p(), and Lorene::Cmp::get_mp().
Scalar Lorene::Eos::ener_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the total energy density from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the energy density is to be computed. |
l_min | index of the innermost domain is which the energy density is to be computed [default value: 0]; the energy density is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 397 of file eos.C.
References calcule(), ener_ent_p(), and Lorene::Tensor::get_mp().
|
pure virtual |
Computes the total energy density from the log-enthalpy and extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_consistent, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
|
static |
Construction of an EOS from a binary file.
The file must have been created by the function sauve(FILE*)
.
Definition at line 193 of file eos_from_file.C.
References Lorene::fread_be().
|
static |
Construction of an EOS from a formatted file.
The fist line of the file must start by the EOS number, according to the following conventions:
Eos_poly
).Eos_poly_newt
).Eos_incomp
).Eos_incomp_newt
).Eos_Fermi
)MEos
)Eos_multi_poly
)The second line in the file should contain a name given by the user to the EOS. The following lines should contain the EOS parameters (one parameter per line), in the same order than in the class declaration.
Definition at line 345 of file eos_from_file.C.
const char * Lorene::Eos::get_name | ( | ) | const |
|
pure virtual |
Returns a number to identify the sub-classe of Eos
the object belongs to.
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_GlendNH3, Lorene::Eos_poly, Lorene::Eos_BalbN1H1, Lorene::Eos_BBB2, Lorene::Eos_AkmalPR, Lorene::Eos_BPAL12, Lorene::Eos_FPS, Lorene::Eos_SLy4, Lorene::Eos_fit_AkmalPR, Lorene::Eos_fit_FPS, Lorene::Eos_consistent, Lorene::Eos_fit_SLy4, Lorene::Eos_multi_poly, Lorene::Eos_mag, Lorene::Eos_compose_fit, and Lorene::Eos_CompOSE.
Computes the baryon density field from the log-enthalpy field and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the baryon density is to be computed. |
l_min | index of the innermost domain is which the baryon density is to be computed [default value: 0]; the baryon density is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 362 of file eos.C.
References calcule(), Lorene::Cmp::get_mp(), and nbar_ent_p().
Scalar Lorene::Eos::nbar_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the baryon density field from the log-enthalpy field and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the baryon density is to be computed. |
l_min | index of the innermost domain is which the baryon density is to be computed [default value: 0]; the baryon density is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 372 of file eos.C.
References calcule(), Lorene::Tensor::get_mp(), and nbar_ent_p().
|
pure virtual |
Computes the baryon density from the log-enthalpy and extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_consistent, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
|
pure virtual |
Comparison operator (difference)
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_GlendNH3, Lorene::Eos_poly, Lorene::Eos_BalbN1H1, Lorene::Eos_BBB2, Lorene::Eos_AkmalPR, Lorene::Eos_BPAL12, Lorene::Eos_FPS, Lorene::Eos_SLy4, Lorene::Eos_fit_AkmalPR, Lorene::Eos_fit_FPS, Lorene::Eos_consistent, Lorene::Eos_fit_SLy4, Lorene::Eos_multi_poly, Lorene::Eos_mag, Lorene::Eos_compose_fit, and Lorene::Eos_CompOSE.
|
pure virtual |
Comparison operator (egality)
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_GlendNH3, Lorene::Eos_poly, Lorene::Eos_BalbN1H1, Lorene::Eos_BBB2, Lorene::Eos_AkmalPR, Lorene::Eos_BPAL12, Lorene::Eos_FPS, Lorene::Eos_SLy4, Lorene::Eos_fit_AkmalPR, Lorene::Eos_fit_FPS, Lorene::Eos_consistent, Lorene::Eos_fit_SLy4, Lorene::Eos_multi_poly, Lorene::Eos_mag, Lorene::Eos_compose_fit, and Lorene::Eos_CompOSE.
|
protectedpure virtual |
Operator >>
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_GlendNH3, Lorene::Eos_BalbN1H1, Lorene::Eos_BBB2, Lorene::Eos_AkmalPR, Lorene::Eos_BPAL12, Lorene::Eos_FPS, Lorene::Eos_SLy4, Lorene::Eos_fit_AkmalPR, Lorene::Eos_fit_FPS, Lorene::Eos_consistent, Lorene::Eos_multi_poly, Lorene::Eos_fit_SLy4, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_CompOSE.
Computes the pressure from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the pressure is to be computed. |
l_min | index of the innermost domain is which the pressure is to be computed [default value: 0]; the pressure is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 409 of file eos.C.
References calcule(), Lorene::Cmp::get_mp(), and press_ent_p().
Scalar Lorene::Eos::press_ent | ( | const Scalar & | ent, |
int | nzet, | ||
int | l_min = 0 , |
||
Param * | par = 0x0 |
||
) | const |
Computes the pressure from the log-enthalpy and extra parameters.
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
nzet | number of domains where the pressure is to be computed. |
l_min | index of the innermost domain is which the pressure is to be computed [default value: 0]; the pressure is computed only in domains whose indices are in [l_min,l_min+nzet-1] . In the other domains, it is set to zero. |
par | possible extra parameters of the EOS |
Definition at line 419 of file eos.C.
References calcule(), Lorene::Tensor::get_mp(), and press_ent_p().
|
pure virtual |
Computes the pressure from the log-enthalpy and extra parameters (virtual function implemented in the derived classes).
ent | [input, unit: ] log-enthalpy H defined by , where e is the (total) energy density, p the pressure, n the baryon density, and the baryon mass |
par | possible extra parameters of the EOS |
Implemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_consistent, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, and Lorene::Eos_fitting.
|
virtual |
Save in a file.
Reimplemented in Lorene::MEos, Lorene::Eos_Fermi, Lorene::Eos_strange_cr, Lorene::Eos_strange, Lorene::Eos_incomp_newt, Lorene::Eos_incomp, Lorene::Piecewise_polytrope_1D, Lorene::Pseudo_polytrope_1D, Lorene::Eos_poly_newt, Lorene::Eos_poly, Lorene::Eos_tabul, Lorene::Eos_multi_poly, Lorene::Eos_compose_fit, Lorene::Eos_mag, Lorene::Eos_CompOSE, and Lorene::Eos_fitting.
Definition at line 189 of file eos.C.
References Lorene::fwrite_be(), identify(), and name.
void Lorene::Eos::set_name | ( | const char * | name_i | ) |
|
friend |