Skip to content

Commit

Permalink
Fixing kappa_par conversion (#238)
Browse files Browse the repository at this point in the history
Added Tnorm division to kappa_par conversion
  • Loading branch information
PoloidalLloyd authored Aug 2, 2024
1 parent 8c45022 commit 519306b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evolve_pressure.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ void EvolvePressure::outputVars(Options& state) {
set_with_attrs(state[std::string("kappa_par_") + name], kappa_par,
{{"time_dimension", "t"},
{"units", "W / m / eV"},
{"conversion", Pnorm * Omega_ci * SQ(rho_s0)},
{"conversion", (Pnorm * Omega_ci * SQ(rho_s0) )/ Tnorm},
{"long_name", name + " heat conduction coefficient"},
{"species", name},
{"source", "evolve_pressure"}});
Expand Down

0 comments on commit 519306b

Please sign in to comment.