-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
document more of the runtime parameters (#1695)
- Loading branch information
Showing
11 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
@namespace: eos | ||
|
||
# ratio of specific heats | ||
eos_gamma real 5.e0/3.e0 | ||
eos_assume_neutral bool 1 | ||
|
||
# when computing mu / Abar, do we assume that the composition is atoms | ||
# or ionized, and therefore include the electron contributions | ||
# separately? | ||
eos_assume_neutral bool 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
@namespace: eos | ||
|
||
# polytrope type: 1 is non-relativistic, fully degenerate electron | ||
# gas; 2 is fully-relativistic, fully degenerate gas. If these are | ||
# set, then only pulytrope_mu_e needs to be set. | ||
polytrope_type int 0 | ||
|
||
# density exponent for pressure, P = K rho**gamma | ||
polytrope_gamma real 0.0e0 | ||
|
||
# proportionality constant in EOS, P = K rho**gamma | ||
polytrope_K real 0.0e0 | ||
|
||
# mean molecular weight per electron for the cases when polytrope_type | ||
# is 1 or 2. In that case, we have P = K (rho / mu_e)**gamma | ||
polytrope_mu_e real 2.0e0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
@namespace: eos | ||
|
||
# specific heat proportionality constant, K, c_v = K rho**m T**(-n) | ||
eos_const_c_v real -1.e0 | ||
|
||
# specific heat density exponent, m, c_v = K rho**m T**(-n) | ||
eos_c_v_exp_m real 0.e0 | ||
|
||
# specific heat (negative) temperature exponent, n, c_v = K rho**m T**(-n) | ||
eos_c_v_exp_n real 0.e0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,27 @@ | ||
@namespace: eos | ||
|
||
eos_la real 0.5 | ||
|
||
eos_lb real 1.3 | ||
|
||
# minimum energy | ||
eos_e_0 real 1.6e11 | ||
|
||
# reference density | ||
eos_rho_0 real 2.7 | ||
|
||
|
||
eos_A real 1.8e11 | ||
|
||
eos_B real 1.8e11 | ||
|
||
eos_e_s real 3.5e10 | ||
|
||
eos_e_s_prime real 1.8e11 | ||
|
||
eos_alpha real 5.0 | ||
|
||
eos_beta real 5.0 | ||
|
||
# specific heat | ||
eos_c_v real 7.9e6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@namespace: conductivity | ||
|
||
# constant value of the conductivity, in erg/s/cm/K | ||
const_conductivity real 1.0e0 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
@namespace: conductivity | ||
|
||
# opacity value, in units of cm**2/g | ||
const_opacity real 7.0e-2 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters