@@ -50,7 +50,7 @@ Add a bond with the given attributes to `param`.
50
50
If given `mat` attribute is a number, it is converted into a 1x1 matrix when entered into the bond.
51
51
52
52
"""
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 }
54
54
55
55
dims = repeat ([uc. localDim], T)
56
56
@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
73
73
end
74
74
end
75
75
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 }
77
77
78
78
@assert uc. localDim == 1
79
79
dims = repeat ([uc. localDim], T)
@@ -93,7 +93,7 @@ The input `checkOffsetRange` must be adjusted depending on the input distance.
93
93
The optional input `subs` is meant for isotropic bonds when only a subset of sublattices are involved.
94
94
95
95
"""
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 }
97
97
98
98
dims = repeat ([uc. localDim], T)
99
99
@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
123
123
end
124
124
end
125
125
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 }
127
127
128
128
@assert uc. localDim == 1
129
129
dims = repeat ([uc. localDim], T)
@@ -134,13 +134,13 @@ The optional input `subs` is meant for isotropic bonds when only a subset of sub
134
134
135
135
@doc """
136
136
```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}
139
139
```
140
140
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).
141
141
142
142
"""
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 }
144
144
145
145
MotherParam = Param (1.0 , 2 )
146
146
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
164
164
165
165
end
166
166
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 }
168
168
169
169
AddSimilarBonds! (param, uc, Bond (base, target, offset, mat, dist, label) ; subs = subs, checkOffsetRange = checkOffsetRange)
170
170
end
0 commit comments