From 1d81bac23b5e7b8bfc194ab235f61aa5d2e57c67 Mon Sep 17 00:00:00 2001 From: mn3981 Date: Wed, 19 Nov 2025 14:26:35 +0000 Subject: [PATCH] :bug: Fix output file reference in effective charge and impurity charge logging --- process/physics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/physics.py b/process/physics.py index d983159135..8d16bf4559 100644 --- a/process/physics.py +++ b/process/physics.py @@ -5060,7 +5060,7 @@ def outplas(self): ) for i in range(len(physics_variables.n_charge_plasma_effective_profile)): po.ovarre( - self.outfile, + self.mfile, "Effective charge at point", f"(n_charge_plasma_effective_profile{i})", physics_variables.n_charge_plasma_effective_profile[i], @@ -5070,7 +5070,7 @@ def outplas(self): for imp in range(impurity_radiation_module.N_IMPURITIES): for i in range(physics_variables.n_plasma_profile_elements): po.ovarre( - self.outfile, + self.mfile, "Impurity charge at point", f"(n_charge_plasma_profile{imp}_{i})", impurity_radiation_module.n_charge_impurity_profile[imp][i],