Skip to content

Commit 6dd0fe6

Browse files
mjohnson541ssun30
authored andcommitted
Fixed typos
1 parent 2cea301 commit 6dd0fe6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Interface.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct ReactiveInternalInterface{T,B,C,C2,N,Q<:AbstractReaction,X} <: AbstractRe
3131
parameterindexes::Array{Int64,1}
3232
domaininds::Array{Int64,1}
3333
p::Array{Float64,1}
34-
reversibililty::Array{Bool,1}
34+
reversibility::Array{Bool,1}
3535
forwardability::Array{Bool,1}
3636
end
3737
function ReactiveInternalInterface(domain1,domain2,reactions,A)
@@ -452,7 +452,7 @@ struct FragmentBasedReactiveFilmGrowthInterfaceConstantT{D1,D2,Q<:AbstractReacti
452452
parameterindexes::Array{Int64,1}
453453
domaininds::Array{Int64,1}
454454
p::Array{Float64,1}
455-
reversibililty::Array{Bool,1}
455+
reversibility::Array{Bool,1}
456456
forwardability::Array{Bool,1}
457457
Mws::Array{Float64,1}
458458
end
@@ -468,7 +468,7 @@ function FragmentBasedReactiveFilmGrowthInterfaceConstantT(domainfilm, domain2,
468468
Gpart = ArrayPartition(domainfilm.Gs,domain2.Gs)
469469
dGrxns = -M*Gpart
470470
kfs = getkf.(reactions,nothing,T,0.0,0.0,Ref([]),0.0,0.0,dGrxns,0.0)
471-
Kc = getKcs(domain1.phase,domain2.phase,T,Nrp1,Nrp2,dGrxns)
471+
Kc = getKcs(domainfilm.phase,domain2.phase,T,Nrp1,Nrp2,dGrxns)
472472
krevs = kfs./Kc
473473

474474
M, Nrp1, Nrp2 = getstoichmatrix(domainfilm, domain2, reactions)

src/PhaseState.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ end
233233
return kfsdiff, krev
234234
else
235235
len = length(phase.reactions)
236-
kfs = zeros(typeof(Gs[1]),len)ss
236+
kfs = zeros(typeof(Gs[1]),len)
237237
krev = zeros(typeof(Gs[1]),len)
238238
@simd for i = 1:len
239239
@fastmath @inbounds kfs[i],krev[i] = getkfkrev(phase.reactions[i],phase,T,P,C,N,ns,dGrxns[i],diffs,V,phi,d)

0 commit comments

Comments
 (0)