From bde326e52ead93aff25fffe55bfe2aca7df733ee 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 654aced821..a02d8d3420 100644 --- a/src/thermo/PlasmaPhase.cpp +++ b/src/thermo/PlasmaPhase.cpp @@ -205,7 +205,7 @@ void PlasmaPhase::updateElectronTemperatureFromEnergyDist() void PlasmaPhase::setIsotropicShapeFactor(double x) { m_isotropicShapeFactor = x; - setIsotropicElectronEnergyDistribution(); + updateElectronEnergyDistribution(); } void PlasmaPhase::getParameters(AnyMap& phaseNode) const