Skip to content

Commit

Permalink
Con2PrimFactory: add parameters for temperature in atmosphere
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Kalinani committed Dec 5, 2024
1 parent f53fcd7 commit fb2feb6
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions Con2PrimFactory/param.ccl
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,19 @@ CCTK_REAL atmo_tol "atmosphere density tolerance factor" STEERABLE=ALWAYS

CCTK_REAL eps_atmo "Specific energy density of the atmosphere" STEERABLE = recover {
0 : *::"Larger than zero"
}
1e-10
} 1e-10

CCTK_REAL p_atmo "Pressure of the atmosphere" STEERABLE = recover {
0 : *::"Larger than zero"
}
1e-10
} 1e-10

CCTK_REAL t_atmo "Temperature of the atmosphere in MeV" STEERABLE = recover {
0 : *::"Larger than zero"
} 1e-10

CCTK_REAL Ye_atmo "Electron fraction of the atmosphere" STEERABLE = recover {
0 : *::"Larger than zero"
}
1e-10
} 1e-10

CCTK_REAL B_lim "Upper limit for the value of magnetization" STEERABLE=ALWAYS
{
Expand Down Expand Up @@ -88,6 +89,11 @@ CCTK_REAL n_press_atmo "Exponential of the radial power law atmosphere prescript
0.0:* :: ""
} 0.0

CCTK_REAL n_temp_atmo "Exponential of the radial power law atmosphere prescription for temperature." STEERABLE=ALWAYS
{
0.0:* :: ""
} 0.0

BOOLEAN thermal_eos_atmo "Whether to use the thermal (evolution) EOS for setting pressure in the atmosphere. If set to no, cold (initial data) EOS is used instead." STEERABLE=ALWAYS
{
} "no"
Expand Down

0 comments on commit fb2feb6

Please sign in to comment.