Skip to content

Commit 681788c

Browse files
committed
Fixed undefined variable S
1 parent da3b79a commit 681788c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Interface.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ struct Outlet{V,FF<:Function} <: AbstractBoundaryInterface
283283
end
284284
export Outlet
285285

286-
struct ConstantReservoirDiffusion{V<:AbstractArray,U<:Real}
286+
struct ConstantReservoirDiffusion{S,V<:AbstractArray,U<:Real}
287287
domain::S
288288
c::V
289289
A::U
@@ -299,7 +299,7 @@ end
299299
kLAkHCondensationEvaporationWithReservoir adds evaporation and condensation to
300300
(1) a liquid phase domain with a constant composition vapor resevoir, where number of moles, P, and T need to be specified, or
301301
(2) a gas phase domain with a constant composition liquid resevoir, where number of moles, V, and T need to be specified.
302-
kLA and kH are used to model cond/evap.
302+
kLA and kH are used to model cond/evap.
303303
kLA is liquid volumetric mass transfer coefficient with unit 1/s , and kH is Henry's law constant defined as gas phase partial pressure of solute over liquid phase concentration of solute.
304304
"""
305305

@@ -387,7 +387,7 @@ end
387387
export VolumetricFlowRateInlet
388388

389389
"""
390-
VolumeMaintainingOutlet is designed for gas phase domain such that the flow rate of this outlet will adjust to maintain the volume of the
390+
VolumeMaintainingOutlet is designed for gas phase domain such that the flow rate of this outlet will adjust to maintain the volume of the
391391
domain to be constant. This is particularly useful to simulate any vapor-liquid phase system where the gas phase outlet
392392
is determined by the amount of evaporation.
393393
"""
@@ -565,4 +565,4 @@ function evaluate(ri::FragmentBasedReactiveFilmGrowthInterfaceConstantT, dydt, V
565565
end
566566
end
567567

568-
export evaluate
568+
export evaluate

0 commit comments

Comments
 (0)