Skip to content

Commit

Permalink
Merge pull request #33 from z-amer/change-requests
Browse files Browse the repository at this point in the history
changed ireg::Int64 to ireg::Int
  • Loading branch information
dilaraabdel authored Jan 16, 2024
2 parents a699940 + caf5c1b commit 66a5ed3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ct_physics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function get_DOS!(icc::QType, edge::VoronoiFVM.Edge, data)
end

# Calculate the DOS on a given interior region.
function get_DOS(icc::QType, ireg::Int64, ctsys)
function get_DOS(icc::QType, ireg::Int, ctsys)

grid = ctsys.fvmsys.grid
data = ctsys.fvmsys.physics.data
Expand Down Expand Up @@ -69,7 +69,7 @@ function get_BEE!(icc::QType, edge::VoronoiFVM.Edge, data)
end

# Calculate the band-edge energy on a given interior region.
function get_BEE(icc::QType, ireg::Int64, ctsys)
function get_BEE(icc::QType, ireg::Int, ctsys)

grid = ctsys.fvmsys.grid
data = ctsys.fvmsys.physics.data
Expand Down Expand Up @@ -148,7 +148,7 @@ $(TYPEDSIGNATURES)
The argument of the statistics function for a given solution on a given interior region.
"""
function etaFunction(sol, ireg::Int64, ctsys, icc::QType)
function etaFunction(sol, ireg::Int, ctsys, icc::QType)

grid = ctsys.fvmsys.grid
data = ctsys.fvmsys.physics.data
Expand Down Expand Up @@ -247,7 +247,7 @@ For given potentials, compute corresponding densities for given interior region
to a homogeneous set of parameters.
"""
function get_density(sol, ireg::Int64, ctsys, icc::QType)
function get_density(sol, ireg::Int, ctsys, icc::QType)

data = ctsys.fvmsys.physics.data

Expand Down

2 comments on commit 66a5ed3

@dilaraabdel
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Version 0.2.10 already exists

Please sign in to comment.