Skip to content

Commit 4ffdd40

Browse files
committed
Fixed undefined variable S
1 parent 794d39a commit 4ffdd40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Interface.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ struct Outlet{V,FF<:Function} <: AbstractBoundaryInterface
271271
end
272272
export Outlet
273273

274-
struct ConstantReservoirDiffusion{V<:AbstractArray,U<:Real}
274+
struct ConstantReservoirDiffusion{S,V<:AbstractArray,U<:Real}
275275
domain::S
276276
c::V
277277
A::U
@@ -287,7 +287,7 @@ end
287287
kLAkHCondensationEvaporationWithReservoir adds evaporation and condensation to
288288
(1) a liquid phase domain with a constant composition vapor resevoir, where number of moles, P, and T need to be specified, or
289289
(2) a gas phase domain with a constant composition liquid resevoir, where number of moles, V, and T need to be specified.
290-
kLA and kH are used to model cond/evap.
290+
kLA and kH are used to model cond/evap.
291291
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.
292292
"""
293293

@@ -375,7 +375,7 @@ end
375375
export VolumetricFlowRateInlet
376376

377377
"""
378-
VolumeMaintainingOutlet is designed for gas phase domain such that the flow rate of this outlet will adjust to maintain the volume of the
378+
VolumeMaintainingOutlet is designed for gas phase domain such that the flow rate of this outlet will adjust to maintain the volume of the
379379
domain to be constant. This is particularly useful to simulate any vapor-liquid phase system where the gas phase outlet
380380
is determined by the amount of evaporation.
381381
"""
@@ -550,4 +550,4 @@ function evaluate(ri::FragmentBasedReactiveFilmGrowthInterfaceConstantT, dydt, V
550550
end
551551
end
552552

553-
export evaluate
553+
export evaluate

0 commit comments

Comments
 (0)