Skip to content

Commit ac6f423

Browse files
committed
the same renaming in two other instances
1 parent e9e5a7d commit ac6f423

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PySDM/products/aqueous_chemistry/aqueous_mole_fraction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ def _impl(self, **kwargs):
2222
attr = "moles_" + self.key
2323

2424
self._download_moment_to_buffer(attr=attr, rank=0)
25-
conc = self.buffer.copy()
25+
number = self.buffer.copy()
2626

2727
self._download_moment_to_buffer(attr=attr, rank=1)
2828
tmp = self.buffer.copy()
29-
tmp[:] *= conc
29+
tmp[:] *= number
3030
tmp[:] *= DUMMY_SPECIFIC_GRAVITY * self.formulae.constants.Md
3131

3232
self._download_to_buffer(self.particulator.environment["rhod"])

PySDM/products/size_spectral/water_mixing_ratio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _impl(self, **kwargs): # TODO #217
3131
filter_range=self.signed_mass_range,
3232
filter_attr="signed water mass",
3333
)
34-
conc = self.buffer.copy()
34+
number = self.buffer.copy()
3535

3636
self._download_moment_to_buffer(
3737
attr="water mass",
@@ -40,7 +40,7 @@ def _impl(self, **kwargs): # TODO #217
4040
filter_attr="signed water mass",
4141
)
4242
result = self.buffer.copy()
43-
result[:] *= conc
43+
result[:] *= number
4444
result[:] /= self.particulator.mesh.dv
4545

4646
self._download_to_buffer(self.particulator.environment["rhod"])

0 commit comments

Comments
 (0)