From 411e4f8fb0af6c21dc790e9c119d5698d0dd2ed4 Mon Sep 17 00:00:00 2001 From: Bang-Shiuh Chen Date: Sun, 17 Nov 2024 17:46:44 -0500 Subject: [PATCH] [plasma] fix setIsotropicShapeFactor --- src/thermo/PlasmaPhase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thermo/PlasmaPhase.cpp b/src/thermo/PlasmaPhase.cpp index fdd39045e2..ce6d57a0c7 100644 --- a/src/thermo/PlasmaPhase.cpp +++ b/src/thermo/PlasmaPhase.cpp @@ -201,7 +201,7 @@ void PlasmaPhase::updateElectronTemperatureFromEnergyDist() void PlasmaPhase::setIsotropicShapeFactor(double x) { m_isotropicShapeFactor = x; - setIsotropicElectronEnergyDistribution(); + updateElectronEnergyDistribution(); } void PlasmaPhase::getParameters(AnyMap& phaseNode) const