Skip to content

Commit c3723ae

Browse files
committed
can use UC of different rank than param when adding bonds to param
1 parent ded3535 commit c3723ae

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Params.jl

+8-8
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Add a bond with the given attributes to `param`.
5050
If given `mat` attribute is a number, it is converted into a 1x1 matrix when entered into the bond.
5151
5252
"""
53-
function AddAnisotropicBond!( param::Param{T, R}, uc::UnitCell{T} , base::Int64 , target::Int64 , offset::Vector{Int64} , mat::Array{<:Number, T} , dist::Float64, label::String ) where {T, R}
53+
function AddAnisotropicBond!( param::Param{T, R}, uc::UnitCell{T2} , base::Int64 , target::Int64 , offset::Vector{Int64} , mat::Array{<:Number, T} , dist::Float64, label::String ) where {T, R, T2}
5454

5555
dims = repeat([uc.localDim], T)
5656
@assert size(mat) == Tuple(dims) "Interaction matrix has the wrong dimension!"
@@ -73,7 +73,7 @@ If given `mat` attribute is a number, it is converted into a 1x1 matrix when ent
7373
end
7474
end
7575

76-
function AddAnisotropicBond!( param::Param{T, R}, uc::UnitCell{T} , base::Int64 , target::Int64 , offset::Vector{Int64} , mat::Number , dist::Float64, label::String ) where {T, R}
76+
function AddAnisotropicBond!( param::Param{T, R}, uc::UnitCell{T2} , base::Int64 , target::Int64 , offset::Vector{Int64} , mat::Number , dist::Float64, label::String ) where {T, R, T2}
7777

7878
@assert uc.localDim == 1
7979
dims = repeat([uc.localDim], T)
@@ -93,7 +93,7 @@ The input `checkOffsetRange` must be adjusted depending on the input distance.
9393
The optional input `subs` is meant for isotropic bonds when only a subset of sublattices are involved.
9494
9595
"""
96-
function AddIsotropicBonds!( param::Param{T, R}, uc::UnitCell{T} , dist::Float64 , mat::Array{<:Number, T} , label::String; checkOffsetRange::Int64=2 , subs::Vector{Int64}=collect(1:length(uc.basis)) ) where {T, R}
96+
function AddIsotropicBonds!( param::Param{T, R}, uc::UnitCell{T2} , dist::Float64 , mat::Array{<:Number, T} , label::String; checkOffsetRange::Int64=2 , subs::Vector{Int64}=collect(1:length(uc.basis)) ) where {T, R, T2}
9797

9898
dims = repeat([uc.localDim], T)
9999
@assert size(mat) == Tuple(dims) "Interaction matrix has the wrong dimension!"
@@ -123,7 +123,7 @@ The optional input `subs` is meant for isotropic bonds when only a subset of sub
123123
end
124124
end
125125

126-
function AddIsotropicBonds!( param::Param{T, R}, uc::UnitCell{T} , dist::Float64 , mat::Number , label::String; checkOffsetRange::Int64=2 , subs::Vector{Int64}=collect(1:length(uc.basis))) where {T, R}
126+
function AddIsotropicBonds!( param::Param{T, R}, uc::UnitCell{T2} , dist::Float64 , mat::Number , label::String; checkOffsetRange::Int64=2 , subs::Vector{Int64}=collect(1:length(uc.basis))) where {T, R, T2}
127127

128128
@assert uc.localDim == 1
129129
dims = repeat([uc.localDim], T)
@@ -134,13 +134,13 @@ The optional input `subs` is meant for isotropic bonds when only a subset of sub
134134

135135
@doc """
136136
```julia
137-
AddSimilarBond!(param::Param{T, R}, uc::UnitCell{T}, bond::Bond{T} ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
138-
AddSimilarBond!(param::Param{T, R}, uc::UnitCell{T}, base::Int64, target::Int64, offset::Vector{Int64}, mat::Array{ComplexF64, T}, dist::Float64, label::String ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
137+
AddSimilarBond!(param::Param{T, R}, uc::UnitCell{T2}, bond::Bond{T} ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
138+
AddSimilarBond!(param::Param{T, R}, uc::UnitCell{T2}, base::Int64, target::Int64, offset::Vector{Int64}, mat::Array{ComplexF64, T}, dist::Float64, label::String ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
139139
```
140140
Function to add bonds which are not completely isotropic, but are still related by translation (not by the unit cell primitives but by the underlying lattice primitives).
141141
142142
"""
143-
function AddSimilarBonds!(param::Param{T, R}, uc::UnitCell{T}, bond::Bond{T} ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
143+
function AddSimilarBonds!(param::Param{T, R}, uc::UnitCell{T2}, bond::Bond{T} ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R, T2}
144144

145145
MotherParam = Param(1.0, 2)
146146
AddIsotropicBonds!(MotherParam, uc, bond.dist, bond.mat, bond.label ; checkOffsetRange = checkOffsetRange , subs = subs)
@@ -164,7 +164,7 @@ Function to add bonds which are not completely isotropic, but are still related
164164

165165
end
166166

167-
function AddSimilarBonds!(param::Param{T, R}, uc::UnitCell{T}, base::Int64, target::Int64, offset::Vector{Int64}, mat::Array{ComplexF64, T}, dist::Float64, label::String ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R}
167+
function AddSimilarBonds!(param::Param{T, R}, uc::UnitCell{T2}, base::Int64, target::Int64, offset::Vector{Int64}, mat::Array{ComplexF64, T}, dist::Float64, label::String ; subs::Vector{Int64}=collect(1:length(uc.basis)), checkOffsetRange::Int64=2) where {T, R, T2}
168168

169169
AddSimilarBonds!(param, uc, Bond(base, target, offset, mat, dist, label) ; subs = subs, checkOffsetRange = checkOffsetRange)
170170
end

0 commit comments

Comments
 (0)