quspin.basis.boson_basis_general
- class quspin.basis.boson_basis_general(N, Nb=None, nb=None, sps=None, Ns_block_est=None, make_basis=True, block_order=None, **blocks)[source]
Bases:
hcb_basis_general
,basis_general
Constructs basis for boson operators for USER-DEFINED symmetries.
Any unitary symmetry transformation \(Q\) of periodicity \(m_Q\) (\(Q^{m_Q}=1\)) has eigenvalues \(\exp(-2\pi i q/m_Q)\), labelled by an ingeter \(q\in\{0,1,\dots,m_Q-1\}\). These integers \(q\) are used to define the symmetry blocks.
For instance, if \(Q=P\) is parity (reflection), then \(q=0,1\). If \(Q=T\) is translation by one lattice site, then \(q\) labels the mometum blocks in the same fashion as for the …_basis_1d classes.
- User-defined symmetries with the boson_basis_general class can be programmed as follows. Suppose we have a system of L sites, enumerated \(s=(s_0,s_1,\dots,s_{L-1})\). There are two types of operations one can perform on the sites:
exchange the labels of two sites: \(s_i \leftrightarrow s_j\) (e.g., translation, parity)
invert the population on a given site: \(s_i\leftrightarrow -(s_j+1)\) (e.g., particle-hole symmetry, hardcore bosons only)
These two operations already comprise a variety of symmetries, including translation, parity (reflection) and spin inversion. For a specific example, see below.
The supported operator strings for boson_basis_general are:
\[\begin{array}{cccc} \texttt{basis}/\texttt{opstr} & \texttt{"I"} & \texttt{"+"} & \texttt{"-"} & \texttt{"n"} & \texttt{"z"} \newline \texttt{boson_basis_general}& \hat{1} & \hat b^\dagger & \hat b & \hat b^\dagger b & \hat b^\dagger\hat b - \frac{\mathrm{sps}-1}{2} \newline \end{array}\]Notes
if Nb or nb are specified, by default sps is set to the number of bosons on the lattice.
- if sps is specified, while Nb or nb are not, all particle sectors are filled up to the maximumal
occupation.
- if Nb or nb and sps are specified, the finite boson basis is constructed with the local Hilbert space
restrited by sps.
QuSpin raises a warning to alert the reader when non-commuting symmetries are passed. In such cases, we recommend the user to manually check the combined usage of symmetries by, e.g., comparing the eigenvalues.
Examples
The code snippet below shows how to construct the two-dimensional Bose-Hubbard model.
\[H = -J \sum_{\langle ij\rangle} b^\dagger_i b_j + \mathrm{h.c.} - \mu\sum_j n_j + \frac{U}{2}\sum_j n_j(n_j-1)\]Moreover, it demonstrates how to pass user-defined symmetries to the boson_basis_general constructor. In particular, we do translation invariance and parity (reflection) (along each lattice direction).
1from quspin.basis import boson_basis_general # spin basis constructor 2import numpy as np # general math functions 3 4# 5###### define model parameters ###### 6Lx, Ly = 3, 3 # linear dimension of spin 1 2d lattice 7N_2d = Lx * Ly # number of sites for spin 1 8# 9J = 1.0 # hopping matrix element 10U = 2.0 # onsite interaction 11mu = 0.5 # chemical potential 12# 13###### setting up user-defined symmetry transformations for 2d lattice ###### 14s = np.arange(N_2d) # sites [0,1,2,....] 15x = s % Lx # x positions for sites 16y = s // Lx # y positions for sites 17T_x = (x + 1) % Lx + Lx * y # translation along x-direction 18T_y = x + Lx * ((y + 1) % Ly) # translation along y-direction 19P_x = x + Lx * (Ly - y - 1) # reflection about x-axis 20P_y = (Lx - x - 1) + Lx * y # reflection about y-axis 21# 22###### setting up bases ###### 23basis_2d = boson_basis_general( 24 N_2d, sps=3, kxblock=(T_x, 0), kyblock=(T_y, 0), pxblock=(P_x, 0), pyblock=(P_y, 0) 25) 26# 27###### setting up hamiltonian ###### 28# setting up site-coupling lists 29hopping = [[-J, i, T_x[i]] for i in range(N_2d)] + [ 30 [-J, i, T_y[i]] for i in range(N_2d) 31] 32potential = [[-mu - U / 2.0, i] for i in range(N_2d)] 33interaction = [[U / 2.0, i, i] for i in range(N_2d)] 34# 35static = [["+-", hopping], ["-+", hopping], ["n", potential], ["nn", interaction]] 36# build hamiltonian 37H = hamiltonian(static, [], basis=basis_2d, dtype=np.float64) 38# diagonalise H 39E = H.eigvalsh()
- __init__(N, Nb=None, nb=None, sps=None, Ns_block_est=None, make_basis=True, block_order=None, **blocks)[source]
Intializes the boson_basis_general object (basis for bosonic operators).
- Parameters:
- N: int
Number of sites.
- Nb: {int,list}, optional
Number of bosons in chain. Can be integer or list to specify one or more particle sectors.
- nb: float, optional
Density of bosons in chain (bosons per site).
- sps: int, optional
Number of states per site (including zero bosons), or on-site Hilbert space dimension.
- Ns_block_est: int, optional
Overwrites the internal estimate of the size of the reduced Hilbert space for the given symmetries. This can be used to help conserve memory if the exact size of the H-space is known ahead of time.
- make_basis: bool, optional
Boolean to control whether to make the basis. Allows the use to use some functionality of the basis constructor without constructing the entire basis.
- block_order: list of strings, optional
A list of strings containing the names of the symmetry blocks which specifies the order in which the symmetries will be applied to the state when calculating the basis. The first element in the list is applied to the state first followed by the second element, etc. If the list is not specificed the ordering is such that the symmetry with the largest cycle is the first, followed by the second largest, etc.
- **blocks: optional
keyword arguments which pass the symmetry generator arrays. For instance:
>>> basis(...,kxblock=(Q,q),...)
The keys of the symmetry sector, e.g. kxblock, can be chosen arbitrarily by the user. The values are tuples where the first entry contains the symmetry transformation \(Q\) acting on the lattice sites (see class example), and the second entry is an integer \(q\) to label the symmetry sector.
Methods
Op
(opstr, indx, J, dtype)Constructs operator from a site-coupling list and an operator string in a lattice basis.
Op_bra_ket
(opstr, indx, J, dtype, ket_states)Finds bra states which connect given ket states by operator from a site-coupling list and an operator string.
Op_shift_sector
(other_basis, op_list, v_in)Applies symmetry non-conserving operator to state in symmetry-reduced basis.
__init__
(N[, Nb, nb, sps, Ns_block_est, ...])Intializes the boson_basis_general object (basis for bosonic operators).
check_hermitian
(static, dynamic)Checks operator string lists for hermiticity of the combined operator.
check_pcon
(static, dynamic)Checks operator string lists for particle number (magnetisation) conservartion of the combined operator.
check_symm
(static, dynamic)Checks operator string lists for the required symmetries of the combined operator.
ent_entropy
(state[, sub_sys_A, density, ...])Calculates entanglement entropy of subsystem A and the corresponding reduced density matrix
expanded_form
([static, dynamic])Splits up operator strings containing "x" and "y" into operator combinations of "+" and "-".
get_amp
(states[, out, amps, mode])Computes the rescale factor of state amplitudes between the symmetry-reduced and full basis.
get_proj
(dtype[, pcon])Calculates transformation/projector from symmetry-reduced basis to full (symmetry-free) basis.
get_vec
(v0[, sparse, pcon])DEPRECATED (cf project_from).
index
(s)Finds the index of user-defined Fock state in any lattice basis.
inplace_Op
(v_in, op_list, dtype[, ...])Calculates the action of an operator on a state.
int_to_state
(state[, bracket_notation])Finds string representation of a state defined in integer representation.
make
([Ns_block_est, N_p])Creates the entire basis by calling the basis constructor.
make_basis_blocks
([N_p])Creates/modifies the bounds for representatives based on prefix tages.
normalization
(states[, out])Computes normalization of basis states.
partial_trace
(state[, sub_sys_A, ...])Calculates reduced density matrix, through a partial trace of a quantum state in a lattice basis.
project_from
(v0[, sparse, pcon])Transforms state from symmetry-reduced basis to full (symmetry-free) basis.
project_to
(v0[, sparse, pcon])Transforms state from full (symmetry-free) basis to symmetry-reduced basis.
representative
(states[, out, return_g, ...])Maps states to their representatives under the basis symmetries.
state_to_int
(state)Finds integer representation of a state defined in string format.
Attributes
number of sites the basis is constructed with.
number of states in the Hilbert space.
contains the quantum numbers (blocks) for the symmetry sectors.
information about basis object.
data type of basis state integers.
list of bits that represent sites that do not commute along with the phase required from commuting sites
set of available operator strings.
number of states per site (ie, the on-site Hilbert space dimension).
basis states stored in their integer representation.
- property N
number of sites the basis is constructed with.
- Type:
int
- property Ns
number of states in the Hilbert space.
- Type:
int
- Op(opstr, indx, J, dtype)
Constructs operator from a site-coupling list and an operator string in a lattice basis.
- Parameters:
- opstrstr
Operator string in the lattice basis format. For instance:
>>> opstr = "zz"
- indxlist(int)
List of integers to designate the sites the lattice basis operator is defined on. For instance:
>>> indx = [2,3]
- Jscalar
Coupling strength.
- dtype‘type’
Data type (e.g. numpy.float64) to construct the operator with.
- Returns:
- tuple
- (ME,row,col), where
numpy.ndarray(scalar): ME: matrix elements of type dtype.
- numpy.ndarray(int): row: row indices of matrix representing the operator in the lattice basis,
such that row[i] is the row index of ME[i].
- numpy.ndarray(int): col: column index of matrix representing the operator in the lattice basis,
such that col[i] is the column index of ME[i].
Examples
>>> J = 1.41 >>> indx = [2,3] >>> opstr = "zz" >>> dtype = np.float64 >>> ME, row, col = Op(opstr,indx,J,dtype)
- Op_bra_ket(opstr, indx, J, dtype, ket_states, reduce_output=True)
Finds bra states which connect given ket states by operator from a site-coupling list and an operator string.
Given a set of ket states \(|s\rangle\), the function returns the bra states \(\langle s'|\) which connect to them through an operator, together with the corresponding matrix elements.
- Parameters:
- opstrstr
Operator string in the lattice basis format. For instance:
>>> opstr = "zz"
- indxlist(int)
List of integers to designate the sites the lattice basis operator is defined on. For instance:
>>> indx = [2,3]
- Jscalar
Coupling strength.
- dtype‘type’
Data type (e.g. numpy.float64) to construct the matrix elements with.
- ket_statesnumpy.ndarray(int)
Ket states in integer representation. Must be of same data type as basis.
- reduce_output: bool, optional
If set to False, the returned arrays have the same size as ket_states; If set to True zeros are purged.
- Returns:
- tuple
- (ME,bra,ket), where
numpy.ndarray(scalar): ME: matrix elements of type dtype, which connects the ket and bra states.
- numpy.ndarray(int): bra: bra states, obtained by applying the matrix representing the operator in the lattice basis,
to the ket states, such that bra[i] corresponds to ME[i] and connects to ket[i].
numpy.ndarray(int): ket: ket states, such that ket[i] corresponds to ME[i] and connects to bra[i].
Notes
Similar to Op but instead of returning the matrix indices (row,col), it returns the states (bra,ket) in integer representation.
Does NOT require the full basis (see basis optional argument make_basis).
If a state from ket_states does not have a non-zero matrix element, it is removed from the returned list. See otional argument reduce_output.
Examples
>>> J = 1.41 >>> indx = [2,3] >>> opstr = "zz" >>> dtype = np.float64 >>> ME, bra, ket = Op_bra_ket(opstr,indx,J,dtype,ket_states)
- Op_shift_sector(other_basis, op_list, v_in, v_out=None, dtype=None)
Applies symmetry non-conserving operator to state in symmetry-reduced basis.
An operator, which does not conserve a symmetry, induces a change in the quantum number of a state defined in the corresponding symmetry sector. Hence, when the operator is applied on a quantum state, the state shifts the symmetry sector. Op_shift_sector() handles this automatically.
NOTE: One has to make sure that (i) the operator moves the state between the two sectors, and (ii) the two bases objects have the same symmetries. This function will not give the correct results otherwise.
Formally equivalent to:
>>> P1 = basis_sector_1.get_proj(np.complex128) # projector between full and initial basis >>> P2 = basis_sector_2.get_proj(np.complex128) # projector between full and target basis >>> v_in_full = P1.dot(v_in) # go from initial basis to to full basis >>> v_out_full = basis_full.inplace_Op(v_in_full,op_list,np.complex128) # apply Op >>> v_out = P2.T.conj().dot(v_out_full) # project to target basis
- Parameters:
- other_basisbasis object
basis_general object for the initial symmetry sector. Must be the same basis class type as the basis whose instance is Op_shift_sector() (i.e. the basis in basis.Op_shift_sector()).
- op_listlist
Operator string list which defines the operator to apply. Follows the format [[“z”,[i],Jz[i]] for i in range(L)], [“x”,[i],Jx[j]] for j in range(L)],…].
- v_inarray_like, (other_basis.Ns,…)
Initial state to apply the symmetry non-conserving operator on. Must have the same length as other_basis.Ns.
- v_outarray_like, (basis.Ns,…), optional
Optional array to write the result for the final/target state in.
- dtypenumpy dtype for matrix elements, optional
Data type (e.g. numpy.float64) to construct the operator with.
- Returns:
- (basis.Ns, ) numpy.ndarray
Array containing the state v_out in the current basis, i.e. the basis in basis.Op_shift_sector().
Notes
particularly useful when computing correlation functions.
supports parallelization to multiple states listed in the columns of v_in.
the user is strongly advised to use the code under “Formally equivalent” above to check the results of this function for small system sizes.
Examples
>>> v_out = basis.Op_shift_sector(initial_basis, op_list, v_in) >>> print(v_out.shape, basis.Ns, v_in.shape, initial_basis.Ns)
- property blocks
contains the quantum numbers (blocks) for the symmetry sectors.
- Type:
dict
- check_hermitian(static, dynamic)
Checks operator string lists for hermiticity of the combined operator.
- Parameters:
- static: list
Static operators formatted to be passed into the static argument of the hamiltonian class.
- dynamic: list
Dynamic operators formatted to be passed into the dynamic argument of the hamiltonian class.
- check_pcon(static, dynamic)
Checks operator string lists for particle number (magnetisation) conservartion of the combined operator.
- Parameters:
- static: list
Static operators formatted to be passed into the static argument of the hamiltonian class.
- dynamic: list
Dynamic operators formatted to be passed into the dynamic argument of the hamiltonian class.
- check_symm(static, dynamic)
Checks operator string lists for the required symmetries of the combined operator.
- Parameters:
- static: list
Static operators formatted to be passed into the static argument of the hamiltonian class.
- dynamic: list
Dynamic operators formatted to be passed into the dynamic argument of the hamiltonian class.
- property description
information about basis object.
- Type:
str
- property dtype
data type of basis state integers.
- Type:
numpy.dtype
- ent_entropy(state, sub_sys_A=None, density=True, subsys_ordering=True, return_rdm=None, enforce_pure=False, return_rdm_EVs=False, sparse=False, alpha=1.0, sparse_diag=True, maxiter=None, svd_solver=None, svd_kwargs=None)
Calculates entanglement entropy of subsystem A and the corresponding reduced density matrix
\[S_\mathrm{ent}(\alpha) = \frac{1}{N_A}\frac{1}{1-\alpha}\log \mathrm{tr}_{A} \left( \mathrm{tr}_{A^c} \vert\psi\rangle\langle\psi\vert \right)^\alpha\]where the normalization \(N_A\) can be switched on and off using the optional argument density. This expression reduces to the familiar von Neumann entropy in the limit \(\alpha=1\).
Note: The logarithm used is the natural logarithm (base e).
- Parameters:
- stateobj
State of the quantum system. Can be either one of:
numpy.ndarray [shape (Ns,)]: pure state (default).
numpy.ndarray [shape (Ns,Ns)]: density matrix (DM).
- sub_sys_Atuple/list, optional
Defines the sites contained in subsystem A [by python convention the first site of the chain is labelled j=0]. Default is tuple(range(N//2)) with N the number of lattice sites.
- densitybool, optional
Toggles whether to return entanglement entropy normalized by the number of sites in the subsystem.
- return_rdmstr, optional
Toggles returning the reduced DM. Can be tierh one of:
“A”: returns reduced DM of subsystem A.
“B”: returns reduced DM of subsystem B.
“both”: returns reduced DM of both A and B subsystems.
- enforce_purebool, optional
Whether or not to assume state is a collection of pure states or a mixed density matrix, if it is a square array. Default is False.
- subsys_orderingbool, optional
Whether or not to reorder the sites in sub_sys_A in ascending order. Default is True.
- sparsebool, optional
Whether or not to return a sparse DM. Default is False.
- return_rdm_EVsbool, optional
Whether or not to return the eigenvalues of rthe educed DM. If return_rdm is specified, the eigenvalues of the corresponding DM are returned. If return_rdm is NOT specified, the spectrum of rdm_A is returned by default. Default is False.
- alphafloat, optional
Renyi \(\alpha\) parameter for the entanglement entropy. Default is \(\alpha=1\).
- sparse_diagbool, optional
When sparse=True, this flag enforces the use of scipy.sparse.linalg.eigsh() to calculate the eigenvaues of the reduced DM.
- maxiterint, optional
Specifies the number of iterations for Lanczos diagonalisation. Look up documentation for scipy.sparse.linalg.eigsh().
- svd_solverobject, optional
Specifies the svd solver to be used, e.g. numpy.linalg.svd or scipy.linalg.svd, or a custom solver. Effective when enforce_pure=True or sparse=False.
- svd_kwargsdict, optional
Specifies additional arguments for svd_solver.
- Returns:
- dict
- Dictionary with following keys, depending on input parameters:
“Sent_A”: entanglement entropy of subsystem A (default).
“Sent_B”: entanglement entropy of subsystem B.
“p_A”: singular values of reduced DM of subsystem A (default).
“p_B”: singular values of reduced DM of subsystem B.
“rdm_A”: reduced DM of subsystem A.
“rdm_B”: reduced DM of subsystem B.
Notes
Algorithm is based on both partial tracing and sigular value decomposition (SVD), optimised for speed.
Examples
>>> ent_entropy(state,sub_sys_A=[0,3,4,7],return_rdm="A",enforce_pure=False,return_rdm_EVs=False, >>> sparse=False,alpha=1.0,sparse_diag=True,subsys_ordering=True)
- expanded_form(static=[], dynamic=[])
Splits up operator strings containing “x” and “y” into operator combinations of “+” and “-”. This function is useful for higher spin hamiltonians where “x” and “y” operators are not appropriate operators.
- Parameters:
- static: list
Static operators formatted to be passed into the static argument of the hamiltonian class.
- dynamic: list
Dynamic operators formatted to be passed into the dynamic argument of the hamiltonian class.
- Returns:
- tuple
- (static, dynamic), where
- list: static: operator strings with “x” and “y” expanded into “+” and “-”, formatted to
be passed into the static argument of the hamiltonian class.
- list: dynamic: operator strings with “x” and “y” expanded into “+” and “-”, formatted to
be passed into the dynamic argument of the hamiltonian class.
Notes
This function works with the tensor_basis and other basis which use the “|” symbol in the opstr.
Examples
>>> static = [["xx",[[1.0,0,1]]],["yy",[[1.0,0,1]]]] >>> dynamic = [["y",[[1.0,0]],lambda t: t,[]]] >>> expanded_form(static,dynamic)
- get_amp(states, out=None, amps=None, mode='representative')
Computes the rescale factor of state amplitudes between the symmetry-reduced and full basis.
Given a quantum state \(s\) and a state amplitude in the full basis \(\psi_s\), its representative (under the symemtries) \(r(s)\) with a corresponding amplitude \(\psi^\text{sym}_r\), the function computes the ratio \(C\), defined as
\[\psi_s = C\psi_r^\text{sym}\]- Parameters:
- statesarray_like(int)
Fock-basis (z-basis) states to find the amplitude rescale factor \(C\) of. States are stored in integer representations.
- outnumpy.ndarray(float), optional
variable to store the rescale factors \(C\) of the states in. Must be a real or complex-valued numpy.ndarray of the same shape as states.
- ampsnumpy.ndarray(float), optional
array of amplitudes to rescale by the amplitude factor \(C\) (see mode). Updated in-place. Must be a real or complex-valued numpy.ndarray of the same shape as states.
- modestring, optional
- if mode=’representative’ (default), then the function assumes that
states already contains representatives (i.e. states in the symmetry-reduced basis);
amps (if passed) are amplitudes in the symmetry-reduced basis (\(\psi_r^\text{symm}\)). The function will update amps in-place to \(\psi_s\).
- if mode=’full_basis’, then the function assumes that
states contains full-basis states (the funciton will compute the corresponding representatives);
- amps (if passed) are amplitudes in the full basis (\(\psi_s\)). The function will update amps in-place to \(\psi_r^\text{symm}\);
Note: the function will also update the variable states in place with the corresponding representatives.
- Returns:
- array_like(float)
amplitude rescale factor \(C\) (see expression above).
Notes
Particularly useful when a given operation cannot be carried away in the symmetry-reduced basis in a straightforward manner.
To transform an entire state from a symmetry-reduced basis to the full (symmetry-free) basis, use the basis.get_vec() function.
Returns zero, if the state passed to the function is not part of the symmetry-reduced basis.
If amps is passed, the user has to make sure that the input data in amps correspond to the states.
The function assumes that states comply with the particle conservation symmetry the basis was constructed with.
Examples
>>> C = get_amp(states,out=None,amps=None,mode='representative')
- get_proj(dtype, pcon=False)
Calculates transformation/projector from symmetry-reduced basis to full (symmetry-free) basis.
- Parameters:
- dtype‘type’
Data type (e.g. numpy.float64) to construct the projector with.
- pconbool, optional
Whether or not to return the projector to the particle number (magnetisation) conserving basis (useful in bosonic/single particle systems). Default is pcon=False.
- Returns:
- scipy.sparse.csc_matrix
Transformation/projector between the symmetry-reduced and the full basis.
Notes
particularly useful when a given operation canot be carried out in the symmetry-reduced basis in a straightforward manner.
see also Op_shift_sector().
Examples
>>> P = get_proj(np.float64,pcon=False) >>> print(P.shape)
- get_vec(v0, sparse=True, pcon=False)
DEPRECATED (cf project_from). Transforms state from symmetry-reduced basis to full (symmetry-free) basis.
Notes
This function is deprecated. Use project_from() instead; see also the inverse function project_to().
- index(s)
Finds the index of user-defined Fock state in any lattice basis.
- Parameters:
- s{str, int}
Defines the Fock state with number of particles (spins) per site in underlying lattice basis.
- Returns:
- int
Position of the Fock state in the lattice basis.
Notes
Particularly useful for defining initial Fock states through a unit vector in the direction specified by index().
Examples
>>> i0 = index("111000") # pick state from basis set >>> print(basis) >>> print(i0) >>> psi = np.zeros(basis.Ns,dtype=np.float64) >>> psi[i0] = 1.0 # define state corresponding to the string "111000"
- inplace_Op(v_in, op_list, dtype, transposed=False, conjugated=False, a=1.0, v_out=None)
Calculates the action of an operator on a state.
- Parameters:
- v_inarray_like
state (or states stored in columns) to act on with the operator.
- op_listlist
Operator string list which defines the operator to apply. Follows the format [[“z”,[i],Jz[i]] for i in range(L)], [“x”,[i],Jx[j]] for j in range(L)],…].
- dtype‘type’
Data type (e.g. numpy.float64) to construct the operator with.
- transposedbool, optional
if True this function will act with the trasposed operator.
- conjugatedbool, optional
if True this function will act with the conjugated operator.
- ascalar, optional
value to rescale resulting vector after performing the action of the operators. Same as rescaling all couplings by value a.
- v_outarray_like
output array, must be the same shape as v_in and must match the type of the output.
- Returns:
- numpy.ndarray
if v_out is not None, this function modifies v_out inplace and returns it.
Notes
This function works with the tensor_basis and other basis which use the “|” symbol in the opstr.
Examples
>>> J = 1.41 >>> indx = [2,3] >>> opstr = "zz" >>> dtype = np.float64 >>> op_list=[[opstr,indx,J]] >>> ME, row, col = inplace_Op(op_list,dtype)
- int_to_state(state, bracket_notation=True)
Finds string representation of a state defined in integer representation.
- Parameters:
- stateint
Defines the Fock state in integer representation in underlying lattice basis.
- bracket_notationbool, optional
Toggles whether to return the state in |str> notation.
- Returns:
- str
String corresponding to the Fock state in the lattice basis.
Notes
This function is the inverse of state_to_int.
Examples
>>> s = basis[0] # pick state from basis set >>> s_str = basis.int_to_state(s) >>> print(s_str)
- make(Ns_block_est=None, N_p=None)
Creates the entire basis by calling the basis constructor.
- Parameters:
- Ns_block_est: int, optional
Overwrites the internal estimate of the size of the reduced Hilbert space for the given symmetries. This can be used to help conserve memory if the exact size of the H-space is known ahead of time.
- N_p: int, optional
number of bits to use in the prefix label used to generate blocks for searching positions of representatives.
- Returns:
- int
Total number of states in the (symmetry-reduced) Hilbert space.
Notes
The memory stored in the basis grows exponentially as exactly \(2^{N_p+1}\). The default behavior is to use N_p such that the size of the stored information for the representative bounds is approximately as large as the basis. This is not as effective for basis which small particle numbers as the blocks have very uneven sizes. To not use the blocks just set N_p=0.
Examples
>>> N, Nup = 8, 4 >>> basis=spin_basis_general(N,Nup=Nup,make_basis=False) >>> print(basis) >>> basis.make() >>> print(basis)
- make_basis_blocks(N_p=None)
Creates/modifies the bounds for representatives based on prefix tages.
- Parameters:
- N_p: int, optional
number of bits to use in the prefix label used to generate blocks for searching positions of representatives.
Notes
The memory stored in the basis grows exponentially as exactly \(2^{N_p+1}\). The default behavior is to use N_p such that the size of the stored information for the representative bounds is approximately as large as the basis. This is not as effective for basis which small particle numbers as the blocks have very uneven sizes. To not use the blocks just set N_p=0.
Examples
>>> N, Nup = 8, 4 >>> basis=spin_basis_general(N,Nup=Nup,make_basis=False) >>> print(basis) >>> basis.make() >>> print(basis)
- property noncommuting_bits
list of bits that represent sites that do not commute along with the phase required from commuting sites
- Type:
list
- normalization(states, out=None)
Computes normalization of basis states.
- Parameters:
- statesarray_like(int)
Fock-basis (z-basis) states to find the normalizations of. States are stored in integer representations.
- outnumpy.ndarray(unsigned int), optional
variable to store the normalizations of the states in. Must be a numpy.ndarray of datatype unsigned int (e.g. numpy.uint16), and same shape as states.
- Returns:
- array_like(int)
normalizations of states for the given (symmetry-reduced) basis.
Notes
Returns zero, if the state is not part of the symmetry-reduced basis.
The normalizations can be used to compute matrix elements in the symmetry-reduced basis.
Examples
>>> basis=spin_basis_general(N,Nup=Nup,make_basis=False) >>> s = 17 >>> norm_s = basis.normalization(s) >>> print(s,norm_s)
- property operators
set of available operator strings.
- Type:
set
- partial_trace(state, sub_sys_A=None, subsys_ordering=True, return_rdm='A', enforce_pure=False, sparse=False)
Calculates reduced density matrix, through a partial trace of a quantum state in a lattice basis.
- Parameters:
- stateobj
State of the quantum system. Can be either one of:
numpy.ndarray [shape (Ns,)]: pure state (default).
numpy.ndarray [shape (Ns,Ns)]: density matrix (DM).
- sub_sys_Atuple/list, optional
Defines the sites contained in subsystem A [by python convention the first site of the chain is labelled j=0]. Default is tuple(range(N//2)) with N the number of lattice sites.
- return_rdmstr, optional
Toggles returning the reduced DM. Can be tierh one of:
“A”: returns reduced DM of subsystem A.
“B”: returns reduced DM of subsystem B.
“both”: returns reduced DM of both A and B subsystems.
- subsys_orderingbool, optional
Whether or not to reorder the sites in sub_sys_A in ascending order. Default is True.
- enforce_purebool, optional
Whether or not to assume state is a colelction of pure states or a mixed density matrix, if it is a square array. Default is False.
- sparsebool, optional
Whether or not to return a sparse DM. Default is False.
- Returns:
- numpy.ndarray
Density matrix associated with state. Depends on optional arguments.
Notes
- This function can also be applied to trace out operators/observables defined by the input state, in which case one has to additionally normalize the final output by the Hilbert space dimension of the traced-out space. However, if an operator is defined in a symmetry-reduced basis, there is a caveat. In such a case, one has to:
use the basis.get_proj() function to lift the operator to the full basis;
apply basis.partial_trace();
repeat this procedure for all symmetry sectors, and sum up the resulting reduced operators [this is becauce one has to add in the information about how the operator acts on the full Hilbert space].
Examples
>>> partial_trace(state,sub_sys_A=tuple(range(basis.N//2),return_rdm="A",enforce_pure=False,sparse=False,subsys_ordering=True)
- project_from(v0, sparse=True, pcon=False)
Transforms state from symmetry-reduced basis to full (symmetry-free) basis.
- Parameters:
- v0numpy.ndarray
Contains in its columns the states in the symmetry-reduced basis.
- sparsebool, optional
Whether or not the output should be in sparse format. Default is True.
- pconbool, optional
Whether or not to return the output in the particle number (magnetisation) conserving basis (useful in bosonic/single particle systems). Default is pcon=False.
- Returns:
- numpy.ndarray
Array containing the state v0 in the full basis.
Notes
particularly useful when a given operation cannot be carried out in the symmetry-reduced basis in a straightforward manner.
supports parallelisation to multiple states listed in the columns.
inverse function to project_to.
Examples
>>> v_full = project_from(v0) >>> print(v_full.shape, v0.shape)
- project_to(v0, sparse=True, pcon=False)
Transforms state from full (symmetry-free) basis to symmetry-reduced basis.
- Parameters:
- v0numpy.ndarray
Contains in its columns the states in the full (symmetry-free) basis.
- sparsebool, optional
Whether or not the output should be in sparse format. Default is True.
- pconbool, optional
Whether or not to return the output in the particle number (magnetisation) conserving basis (useful in bosonic/single particle systems). Default is pcon=False.
- Returns:
- numpy.ndarray
Array containing the state v0 in the symmetry-reduced basis.
Notes
particularly useful when a given operation cannot be carried out in the full basis.
supports parallelisation to multiple states listed in the columns.
inverse function to project_from.
Examples
>>> v_symm = project_to(v0) >>> print(v_symm.shape, v0.shape)
- representative(states, out=None, return_g=False, return_sign=False)
Maps states to their representatives under the basis symmetries.
- Parameters:
- statesarray_like(int)
Fock-basis (z-basis) states to find the representatives of. States are stored in integer representations.
- outnumpy.ndarray(int), optional
variable to store the representative states in. Must be a numpy.ndarray of same datatype as basis, and same shape as states.
- return_gbool, optional
if set to True, the function also returns the integer g corresponding to the number of times each basis symmetry needs to be applied to a given state to obtain its representative.
- return_signbool, optional
if set to True, the function returns the sign of the representative relative to the original state (nontrivial only for fermionic bases).
- Returns:
- tuple
( representatives, g_array, sign_array ) * array_like(int): representatives: Representatives under basis symmetries, corresponding to states. * array_like(int): g_array of size (number of states, number of symmetries). Requires return_g=True. Contains integers corresponding to the number of times each basis symmetry needs to be applied to a given state to obtain its representative. * array_like(int): sign_array of size (number of states,). Requires return_sign=True. Contains sign of the representative relative to the original state (nontrivial only for fermionic bases).
Examples
>>> basis=spin_basis_general(N,Nup=Nup,make_basis=False) >>> s = 17 >>> r = basis.representative(s) >>> print(s,r)
- property sps
number of states per site (ie, the on-site Hilbert space dimension).
- Type:
int
- state_to_int(state)
Finds integer representation of a state defined in string format.
- Parameters:
- statestr
Defines the Fock state with number of particles (spins) per site in underlying lattice basis.
- Returns:
- int
Integer corresponding to the Fock state in the lattice basis.
Notes
This function is the einverse of int_to_state.
Examples
>>> s_str = "111000" # pick state from basis set >>> s = basis.state_to_int(s_str) >>> print(s)
- property states
basis states stored in their integer representation.
- Type:
numpy.ndarray(int)