Skip to content

Commit

Permalink
changed ireg::Int64 to ireg::Int
Browse files Browse the repository at this point in the history
  • Loading branch information
z-amer committed Jan 16, 2024
1 parent 650927e commit caf5c1b
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

0 comments on commit caf5c1b

Please sign in to comment.