Skip to content

Commit 838a370

Browse files
committed
Fix Formating....
1 parent 218a5cb commit 838a370

20 files changed

+1159
-1465
lines changed

CADETPythonSimulator/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
"""Version information."""
2+
23
name = "CADET-Python-Simulator"
34
__version__ = "0.0.1"

CADETPythonSimulator/componentsystem.py

+29-28
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,18 @@ class CPSComponent(Component):
8181
8282
"""
8383

84-
def __init__(self,
85-
name=None,
86-
species=None,
87-
charge=None,
88-
molecular_weight=None,
89-
density=None,
90-
molecular_volume=None,
91-
viscosity=None,
92-
pure_density=None,
93-
specific_cake_resistance=None):
84+
def __init__(
85+
self,
86+
name=None,
87+
species=None,
88+
charge=None,
89+
molecular_weight=None,
90+
density=None,
91+
molecular_volume=None,
92+
viscosity=None,
93+
pure_density=None,
94+
specific_cake_resistance=None,
95+
):
9496
"""Construct CPSComponent."""
9597
self.name = name
9698
self._species = []
@@ -104,7 +106,7 @@ def __init__(self,
104106
molecular_volume,
105107
viscosity,
106108
pure_density,
107-
specific_cake_resistance
109+
specific_cake_resistance,
108110
)
109111
elif isinstance(species, str):
110112
self.add_species(
@@ -115,7 +117,7 @@ def __init__(self,
115117
molecular_volume,
116118
viscosity,
117119
pure_density,
118-
specific_cake_resistance
120+
specific_cake_resistance,
119121
)
120122
elif isinstance(species, list):
121123
if charge is None:
@@ -141,7 +143,7 @@ def __init__(self,
141143
molecular_volume[i],
142144
viscosity[i],
143145
pure_density[i],
144-
specific_cake_resistance[i]
146+
specific_cake_resistance[i],
145147
)
146148
else:
147149
raise CADETPythonSimError("Could not determine number of species")
@@ -182,6 +184,7 @@ def specific_cake_resistance(self):
182184
"""List of float or None: specific cake resistance of the subspecies."""
183185
return [spec.specific_cake_resistance for spec in self.species]
184186

187+
185188
class CPSComponentSystem(ComponentSystem):
186189
"""
187190
Component System Class.
@@ -228,16 +231,16 @@ class CPSComponentSystem(ComponentSystem):
228231
"""
229232

230233
def __init__(
231-
self,
232-
components=None,
233-
name=None,
234-
charges=None,
235-
molecular_weights=None,
236-
densities=None,
237-
molecular_volume=None,
238-
viscosities=None,
239-
specific_cake_resistances=None
240-
):
234+
self,
235+
components=None,
236+
name=None,
237+
charges=None,
238+
molecular_weights=None,
239+
densities=None,
240+
molecular_volume=None,
241+
viscosities=None,
242+
specific_cake_resistances=None,
243+
):
241244
"""
242245
Initialize the ComponentSystem object.
243246
@@ -295,7 +298,6 @@ def __init__(
295298
if specific_cake_resistances is None:
296299
specific_cake_resistances = n_comp * [None]
297300

298-
299301
for i, comp in enumerate(components):
300302
self.add_component(
301303
comp,
@@ -304,7 +306,7 @@ def __init__(
304306
density=densities[i],
305307
molecular_volume=molecular_volume[i],
306308
viscosity=viscosities[i],
307-
specific_cake_resistance=specific_cake_resistances[i]
309+
specific_cake_resistance=specific_cake_resistances[i],
308310
)
309311

310312
@wraps(CPSComponent.__init__)
@@ -327,8 +329,7 @@ def add_component(self, component, *args, **kwargs):
327329

328330
if component.name in self.names:
329331
raise CADETPythonSimError(
330-
f"Component '{component.name}' "
331-
"already exists in ComponentSystem."
332+
f"Component '{component.name}' already exists in ComponentSystem."
332333
)
333334

334335
self._components.append(component)
@@ -356,7 +357,7 @@ def viscosities(self):
356357
"""list: List of species viscosity."""
357358
viscosities = []
358359
for comp in self.components:
359-
viscosities +=comp.viscosity
360+
viscosities += comp.viscosity
360361

361362
return viscosities
362363

CADETPythonSimulator/coupling_interface.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,17 @@ class CouplingInterface(abc.ABC):
88

99
@abc.abstractmethod
1010
def get_coupled_state(
11-
self,
12-
origin_list: list[(dict, float)],
13-
state: str
14-
) -> np.ndarray:
11+
self, origin_list: list[(dict, float)], state: str
12+
) -> np.ndarray:
1513
"""Calculate new state for destination_unit."""
1614

1715

1816
class WeightedAverageCoupling(CouplingInterface):
1917
"""Implements the Coupling Interface for average Coupling."""
2018

21-
def get_coupled_state(self,
22-
origin_list: list[(dict, float)],
23-
state: str
24-
) -> np.ndarray:
19+
def get_coupled_state(
20+
self, origin_list: list[(dict, float)], state: str
21+
) -> np.ndarray:
2522
"""Calculate new state for destination_unit with average Coupling."""
2623
ret = np.zeros(origin_list[0][0][state].shape)
2724
rate_tot = 0

CADETPythonSimulator/distribution_base.py

+12-24
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
from CADETPythonSimulator.componentsystem import CPSComponentSystem
44
from CADETPythonSimulator.exception import CADETPythonSimError
55

6+
67
class DistributionBase:
78
"""Small wrapper class for implementing Distributions for Boundary Conditions."""
89

9-
def get_distribution(t: float, section_nr: int)->np.ndarray:
10+
def get_distribution(t: float, section_nr: int) -> np.ndarray:
1011
"""Abtract class to call."""
1112
pass
1213

14+
1315
class ConstantVolumeDistribution(DistributionBase):
1416
"""Implements DistributionBase for a Constant Volume Distribution."""
1517

@@ -29,26 +31,19 @@ def __init__(self, component_system: CPSComponentSystem, c: npt.ArrayLike):
2931

3032
n = [i for i in self.c]
3133
m = [
32-
n_i * self.component_system.molecular_weights[i]
33-
for i, n_i in enumerate(n)
34-
]
35-
V = [
36-
m_i / self.component_system.densities[i]
37-
for i, m_i in enumerate(m)
34+
n_i * self.component_system.molecular_weights[i] for i, n_i in enumerate(n)
3835
]
36+
V = [m_i / self.component_system.densities[i] for i, m_i in enumerate(m)]
3937
V_solvent = 1 - sum(V)
4038

41-
if V_solvent<0:
39+
if V_solvent < 0:
4240
raise CADETPythonSimError(
4341
"Last species Volume is negative. Misconfigured Simulation"
44-
)
42+
)
4543

4644
V.append(V_solvent)
4745

48-
self.V_dist = [
49-
i / sum(V)
50-
for i in V
51-
]
46+
self.V_dist = [i / sum(V) for i in V]
5247

5348
def get_distribution(self, t, sec) -> list[float]:
5449
"""Return Constant Volume Distribution."""
@@ -72,27 +67,20 @@ def __init__(self, component_system: CPSComponentSystem, c: npt.ArrayLike):
7267
self.component_system = component_system
7368

7469
n = [i for i in c]
75-
m = [
76-
n_i * component_system.molecular_weights[i]
77-
for i, n_i in enumerate(n)
78-
]
79-
V = [
80-
m_i / component_system.densities[i]
81-
for i, m_i in enumerate(m)
82-
]
70+
m = [n_i * component_system.molecular_weights[i] for i, n_i in enumerate(n)]
71+
V = [m_i / component_system.densities[i] for i, m_i in enumerate(m)]
8372
V_solvent = 1 - sum(V)
8473

85-
if V_solvent<0:
74+
if V_solvent < 0:
8675
raise CADETPythonSimError(
8776
"Last species Volume is negative. Misconfigured Simulation"
88-
)
77+
)
8978

9079
m_solvent = component_system.densities[-1] * V_solvent
9180
n_solvent = m_solvent / component_system.molecular_weights[-1]
9281

9382
self.c = [*c, n_solvent]
9483

95-
9684
def get_distribution(self, t, sec) -> list[float]:
9785
"""Return Constant Concentrations."""
9886
return self.c

CADETPythonSimulator/residual.py

+32-30
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66

77

88
def calculate_residual_volume_cstr(
9-
V: float,
10-
V_dot: float,
11-
Q_in: float,
12-
Q_out: float
13-
) -> float:
9+
V: float, V_dot: float, Q_in: float, Q_out: float
10+
) -> float:
1411
"""
1512
Calculate the residual equations of the volume of a CSTR.
1613
@@ -36,15 +33,16 @@ def calculate_residual_volume_cstr(
3633

3734
return V_dot - Q_in + Q_out
3835

36+
3937
def calculate_residual_concentration_cstr(
40-
c: np.ndarray,
41-
c_dot: np.ndarray,
42-
V: float,
43-
V_dot: float,
44-
Q_in: float,
45-
Q_out: float,
46-
c_in: np.ndarray
47-
) -> np.ndarray:
38+
c: np.ndarray,
39+
c_dot: np.ndarray,
40+
V: float,
41+
V_dot: float,
42+
Q_in: float,
43+
Q_out: float,
44+
c_in: np.ndarray,
45+
) -> np.ndarray:
4846
"""
4947
Calculate the residual equations of the concentration of a CSTR.
5048
@@ -71,20 +69,22 @@ def calculate_residual_concentration_cstr(
7169

7270
return c_dot * V + V_dot * c - Q_in * c_in + Q_out * c
7371

72+
7473
def calculate_residual_visc_cstr():
7574
"""Calculate the residual of the Viscosity equation of the CSTR."""
7675
warnings.warn("Viscosity of CSTR not yet implemented")
7776

7877
return 0
7978

79+
8080
def calculate_residual_cake_vol_def(
81-
V: float,
82-
rejection: np.ndarray,
83-
densities: np.ndarray,
84-
molecular_weights: np.ndarray,
85-
c_in: np.ndarray,
86-
V_C: float
87-
) -> float:
81+
V: float,
82+
rejection: np.ndarray,
83+
densities: np.ndarray,
84+
molecular_weights: np.ndarray,
85+
c_in: np.ndarray,
86+
V_C: float,
87+
) -> float:
8888
"""
8989
Residual equation for the Cake Volume.
9090
@@ -106,15 +106,16 @@ def calculate_residual_cake_vol_def(
106106
"""
107107
return -V_C + V * np.sum(rejection * c_in * molecular_weights / densities)
108108

109+
109110
def calculate_residual_press_easy_def(
110-
V_dot_Perm: float,
111-
V_C: float,
112-
deltap: float,
113-
A: float,
114-
mu: float,
115-
Rm: float,
116-
alpha: float
117-
) -> float:
111+
V_dot_Perm: float,
112+
V_C: float,
113+
deltap: float,
114+
A: float,
115+
mu: float,
116+
Rm: float,
117+
alpha: float,
118+
) -> float:
118119
"""
119120
Calculate the residual equations.
120121
@@ -139,9 +140,10 @@ def calculate_residual_press_easy_def(
139140
Specific cake resistance
140141
141142
"""
142-
hyd_resistance = (Rm + alpha*V_C/A) * mu
143+
hyd_resistance = (Rm + alpha * V_C / A) * mu
144+
145+
return deltap * A - V_dot_Perm * hyd_resistance
143146

144-
return deltap * A - V_dot_Perm* hyd_resistance
145147

146148
def calculate_residual_visc_def():
147149
"""Calculate the residual of the Viscosity equation of the CSTR."""

0 commit comments

Comments
 (0)