type references fixed

This commit is contained in:
Nicolas Kruse 2025-06-17 23:31:17 +02:00
parent 944aeb3546
commit 1e54392d54
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,8 @@ from typing import Literal, Any
from math import exp from math import exp
from scipy.optimize import minimize, root from scipy.optimize import minimize, root
import numpy as np import numpy as np
from ._main import T, NDFloat, elements, fluid, fluid_system, FloatArray from ._main import T, elements, fluid, fluid_system
from .typing import NDFloat, FloatArray
from .constants import p0, epsy, R from .constants import p0, epsy, R

View File

@ -1,6 +1,7 @@
from .constants import R, F from .constants import R, F
from ._operations import oxygen_partial_pressure from ._operations import oxygen_partial_pressure
from ._main import fluid, elements, FloatArray from ._main import fluid, elements
from .typing import FloatArray
import numpy as np import numpy as np
# Each O2 molecule is transported as two ions and each ion has a charged of 2e # Each O2 molecule is transported as two ions and each ion has a charged of 2e