From bb42b6fc262e4f0b711ab28dafeae76a36f58999 Mon Sep 17 00:00:00 2001 From: Laurent Soucasse <135331272+lsoucasse@users.noreply.github.com> Date: Mon, 26 Aug 2024 15:45:18 +0200 Subject: [PATCH] Typo. --- src/janus/utils/atmosphere_column.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/janus/utils/atmosphere_column.py b/src/janus/utils/atmosphere_column.py index ba9ff5d..69c5929 100644 --- a/src/janus/utils/atmosphere_column.py +++ b/src/janus/utils/atmosphere_column.py @@ -317,7 +317,7 @@ def setPlanetProperties(self, pl_radius:float, pl_mass:float): self.grav_s = phys.G*self.planet_mass/(self.planet_radius**2) # m s-2 self.grav_z[0] = self.grav_s - def setVolatiles(self, vol_mixing: dict) + def setVolatiles(self, vol_mixing: dict): tot_mixing = float(sum(vol_mixing.values())) # Ensure mixing ratios add up to unity self.vol_list = {}