Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Voronoifvm v2 #37

Merged
merged 2 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
GridVisualize = "5eed8a63-0fb0-45eb-886d-8d5a387d12b8"
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
VoronoiFVM = "82b139dc-5afc-11e9-35da-9b9bdfd336f3"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"

[compat]
DocStringExtensions = "0.8,0.9"
ExtendableGrids = "^0.9,1"
ForwardDiff = "^0.10"
GridVisualize = "^1.0.0"
Interpolations = "^0.14.7"
Roots = "^2.0"
VoronoiFVM = "^1.13"
Interpolations = "0.14.7, 0.15"
PyPlot = "^2.11.2"
Roots = "^2.0"
VoronoiFVM = "1.13,2"
julia = "^1.6"
11 changes: 5 additions & 6 deletions examples/Ex104_PSC_Photogeneration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function main(;n = 5,
Plotter = PyPlot, # you can also use other Plotters, if you add them to the example file
plotting = false, verbose = false, test = false,
########################
parameter_file = "../parameter_files/Params_PSC_TiO2_MAPI_spiro.jl", # choose the parameter file
parameter_file = joinpath(@__DIR__,"..","parameter_files","Params_PSC_TiO2_MAPI_spiro.jl"), # choose the parameter file
########################
userdefinedGeneration = false) # you can choose between predefined and user-defined generation profiles

Expand Down Expand Up @@ -363,7 +363,6 @@ function main(;n = 5,
println("Reverse scan protocol")
end
################################################################################

inivalReverse = sol(tend)
solReverse = solve(ctsys, inival = inivalReverse, times=(tend, 2 * tend), control = control)

Expand All @@ -387,8 +386,8 @@ function main(;n = 5,

for istep = 2:number_tsteps
Δt = tvalues[istep] - tvalues[istep-1] # Time step size
inival = sol[istep-1]
solution = sol[istep]
inival = sol.u[istep-1]
solution = sol.u[istep]

I = integrate(ctsys, tf, solution, inival, Δt)

Expand All @@ -408,8 +407,8 @@ function main(;n = 5,

for istep = 2:number_tstepsReverse
Δt = tvaluesReverse[istep] - tvaluesReverse[istep-1] # Time step size
inival = solReverse[istep-1]
solution = solReverse[istep]
inival = solReverse.u[istep-1]
solution = solReverse.u[istep]

I = integrate(ctsys, tf, solution, inival, Δt)

Expand Down
6 changes: 3 additions & 3 deletions examples/Ex107_MoS2_withIons_BarrierLowering.jl
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ function main(;Plotter = PyPlot, plotting = false, verbose = false, test = false
push!(IV, 0.0)
for istep = 2:number_tsteps
Δt = tvalues[istep] - tvalues[istep-1] # Time step size
inival = sol[istep-1]
solution = sol[istep]
inival = sol.u[istep-1]
solution = sol.u[istep]

I = integrate(ctsys, tf, solution, inival, Δt)

Expand Down Expand Up @@ -330,4 +330,4 @@ function test()
end


end # module
end # module
Loading