Source code for scqubits.core.circuit

# circuit.py
#
# This file is part of scqubits: a Python package for superconducting qubits,
# Quantum 5, 583 (2021). https://quantum-journal.org/papers/q-2021-11-17-583/
#
#    Copyright (c) 2019 and later, Jens Koch and Peter Groszkowski
#    All rights reserved.
#
#    This source code is licensed under the BSD-style license found in the
#    LICENSE file in the root directory of this source tree.
############################################################################

import functools
import itertools
import re

from types import MethodType
from typing import Any, Callable, Dict, List, Optional, Tuple, Union

import numpy as np
import qutip as qt
import scipy as sp
import scqubits as scq
import scqubits.core.constants as constants
import scqubits.core.discretization as discretization
import scqubits.core.oscillator as osc
import scqubits.core.qubit_base as base
import scqubits.core.storage as storage
import scqubits.io_utils.fileio_serializers as serializers
import scqubits.utils.plot_defaults as defaults
import scqubits.utils.plotting as plot
import sympy as sm

from matplotlib import pyplot as plt
from numpy import ndarray
from scipy import sparse, stats
from scipy.sparse import csc_matrix
from scqubits import HilbertSpace, settings
from scqubits.core import operators as op
from scqubits.core.symbolic_circuit import Branch, SymbolicCircuit
from scqubits.utils.misc import flatten_list, flatten_list_recursive, list_intersection
from scqubits.utils.spectrum_utils import (
    convert_matrix_to_qobj,
    identity_wrap,
    order_eigensystem,
)
from sympy import latex


[docs]def truncation_template( system_hierarchy: list, individual_trunc_dim: int = 6, combined_trunc_dim: int = 50 ) -> list: """ Function to generate a template for defining the truncated dimensions for subsystems when hierarchical diagonalization is used. Parameters ---------- system_hierarchy: list which sets the system hierarchy individual_trunc_dim: The default used to set truncation dimension for subsystems which do not use hierarchical diagonalization, by default 6 combined_trunc_dim: The default used to set the truncated dim for subsystems which use hierarchical diagonalization, by default 50 Returns ------- The template for setting the truncated dims for the Circuit instance when hierarchical diagonalization is used. """ trunc_dims: List[Union[int, list]] = [] for subsystem_hierarchy in system_hierarchy: if subsystem_hierarchy == flatten_list_recursive(subsystem_hierarchy): trunc_dims.append(individual_trunc_dim) else: trunc_dims.append( [combined_trunc_dim, truncation_template(subsystem_hierarchy)] ) return trunc_dims
[docs]def get_trailing_number(input_str: str) -> Union[int, None]: """ Returns the number trailing a string given as input. Example: $ get_trailing_number("a23") $ 23 Parameters ---------- input_str: String which ends with a number Returns ------- returns the trailing integer as int, else returns None """ match = re.search(r"\d+$", input_str) return int(match.group()) if match else None
[docs]def get_operator_number(input_str: str) -> int: """ Returns the number inside an operator name. Example: $ get_operator_number("annihilation9_operator") $ 9 Parameters ---------- input_str: operator name (one of the methods ending with `_operator`) Returns ------- returns the integer as int, else returns None """ match = re.search(r"(\d+)", input_str) number = int(match.group()) if not number: raise Exception("{} is not a valid operator name.".format(input_str)) return number
[docs]class Subsystem(base.QubitBaseClass, serializers.Serializable): """ Defines a subsystem for a circuit, which can further be used recursively to define subsystems within subsystem. Parameters ---------- parent: Subsystem the instance under which the new subsystem is defined. hamiltonian_symbolic: sm.Expr The symbolic expression which defines the Hamiltonian for the new subsystem system_hierarchy: Optional[List], optional Defines the hierarchy of the new subsystem, is set to None when hierarchical diagonalization is not required. by default None subsystem_trunc_dims: Optional[List], optional Defines the truncated dimensions for the subsystems inside the current subsystem, is set to None when hierarchical diagonalization is not required, by default `None` truncated_dim: Optional[int], optional sets the truncated dimension for the current subsystem, by default 10 """ def __init__( self, parent: "Subsystem", hamiltonian_symbolic: sm.Expr, system_hierarchy: Optional[List] = None, subsystem_trunc_dims: Optional[List] = None, truncated_dim: Optional[int] = 10, ): base.QuantumSystem.__init__(self, id_str=None) self.system_hierarchy = system_hierarchy self.truncated_dim = truncated_dim self.subsystem_trunc_dims = subsystem_trunc_dims self.is_child = True self.parent = parent self.hamiltonian_symbolic = hamiltonian_symbolic self._hamiltonian_sym_for_numerics = hamiltonian_symbolic self._default_grid_phi = self.parent._default_grid_phi self.ext_basis: str = self.parent.ext_basis self.external_fluxes = [ var for var in self.parent.external_fluxes if var in self.hamiltonian_symbolic.free_symbols ] self.offset_charges = [ var for var in self.parent.offset_charges if var in self.hamiltonian_symbolic.free_symbols ] self.symbolic_params = { var: self.parent.symbolic_params[var] for var in self.parent.symbolic_params if var in self.hamiltonian_symbolic.free_symbols } self.var_categories_list: List[int] = [] cutoffs: List[int] = [] for var_name in self.operator_names_in_hamiltonian_symbolic(): var_index = get_trailing_number(var_name) if var_index not in self.var_categories_list and var_index is not None: self.var_categories_list.append(var_index) cutoffs += [self.cutoffs_dict()[var_index]] self.var_categories_list.sort() self.var_categories: Dict[str, List[int]] = {} for var_type in self.parent.var_categories: self.var_categories[var_type] = [ var_index for var_index in self.parent.var_categories[var_type] if var_index in self.var_categories_list ] self.cutoff_names: List[str] = [] for var_type in self.var_categories.keys(): if var_type == "periodic": for var_index in self.var_categories["periodic"]: self.cutoff_names.append("cutoff_n_" + str(var_index)) if var_type == "extended": for var_index in self.var_categories["extended"]: self.cutoff_names.append("cutoff_ext_" + str(var_index)) self.discretized_phi_range: Dict[int, Tuple[float]] = { idx: self.parent.discretized_phi_range[idx] for idx in self.parent.discretized_phi_range if idx in self.var_categories_list } # storing the potential terms separately # also bringing the potential to the same form as in the class Circuit potential_symbolic = 0 * sm.symbols("x") for term in self.hamiltonian_symbolic.as_ordered_terms(): if self._is_potential_term(term): potential_symbolic += term for i in self.var_categories_list: potential_symbolic = ( potential_symbolic.replace( sm.symbols("cosθ" + str(i)), sm.cos(1.0 * sm.symbols("θ" + str(i))) ) .replace( sm.symbols("sinθ" + str(i)), sm.sin(1.0 * sm.symbols("θ" + str(i))) ) .subs(sm.symbols("I"), 1 / (2 * np.pi)) ) self.potential_symbolic = potential_symbolic self.hierarchical_diagonalization: bool = ( system_hierarchy != [] and system_hierarchy != flatten_list_recursive(system_hierarchy) ) if len(self.var_categories_list) == 1 and self.ext_basis == "harmonic": self.type_of_matrices = "dense" else: self.type_of_matrices = "sparse" self._configure()
[docs] def cutoffs_dict(self) -> Dict[int, int]: """ Returns a dictionary, where each variable is associated with its respective cutoff. Returns ------- Dict[int, int] Cutoffs dictionary; {var_index: cutoff} """ cutoffs_dict = {} for var_index in self.var_categories_list: if self.is_child: for cutoff_name in self.parent.cutoff_names: if str(var_index) in cutoff_name: cutoffs_dict[var_index] = getattr(self.parent, cutoff_name) else: for cutoff_name in self.cutoff_names: if str(var_index) in cutoff_name: cutoffs_dict[var_index] = getattr(self, cutoff_name) return cutoffs_dict
def _is_potential_term(self, term: sm.Expr) -> bool: """ Determines if a given sympy expression term is part of the potential Parameters ---------- term: sm.Expr a single terms in the form of Sympy expression. Returns ------- bool True if the term is part of the potential of this instance's Hamiltonian """ for symbol in term.free_symbols: if "θ" in symbol.name or "Φ" in symbol.name: return True return False def __repr__(self) -> str: return self._id_str def _regenerate_sym_hamiltonian(self) -> None: """ Regenerates the system Hamiltonian from the symbolic circuit when needed (for example when the circuit is large and circuit parameters are changed). """ if not self.is_child and len(self.symbolic_circuit.nodes) > 3: self.hamiltonian_symbolic = ( self.symbolic_circuit.generate_symbolic_hamiltonian( substitute_params=True ) ) self.generate_hamiltonian_sym_for_numerics() def _set_property_and_update_param_vars( self, param_name: str, value: float ) -> None: """ Setter method to set parameter variables which are instance properties. Parameters ---------- param_name: Name of the symbol which is updated value: The value to which the instance property is updated. """ # update the attribute for the current instance setattr(self, "_" + param_name, value) # update the attribute for the instance in symboliccircuit if not self.is_child and len(self.symbolic_circuit.nodes) > 3: self.symbolic_circuit.update_param_init_val(param_name, value) self._regenerate_sym_hamiltonian() # update Circuit instance # generate _hamiltonian_sym_for_numerics if not already generated, delayed for # large circuits if self.hierarchical_diagonalization: self.generate_subsystems() self.build_hilbertspace() else: self.operators_by_name = self.set_operators() def _set_property_and_update_ext_flux_or_charge( self, param_name: str, value: float ) -> None: """ Setter method to set external flux or offset charge variables which are instance properties. Parameters ---------- param_name: Name of the symbol which is updated value: The value to which the instance property is updated. """ # update the attribute for the current instance setattr(self, "_" + param_name, value) # update all subsystem instances if self.hierarchical_diagonalization: for subsys in self.subsystems.values(): if hasattr(subsys, param_name): setattr(subsys, param_name, value) def _set_property_and_update_cutoffs(self, param_name: str, value: int) -> None: """ Setter method to set cutoffs which are instance properties. Parameters ---------- param_name: Name of the symbol which is updated value: The value to which the instance property is updated. """ setattr(self, "_" + param_name, value) # set operators and rebuild the HilbertSpace object if self.hierarchical_diagonalization: for subsys in self.subsystems.values(): if hasattr(subsys, param_name): setattr(subsys, param_name, value) self.operators_by_name = self.set_operators() self.build_hilbertspace() else: self.operators_by_name = self.set_operators() def _make_property( self, attrib_name: str, init_val: Union[int, float], property_update_type: str ) -> None: """ Creates a class instance property with the name attrib_name which is initialized to `init_val`. The setter is set depending on the string in the `property_update_type`. Parameters ---------- attrib_name: Name of the property that needs to be created. init_val: The value to which the property is initialized. property_update_type: The string which sets the kind of setter used for this instance property. """ setattr(self, "_" + attrib_name, init_val) def getter(self, name=attrib_name): return getattr(self, "_" + name) if property_update_type == "update_param_vars": def setter(self, value, name=attrib_name): return self._set_property_and_update_param_vars(name, value) elif property_update_type == "update_external_flux_or_charge": def setter(self, value, name=attrib_name): return self._set_property_and_update_ext_flux_or_charge(name, value) elif property_update_type == "update_cutoffs": def setter(self, value, name=attrib_name): return self._set_property_and_update_cutoffs(name, value) setattr(self.__class__, attrib_name, property(fget=getter, fset=setter)) def _configure(self) -> None: """ Function which is used to initiate the subsystem instance. """ for x, param in enumerate(self.symbolic_params): # if harmonic oscillator basis is used, param vars become class properties. self._make_property( param.name, getattr(self.parent, param.name), "update_param_vars" ) # getting attributes from parent for flux in self.external_fluxes: self._make_property( flux.name, getattr(self.parent, flux.name), "update_external_flux_or_charge", ) for offset_charge in self.offset_charges: self._make_property( offset_charge.name, getattr(self.parent, offset_charge.name), "update_external_flux_or_charge", ) for cutoff_str in self.cutoff_names: self._make_property( cutoff_str, getattr(self.parent, cutoff_str), "update_cutoffs" ) self._init_params: List[str] = ( [param.name for param in self.symbolic_params] + [flux.name for flux in self.external_fluxes] + [offset_charge.name for offset_charge in self.offset_charges] + self.cutoff_names ) self._set_vars() if self.hierarchical_diagonalization: self.generate_subsystems() self.operators_by_name = self.set_operators() self.build_hilbertspace() else: self.operators_by_name = self.set_operators() # ***************************************************************** # **** Functions to construct the operators for the Hamiltonian **** # ***************************************************************** @staticmethod def _cos_dia(x): """ This is a special function to calculate the expm of sparse diagonal matrices """ return sparse.diags(np.cos(x.diagonal())).tocsc() @staticmethod def _sin_dia(x): """ This is a special function to calculate the expm of sparse diagonal matrices """ return sparse.diags(np.sin(x.diagonal())).tocsc()
[docs] def generate_subsystems(self): """ Generates the subsystems (child instances of Circuit) depending on the attribute `self.system_hierarchy` """ hamiltonian = self._hamiltonian_sym_for_numerics systems_sym = [] interaction_sym = [] for subsys_index_list in self.system_hierarchy: subsys_index_list = flatten_list_recursive(subsys_index_list) expr_dict = hamiltonian.as_coefficients_dict() terms_list = list(expr_dict.keys()) H_sys = 0 * sm.symbols("x") H_int = 0 * sm.symbols("x") for term in terms_list: term_var_categories = [] for var in term.free_symbols: # remove any branch parameters or flux and offset charge symbols if ( "Φ" not in str(var) and "ng" not in str(var) and len( list_intersection(list(self.symbolic_params.keys()), [var]) ) == 0 ): index = get_trailing_number(str(var)) if index not in term_var_categories and index is not None: term_var_categories.append(index) if len(set(term_var_categories) - set(subsys_index_list)) == 0: H_sys += expr_dict[term] * term if ( len(set(term_var_categories) - set(subsys_index_list)) > 0 and len(set(term_var_categories) & set(subsys_index_list)) > 0 ): H_int += expr_dict[term] * term systems_sym.append(H_sys) interaction_sym.append(H_int) hamiltonian -= H_sys + H_int # removing the terms added to a subsystem # storing data in class attributes self.subsystem_hamiltonians: Dict[int, sm.Expr] = dict( zip( range(len(self.system_hierarchy)), [systems_sym[index] for index in range(len(self.system_hierarchy))], ) ) self.subsystem_interactions: Dict[int, sm.Expr] = dict( zip( range(len(self.system_hierarchy)), [interaction_sym[index] for index in range(len(self.system_hierarchy))], ) ) self.subsystems: Dict[int, "Subsystem"] = dict( zip( range(len(self.system_hierarchy)), [ Subsystem( self, systems_sym[index], system_hierarchy=self.system_hierarchy[index], truncated_dim=self.subsystem_trunc_dims[index][0] if type(self.subsystem_trunc_dims[index]) == list else self.subsystem_trunc_dims[index], subsystem_trunc_dims=self.subsystem_trunc_dims[index][1] if type(self.subsystem_trunc_dims[index]) == list else None, ) for index in range(len(self.system_hierarchy)) ], ) )
[docs] def get_subsystem_index(self, var_index: int) -> int: """ Returns the subsystem index for the subsystem to which the given var_index belongs. Parameters ---------- var_index: variable index in integer starting from 1. Returns ------- subsystem index which can be used to identify the subsystem index in the list self.subsystems. """ for index, system_hierarchy in enumerate(self.system_hierarchy): if var_index in flatten_list_recursive(system_hierarchy): return index raise Exception("The var_index={} could not be identified with any subsystem.")
[docs] def build_hilbertspace(self): """ Builds the HilbertSpace object for the `Circuit` instance if `hierarchical_diagonalization` is set to true. """ hilbert_space = HilbertSpace( [self.subsystems[i] for i in range(len(self.system_hierarchy))] ) # Adding interactions using the symbolic interaction term for sys_index in range(len(self.system_hierarchy)): interaction = self.subsystem_interactions[sys_index].expand() if interaction == 0: # if the interaction term is zero continue # modifying interaction terms: # substituting all the external flux, offset charge and branch parameters. interaction = interaction.subs( [ (param, getattr(self, str(param))) for param in list(self.symbolic_params.keys()) + self.external_fluxes + self.offset_charges ] ) # - substituting Identity with 1 interaction = interaction.subs("I", 1) # - substituting cos and sin operators with their own symbols for i in self.var_categories["extended"]: interaction = interaction.replace( sm.cos(1.0 * sm.symbols("θ" + str(i))), sm.symbols("cosθ" + str(i)) ).replace( sm.sin(1.0 * sm.symbols("θ" + str(i))), sm.symbols("sinθ" + str(i)) ) expr_dict = interaction.as_coefficients_dict() terms_str = list(expr_dict.keys()) for i, term in enumerate(terms_str): coefficient_sympy = expr_dict[term] # adding external flux, offset charge and branch parameters to # coefficient for var in term.free_symbols: if ( "Φ" in str(var) or "ng" in str(var) or var in self.symbolic_params ): coefficient_sympy = coefficient_sympy * getattr(self, str(var)) operator_symbols = [ var for var in term.free_symbols if (("Φ" not in str(var)) and ("ng" not in str(var))) and (var not in self.symbolic_params) ] sys_op_dict = {index: [] for index in range(len(self.system_hierarchy))} for var in operator_symbols: var_index = get_trailing_number(str(var)) subsystem_index = self.get_subsystem_index(var_index) if "I" not in str(var): operator = self.subsystems[ subsystem_index ].get_operator_by_name(var.name) if isinstance(operator, qt.Qobj): operator = operator.full() sys_op_dict[subsystem_index].append(operator) else: sys_op_dict[0].append(self.subsystems[0]._identity()) operator_dict = {} for index in range(len(self.system_hierarchy)): for op_index, operator in enumerate(sys_op_dict[index]): operator_dict["op" + str(len(operator_dict) + 1)] = ( operator, self.subsystems[index], ) hilbert_space.add_interaction( g=float(coefficient_sympy), **operator_dict, check_validity=False ) self.hilbert_space = hilbert_space
def _generate_symbols_list( self, var_str: str, iterable_list: List[int] or ndarray ) -> List[sm.Symbol]: """ Returns the list of symbols generated using the var_str + iterable as the name of the symbol. Parameters ---------- var_str: name of the variable which needs to be generated iterable_list: The list of indices which generates the symbols """ return [sm.symbols(var_str + str(iterable)) for iterable in iterable_list] def _set_vars(self): """ Sets the attribute vars which is a dictionary containing all the Sympy Symbol objects for all the operators present in the circuit """ # Defining the list of variables for periodic operators periodic_symbols_sin = self._generate_symbols_list( "sinθ", self.var_categories["periodic"] ) periodic_symbols_cos = self._generate_symbols_list( "cosθ", self.var_categories["periodic"] ) periodic_symbols_n = self._generate_symbols_list( "n", self.var_categories["periodic"] ) # Defining the list of discretized_ext variables y_symbols = self._generate_symbols_list("θ", self.var_categories["extended"]) p_symbols = self._generate_symbols_list("Q", self.var_categories["extended"]) if self.ext_basis == "discretized": ps_symbols = [ sm.symbols("Qs" + str(i)) for i in self.var_categories["extended"] ] sin_symbols = [ sm.symbols("sinθ" + str(i)) for i in self.var_categories["extended"] ] cos_symbols = [ sm.symbols("cosθ" + str(i)) for i in self.var_categories["extended"] ] elif self.ext_basis == "harmonic": a_symbols = [ sm.symbols("a" + str(i)) for i in self.var_categories["extended"] ] ad_symbols = [ sm.symbols("ad" + str(i)) for i in self.var_categories["extended"] ] Nh_symbols = [ sm.symbols("Nh" + str(i)) for i in self.var_categories["extended"] ] pos_symbols = [ sm.symbols("θ" + str(i)) for i in self.var_categories["extended"] ] sin_symbols = [ sm.symbols("sinθ" + str(i)) for i in self.var_categories["extended"] ] cos_symbols = [ sm.symbols("cosθ" + str(i)) for i in self.var_categories["extended"] ] momentum_symbols = [ sm.symbols("Q" + str(i)) for i in self.var_categories["extended"] ] # setting the attribute self.vars self.vars: Dict[str, Any] = { "periodic": { "sin": periodic_symbols_sin, "cos": periodic_symbols_cos, "number": periodic_symbols_n, }, "identity": [sm.symbols("I")], } if self.ext_basis == "discretized": self.vars["extended"] = { "position": y_symbols, "momentum": p_symbols, "momentum_squared": ps_symbols, "sin": sin_symbols, "cos": cos_symbols, } elif self.ext_basis == "harmonic": self.vars["extended"] = { "annihilation": a_symbols, "creation": ad_symbols, "number": Nh_symbols, "position": pos_symbols, "momentum": momentum_symbols, "sin": sin_symbols, "cos": cos_symbols, } def _shift_harmonic_oscillator_potential(self, hamiltonian: sm.Expr) -> sm.Expr: # shifting the harmonic oscillator potential to the point of external fluxes flux_shift_vars = {} for var_index in self.var_categories["extended"]: if hamiltonian.coeff("θ" + str(var_index)) != 0: flux_shift_vars[var_index] = sm.symbols("Δθ" + str(var_index)) hamiltonian = hamiltonian.replace( sm.symbols("θ" + str(var_index)), sm.symbols("θ" + str(var_index)) + flux_shift_vars[var_index], ) # substituting the flux offset variable offsets to collect the # coefficients later hamiltonian = hamiltonian.expand() flux_shift_equations = [ hamiltonian.coeff("θ" + str(var_index)).subs( [("θ" + str(i), 0) for i in self.var_categories["extended"]] ) for var_index in flux_shift_vars.keys() ] # finding the coefficients of the linear terms flux_shifts = sm.linsolve( flux_shift_equations, tuple(flux_shift_vars.values()) ) # solving for the flux offsets if len(flux_shifts) != 0: flux_shifts = list(list(flux_shifts)[0]) else: flux_shifts = [] flux_shifts_dict = dict(zip(list(flux_shift_vars.keys()), list(flux_shifts))) hamiltonian = hamiltonian.subs( [ (sm.symbols("Δθ" + str(var_index)), flux_shifts_dict[var_index]) for var_index in flux_shifts_dict.keys() ] ) # substituting the flux offsets to remove the linear terms hamiltonian = hamiltonian.subs( [(var, 0) for var in flux_shift_vars.values()] ) # removing the constants from the Hamiltonian flux_shifts_dict.update( { var_index: 0 for var_index in self.var_categories["extended"] if var_index not in flux_shifts_dict } ) # remove constants from Hamiltonian hamiltonian -= hamiltonian.as_coefficients_dict()[1] return hamiltonian.expand() # * ##########################################################################
[docs] def generate_hamiltonian_sym_for_numerics(self): """ Generates a symbolic expression which is ready for numerical evaluation starting from the expression stored in the attribute hamiltonian_symbolic. Stores the result in the attribute _hamiltonian_sym_for_numerics. """ hamiltonian = ( self.hamiltonian_symbolic.expand() ) # applying expand is critical; otherwise the replacement of p^2 with ps2 # would not succeed # shifting the potential to the point of external fluxes hamiltonian = self._shift_harmonic_oscillator_potential(hamiltonian) # marking the sin and cos terms of the periodic variables with different symbols if len(self.var_categories["periodic"]) > 0: hamiltonian = sm.expand_trig(hamiltonian).expand() for i in self.var_categories["periodic"]: hamiltonian = hamiltonian.replace( sm.cos(1.0 * sm.symbols("θ" + str(i))), sm.symbols("cosθ" + str(i)) ).replace( sm.sin(1.0 * sm.symbols("θ" + str(i))), sm.symbols("sinθ" + str(i)) ) if self.ext_basis == "discretized": # marking the squared momentum operators with a separate symbol for i in self.var_categories["extended"]: hamiltonian = hamiltonian.replace( sm.symbols("Q" + str(i)) ** 2, sm.symbols("Qs" + str(i)) ) elif self.ext_basis == "harmonic": hamiltonian = sm.expand_trig(hamiltonian).expand() for i in self.var_categories["extended"]: hamiltonian = hamiltonian.replace( sm.cos(1.0 * sm.symbols("θ" + str(i))), sm.symbols("cosθ" + str(i)), ).replace( sm.sin(1.0 * sm.symbols("θ" + str(i))), sm.symbols("sinθ" + str(i)), ) # removing the constants from the Hamiltonian coeff_dict = hamiltonian.as_coefficients_dict() constants = [ i for i in coeff_dict if "Q" not in str(i) and "θ" not in str(i) and "n" not in str(i) and "a" not in str(i) and "Nh" not in str(i) ] for cnst in constants: hamiltonian -= cnst * coeff_dict[cnst] # associate an identity matrix with the external flux vars for ext_flux in self.external_fluxes: hamiltonian = hamiltonian.subs( ext_flux, ext_flux * sm.symbols("I") * 2 * np.pi ) # associate an identity matrix with offset charge vars for offset_charge in self.offset_charges: hamiltonian = hamiltonian.subs( offset_charge, offset_charge * sm.symbols("I") ) setattr(self, "_hamiltonian_sym_for_numerics", hamiltonian)
# ################################################################# # ############## Functions to construct the operators ############# # #################################################################
[docs] def get_cutoffs(self) -> Dict[str, list]: """ Method to get the cutoffs for each of the circuit's degree of freedom. """ cutoffs_dict: Dict[str, List[Any]] = { "cutoff_n": [], "cutoff_ext": [], } for cutoff_type in cutoffs_dict.keys(): attr_list = [x for x in self.cutoff_names if cutoff_type in x] if len(attr_list) > 0: attr_list.sort() cutoffs_dict[cutoff_type] = [getattr(self, attr) for attr in attr_list] return cutoffs_dict
def _collect_cutoff_values(self): if not self.hierarchical_diagonalization: cutoff_dict = self.get_cutoffs() for cutoff_name in cutoff_dict.keys(): for cutoff in cutoff_dict[cutoff_name]: if "cutoff_n" in cutoff_name: yield 2 * cutoff + 1 elif "cutoff_ext" in cutoff_name: yield cutoff else: for idx, _ in enumerate(self.system_hierarchy): if isinstance(self.subsystem_trunc_dims[idx], list): yield self.subsystem_trunc_dims[idx][0] else: yield self.subsystem_trunc_dims[idx]
[docs] def hilbertdim(self): """ Returns the Hilbert dimension of the Circuit instance """ cutoff_values = np.fromiter(self._collect_cutoff_values(), dtype=int) return np.prod(cutoff_values)
# helper functions def _kron_operator( self, operator: Union[csc_matrix, ndarray], index: int ) -> Union[csc_matrix, ndarray]: """ Identity wraps the operator with identities generated for all the other variable indices present in the current Subsystem. Parameters ---------- operator: The operator belonging to the variable index set in the argument index. index: Variable index to which the operator belongs Returns ------- Returns the operator which is identity wrapped for the current subsystem. """ var_index_list = ( self.var_categories["periodic"] + self.var_categories["extended"] ) cutoff_names = np.fromiter(self._collect_cutoff_values(), dtype=int) # [ if self.type_of_matrices == "dense": matrix_format = "array" elif self.type_of_matrices == "sparse": matrix_format = "csc" if len(var_index_list) > 1: if index > var_index_list[0]: identity_left = sparse.identity( np.prod(cutoff_names[: var_index_list.index(index)]), format=matrix_format, ) if index < var_index_list[-1]: identity_right = sparse.identity( np.prod(cutoff_names[var_index_list.index(index) + 1 :]), format=matrix_format, ) if index == var_index_list[0]: return sparse.kron(operator, identity_right, format=matrix_format) elif index == var_index_list[-1]: return sparse.kron(identity_left, operator, format=matrix_format) else: return sparse.kron( sparse.kron(identity_left, operator, format=matrix_format), identity_right, format=matrix_format, ) else: return self._sparsity_adaptive(operator) def _sparsity_adaptive( self, matrix: Union[csc_matrix, ndarray] ) -> Union[csc_matrix, ndarray]: """ Changes the type of matrix depending on the attribute type_of_matrices Parameters ---------- matrix: The operator or matrix whose type needs to be changed Returns ------- Returns the matrix in sparse or dense version depending on the type of matrices used. """ # all of this can be simplified. if sparse.issparse(matrix): if self.type_of_matrices == "sparse": return matrix return matrix.toarray() if self.type_of_matrices == "sparse": return sparse.csc_matrix(matrix) return matrix # Identity Operator def _identity(self): """ Returns the Identity operator for the entire Hilber space of the circuit. """ if ( hasattr(self, "hierarchical_diagonalization") and self.hierarchical_diagonalization ): return None dim = self.hilbertdim() if self.type_of_matrices == "sparse": op = sparse.identity(dim) return op.tocsc() elif self.type_of_matrices == "dense": return np.identity(dim) # ext basis def _identity_phi(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns identity operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the identity operator Returns ------- identity operator in the discretized phi basis """ pt_count = grid.pt_count return sparse.identity(pt_count, format="csc") def _phi_operator(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns phi operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the phi operator Returns ------- phi operator in the discretized phi basis """ pt_count = grid.pt_count phi_matrix = sparse.dia_matrix((pt_count, pt_count)) diag_elements = grid.make_linspace() phi_matrix.setdiag(diag_elements) return phi_matrix def _i_d_dphi_operator(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns i*d/dphi operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the identity operator Returns ------- i*d/dphi operator in the discretized phi basis """ return grid.first_derivative_matrix(prefactor=-1j) def _i_d2_dphi2_operator(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns i*d2/dphi2 operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the identity operator Returns ------- i*d2/dphi2 operator in the discretized phi basis """ return grid.second_derivative_matrix(prefactor=-1.0) def _cos_phi(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns cos operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the identity operator Returns ------- cos operator in the discretized phi basis """ pt_count = grid.pt_count cos_op = sparse.dia_matrix((pt_count, pt_count)) diag_elements = np.cos(grid.make_linspace()) cos_op.setdiag(diag_elements) return cos_op.tocsc() def _sin_phi(self, grid: discretization.Grid1d) -> csc_matrix: """ Returns sin operator in the discretized_phi basis. Parameters ---------- grid: Grid used to generate the identity operator Returns ------- sin operator in the discretized phi basis """ pt_count = grid.pt_count sin_op = sparse.dia_matrix((pt_count, pt_count)) diag_elements = np.cos(grid.make_linspace()) sin_op.setdiag(diag_elements) return sin_op.tocsc() # charge basis def _identity_theta(self, ncut: int) -> csc_matrix: """ Returns Operator identity in the charge basis. """ dim_theta = 2 * ncut + 1 return sparse.identity(dim_theta, format="csc") def _n_theta_operator(self, ncut: int) -> csc_matrix: """ Returns charge operator `n` in the charge basis. """ dim_theta = 2 * ncut + 1 diag_elements = np.arange(-ncut, ncut + 1) n_theta_matrix = sparse.dia_matrix( (diag_elements, [0]), shape=(dim_theta, dim_theta) ).tocsc() return n_theta_matrix def _exp_i_theta_operator(self, ncut) -> csc_matrix: r""" Operator :math:`\cos(\theta)`, acting only on the `\theta` Hilbert subspace. """ dim_theta = 2 * ncut + 1 matrix = ( sparse.dia_matrix(([-1.0] * dim_theta, [-1]), shape=(dim_theta, dim_theta)) ).tocsc() return matrix def _exp_i_theta_operator_conjugate(self, ncut) -> csc_matrix: r""" Operator :math:`\cos(\theta)`, acting only on the `\theta` Hilbert subspace. """ dim_theta = 2 * ncut + 1 matrix = ( sparse.dia_matrix(([-1.0] * dim_theta, [1]), shape=(dim_theta, dim_theta)) ).tocsc() return matrix def _cos_theta(self, ncut: int) -> csc_matrix: """Returns operator :math:`\\cos \\varphi` in the charge basis""" cos_op = 0.5 * ( self._exp_i_theta_operator(ncut) + self._exp_i_theta_operator_conjugate(ncut) ) return cos_op def _sin_theta(self, ncut: int) -> csc_matrix: """Returns operator :math:`\\sin \\varphi` in the charge basis""" sin_op = ( -1j * 0.5 * ( self._exp_i_theta_operator(ncut) - self._exp_i_theta_operator_conjugate(ncut) ) ) return sin_op
[docs] def circuit_operator_functions(self) -> Dict[str, Callable]: """ Returns the set of operator functions to be turned into methods of the `Circuit` class. """ periodic_vars = self.vars["periodic"] extended_vars = self.vars["extended"] cutoffs_dict = self.cutoffs_dict() grids = {} for i in self.var_categories["extended"]: grids[i] = discretization.Grid1d( self.discretized_phi_range[i][0], self.discretized_phi_range[i][1], cutoffs_dict[i], ) # constructing the operators for extended variables extended_operators = {} if self.ext_basis == "discretized": nonwrapped_ops = { "position": self._phi_operator, "cos": self._cos_phi, "sin": self._sin_phi, "momentum": self._i_d_dphi_operator, "momentum_squared": self._i_d2_dphi2_operator, } for short_op_name in nonwrapped_ops.keys(): for sym_variable in extended_vars[short_op_name]: index = int(get_trailing_number(sym_variable.name)) op_func = nonwrapped_ops[short_op_name] op_name = sym_variable.name + "_operator" extended_operators[op_name] = grid_operator_func_factory( op_func, index, grids ) else: # expect that self.ext_basis is "harmonic": hamiltonian = self._hamiltonian_sym_for_numerics # substitute all the parameter values hamiltonian = hamiltonian.subs( [ (param, getattr(self, str(param))) for param in list(self.symbolic_params.keys()) + self.external_fluxes + self.offset_charges ] ) osc_lengths = {} osc_freqs = {} nonwrapped_ops = { "creation": op.creation_sparse, "annihilation": op.annihilation_sparse, "number": op.number_sparse, "position": None, # need to set for each variable separately "sin": None, "cos": None, "momentum": None, } for list_idx, var_index in enumerate(self.var_categories["extended"]): ECi = ( float(hamiltonian.coeff("Q" + str(var_index) + "**2").cancel()) / 4 ) ELi = ( float(hamiltonian.coeff("θ" + str(var_index) + "**2").cancel()) * 2 ) osc_freqs[var_index] = (8 * ELi * ECi) ** 0.5 osc_lengths[var_index] = (8.0 * ECi / ELi) ** 0.25 nonwrapped_ops["position"] = functools.partial( op.a_plus_adag_sparse, prefactor=osc_lengths[var_index] / (2**0.5) ) nonwrapped_ops["sin"] = compose( sp.linalg.sinm, functools.partial( op.a_plus_adag, prefactor=osc_lengths[var_index] / (2**0.5) ), ) nonwrapped_ops["cos"] = compose( sp.linalg.cosm, functools.partial( op.a_plus_adag, prefactor=osc_lengths[var_index] / (2**0.5) ), ) nonwrapped_ops["momentum"] = functools.partial( op.ia_minus_iadag_sparse, prefactor=1 / (osc_lengths[var_index] * 2**0.5), ) for short_op_name in nonwrapped_ops.keys(): op_func = nonwrapped_ops[short_op_name] sym_variable = extended_vars[short_op_name][list_idx] op_name = sym_variable.name + "_operator" extended_operators[op_name] = operator_func_factory( op_func, cutoffs_dict, var_index ) self.osc_lengths = osc_lengths self.osc_freqs = osc_freqs # constructing the operators for periodic variables periodic_operators = {} nonwrapped_ops = { "sin": self._sin_theta, "cos": self._cos_theta, "number": self._n_theta_operator, } for short_op_name, op_func in nonwrapped_ops.items(): for sym_variable in periodic_vars[short_op_name]: index = get_operator_number(sym_variable.name) op_name = sym_variable.name + "_operator" periodic_operators[op_name] = operator_func_factory( op_func, cutoffs_dict, index ) return { **periodic_operators, **extended_operators, "I_operator": Circuit._identity, }
# ################################################################# # ############### Functions for parameter queries ################# # #################################################################
[docs] def get_params(self) -> List[float]: """ Method to get the circuit parameters set for all the branches. """ params = [] for param in self.symbolic_params: params.append(getattr(self, param.name)) return params
[docs] def external_flux_values(self) -> List[float]: """ Returns all the time independent external flux set using the circuit attributes for each of the closure branches. """ return [getattr(self, flux.name) for flux in self.external_fluxes]
[docs] def offset_charge_values(self) -> List[float]: """ Returns all the offset charges set using the circuit attributes for each of the periodic degree of freedom. """ return [ getattr(self, offset_charge.name) for offset_charge in self.offset_charges ]
[docs] @staticmethod def default_params() -> Dict[str, Any]: # return {"EJ": 15.0, "EC": 0.3, "ng": 0.0, "ncut": 30, "truncated_dim": 10} return {}
[docs] def set_operators(self) -> Dict[str, Callable]: """ Creates the operator methods `<name>_operator` for the circuit. """ if self.hierarchical_diagonalization: for subsys in self.subsystems.values(): subsys.operators_by_name = subsys.set_operators() return op_func_by_name = self.circuit_operator_functions() for op_name, op_func in op_func_by_name.items(): setattr(self, op_name, MethodType(op_func, self)) return op_func_by_name
[docs] def get_operator_by_name(self, operator_name: str) -> qt.Qobj: """ Returns the operator for the given operator symbol which has the same dimension as the hilbertdim of the instance from which the operator is requested. Parameters ---------- operator_name: Name of a sympy Symbol object which should be one among the symbols in the attribute vars Returns ------- operator """ if not self.hierarchical_diagonalization: return getattr(self, operator_name + "_operator")() var_index = get_trailing_number(operator_name) assert var_index subsystem_index = self.get_subsystem_index(var_index) subsystem = self.subsystems[subsystem_index] operator = subsystem.get_operator_by_name(operator_name) if isinstance(operator, qt.Qobj): operator = operator.full() operator = convert_matrix_to_qobj( operator, subsystem, op_in_eigenbasis=False, evecs=None, ) return identity_wrap(operator, subsystem, list(self.subsystems.values()))
# ################################################################# # ############ Functions for eigenvalues and matrices ############ # ################################################################# def _is_mat_mul_replacement_necessary(self, term): return ( set(self.var_categories["extended"]) & set([get_trailing_number(str(i)) for i in term.free_symbols]) ) and "*" in str(term) def _replace_mat_mul_operator(self, term): if not self._is_mat_mul_replacement_necessary(term): return str(term) if self.ext_basis == "discretized": term_string = str(term) term_var_categories = [ get_trailing_number(str(i)) for i in term.free_symbols ] if len(set(term_var_categories) & set(self.var_categories["extended"])) > 1: if all(["Q" in var.name for var in term.free_symbols]): term_string = str(term).replace( "*", "@" ) # replacing all the * with @ elif self.ext_basis == "harmonic": # replace ** with np.matrix_power if "**" in str(term): operators = [ match.replace("**", "") for match in re.findall(r"[^*]+\*{2}", str(term), re.MULTILINE) ] exponents = re.findall(r"(?<=\*{2})\d", str(term), re.MULTILINE) new_string_list = [] for idx, operator in enumerate(operators): if get_trailing_number(operator) in self.var_categories["extended"]: new_string_list.append( "matrix_power(" + operator + "," + exponents[idx] + ")" ) else: new_string_list.append(operator + "**" + exponents[idx]) term_string = "*".join(new_string_list) else: term_string = str(term) # replace * with @ in the entire term if len(term.free_symbols) > 1: term_string = re.sub( r"(?<=[^*])\*(?!\*)", "@", term_string, re.MULTILINE ) return term_string def _get_eval_hamiltonian_string(self, H): """ Returns the string which defines the expression for Hamiltonian in harmonic oscillator basis """ expr_dict = H.as_coefficients_dict() terms_list = list(expr_dict.keys()) coeff_list = list(expr_dict.values()) H_string = "" for idx, term in enumerate(terms_list): term_string = ( str(coeff_list[idx]) + "*" + self._replace_mat_mul_operator(term) ) if float(coeff_list[idx]) > 0: term_string = "+" + term_string H_string += term_string # replace all position, sin and cos operators with methods H_string = re.sub(r"(?P<x>(θ\d)|(cosθ\d))", r"\g<x>_operator(self)", H_string) # replace all other operators with methods operator_symbols_list = flatten_list_recursive( [ list(short_op_dict.values()) if isinstance(short_op_dict, dict) else short_op_dict for short_op_dict in list(self.vars.values()) ] ) operator_name_list = [symbol.name for symbol in operator_symbols_list] for operator_name in operator_name_list: if "θ" not in operator_name: H_string = H_string.replace( operator_name, operator_name + "_operator(self)" ) return H_string @staticmethod def matrix_power_sparse(x, n: int): res = x.copy() for i in range(n - 1): res = res @ x return res @staticmethod def _cos_dia_dense(x): """ This is a special function to calculate the cos of dense diagonal matrices """ return np.diag(np.cos(x.diagonal())) @staticmethod def _sin_dia_dense(x): """ This is a special function to calculate the sin of dense diagonal matrices """ return np.diag(np.sin(x.diagonal())) def _hamiltonian_for_harmonic_extended_vars(self): hamiltonian = self._hamiltonian_sym_for_numerics # substitute all parameter values all_sym_parameters = ( list(self.symbolic_params.keys()) + self.external_fluxes + self.offset_charges ) hamiltonian = hamiltonian.subs( [ (sym_param, getattr(self, sym_param.name)) for sym_param in all_sym_parameters ] ) hamiltonian = hamiltonian.subs( "I", 1 ) # does not make a difference as all the trigonometric expressions are # expanded out. # remove constants from the Hamiltonian hamiltonian -= hamiltonian.as_coefficients_dict()[1] hamiltonian = hamiltonian.expand() # replace the extended degrees of freedom with harmonic oscillators for var_index in self.var_categories["extended"]: ECi = float(hamiltonian.coeff("Q" + str(var_index) + "**2").cancel()) / 4 ELi = float(hamiltonian.coeff("θ" + str(var_index) + "**2").cancel()) * 2 osc_freq = (8 * ELi * ECi) ** 0.5 hamiltonian = ( ( hamiltonian - ECi * 4 * sm.symbols("Q" + str(var_index)) ** 2 - ELi / 2 * sm.symbols("θ" + str(var_index)) ** 2 + osc_freq * (sm.symbols("Nh" + str(var_index))) ) .cancel() .expand() ) H_str = self._get_eval_hamiltonian_string(hamiltonian) self._H_str_harmonic = H_str offset_charge_names = [ offset_charge.name for offset_charge in self.offset_charges ] offset_charge_dict = dict(zip(offset_charge_names, self.offset_charge_values())) external_flux_names = [ external_flux.name for external_flux in self.external_fluxes ] external_flux_dict = dict(zip(external_flux_names, self.external_flux_values())) replacement_dict = { **self.operators_by_name, **offset_charge_dict, **external_flux_dict, } # adding matrix power to the dict if self.type_of_matrices == "dense": replacement_dict["matrix_power"] = np.linalg.matrix_power replacement_dict["cos"] = self._cos_dia_dense replacement_dict["sin"] = self._sin_dia_dense else: replacement_dict["matrix_power"] = self.matrix_power_sparse replacement_dict["cos"] = self._cos_dia replacement_dict["sin"] = self._sin_dia # adding self to the list replacement_dict["self"] = self return eval(H_str, replacement_dict) def _hamiltonian_for_discretized_extended_vars(self): hamiltonian = self._hamiltonian_sym_for_numerics hamiltonian = hamiltonian.subs( [ (param, getattr(self, str(param))) for param in list(self.symbolic_params.keys()) + self.external_fluxes + self.offset_charges ] ) # remove constants from the Hamiltonian hamiltonian -= hamiltonian.as_coefficients_dict()[1] hamiltonian = hamiltonian.expand() H_str = self._get_eval_hamiltonian_string(hamiltonian) self._H_str_sparse = H_str replacement_dict = self.operators_by_name replacement_dict["cos"] = self._cos_dia replacement_dict["sin"] = self._sin_dia # adding self to the list replacement_dict["self"] = self return eval(H_str, replacement_dict)
[docs] def hamiltonian(self): """ Returns the Hamiltonian of the Circuit. """ if not self.hierarchical_diagonalization: if self.ext_basis == "harmonic": return self._hamiltonian_for_harmonic_extended_vars() elif self.ext_basis == "discretized": return self._hamiltonian_for_discretized_extended_vars() else: bare_esys = { sys_index: sys.eigensys(evals_count=sys.truncated_dim) for sys_index, sys in enumerate(self.hilbert_space.subsys_list) } hamiltonian = self.hilbert_space.hamiltonian(bare_esys=bare_esys) if self.type_of_matrices == "dense": return hamiltonian.full() if self.type_of_matrices == "sparse": return hamiltonian.data.tocsc()
def _evals_calc(self, evals_count: int) -> ndarray: # dimension of the hamiltonian hilbertdim = self.hilbertdim() hamiltonian_mat = self.hamiltonian() if self.type_of_matrices == "sparse": evals = sparse.linalg.eigsh( hamiltonian_mat, return_eigenvectors=False, k=evals_count, v0=settings.RANDOM_ARRAY[:hilbertdim], which="SA", ) elif self.type_of_matrices == "dense": evals = sp.linalg.eigvalsh( hamiltonian_mat, subset_by_index=[0, evals_count - 1] ) return np.sort(evals) def _esys_calc(self, evals_count: int) -> Tuple[ndarray, ndarray]: # dimension of the hamiltonian hilbertdim = self.hilbertdim() hamiltonian_mat = self.hamiltonian() if self.type_of_matrices == "sparse": evals, evecs = sparse.linalg.eigsh( hamiltonian_mat, return_eigenvectors=True, k=evals_count, which="SA", v0=settings.RANDOM_ARRAY[:hilbertdim], ) elif self.type_of_matrices == "dense": evals, evecs = sp.linalg.eigh( hamiltonian_mat, eigvals_only=False, subset_by_index=[0, evals_count - 1], ) evals, evecs = order_eigensystem(evals, evecs) return evals, evecs # **************************************************************** # ***** Functions for pretty display of symbolic expressions ***** # **************************************************************** def _make_expr_human_readable(self, expr: sm.Expr, float_round: int = 3) -> sm.Expr: """ Method returns a user readable symbolic expression for the current instance Parameters ---------- expr: A symbolic sympy expression float_round: Number of digits after the decimal to which floats are rounded Returns ------- hamiltonian Sympy expression which is simplified to make it human readable. """ expr_modified = expr # rounding the decimals in the coefficients # citation: # https://stackoverflow.com/questions/43804701/round-floats-within-an-expression # accepted answer for term in sm.preorder_traversal(expr): if isinstance(term, sm.Float): expr_modified = expr_modified.subs(term, round(term, float_round)) for var_index in self.var_categories_list: # replace sinθ with sin(..) and similarly with cos expr_modified = ( expr_modified.replace( sm.symbols("cosθ" + str(var_index)), sm.cos(1.0 * sm.symbols("θ" + str(var_index))), ) .replace( sm.symbols("sinθ" + str(var_index)), sm.sin(1.0 * sm.symbols("θ" + str(var_index))), ) .replace( (1.0 * sm.symbols("θ" + str(var_index))), (sm.symbols("θ" + str(var_index))), ) .replace( (1.0 * sm.symbols("θ" + str(var_index))), (sm.symbols("θ" + str(var_index))), ) ) # replace Qs with Q^2 etc expr_modified = expr_modified.replace( sm.symbols("Qs" + str(var_index)), sm.symbols("Q" + str(var_index)) ** 2 ) expr_modified = expr_modified.replace( sm.symbols("ng" + str(var_index)), sm.symbols("n_g" + str(var_index)) ) # replace I by 1 expr_modified = expr_modified.replace(sm.symbols("I"), 1) for ( ext_flux_var ) in self.external_fluxes: # removing 1.0 decimals from flux vars expr_modified = expr_modified.replace(1.0 * ext_flux_var, ext_flux_var) return expr_modified
[docs] def sym_potential(self, float_round: int = 3, print_latex: bool = False) -> sm.Expr: """ Method returns a user readable symbolic Lagrangian for the current instance Parameters ---------- float_round: Number of digits after the decimal to which floats are rounded print_latex: if set to True, the expression is additionally printed as LaTeX code Returns ------- Human readable form of the Lagrangian """ potential = self._make_expr_human_readable( self.potential_symbolic, float_round=float_round ) if print_latex: print(latex(potential)) return potential
[docs] def sym_hamiltonian( self, subsystem_index: Optional[int] = None, float_round: int = 3, print_latex: bool = False, ) -> sm.Expr: """ Method returns a user readable symbolic Hamiltonian for the current instance Parameters ---------- subsystem_index: when set to an index, the Hamiltonian for the corresponding subsystem is returned. float_round: Number of digits after the decimal to which floats are rounded print_latex: if set to True, the expression is additionally printed as LaTeX code Returns ------- hamiltonian Sympy expression which is simplified to make it human readable. """ if subsystem_index is not None: if not self.hierarchical_diagonalization: raise Exception( "Current instance does not have any subsystems as hierarchical " "diagonalization is not utilized. If so, do not set subsystem_index" " keyword argument." ) sym_hamiltonian = self._make_expr_human_readable( self.subsystems[subsystem_index].hamiltonian_symbolic ) else: sym_hamiltonian = sm.Add( sm.UnevaluatedExpr( self._make_expr_human_readable( self.hamiltonian_symbolic.expand() - self.potential_symbolic.expand(), float_round=float_round, ) ), sm.UnevaluatedExpr( self._make_expr_human_readable( self.potential_symbolic.expand(), float_round=float_round ) ), evaluate=False, ) if print_latex: print(latex(sym_hamiltonian)) return sym_hamiltonian
[docs] def sym_interaction( self, subsystem_indices: Tuple[int], float_round: int = 3, print_latex: bool = False, ) -> sm.Expr: """ Returns the interaction between any set of subsystems for the current instance. It would return the interaction terms having operators from all the subsystems mentioned in the tuple. Parameters ---------- subsystem_indices: Tuple of subsystem indices float_round: Number of digits after the decimal to which floats are rounded print_latex: if set to True, the expression is additionally printed as LaTeX code Returns ------- interaction Sympy Expr object having interaction terms which have operators from all the mentioned subsystems. """ interaction = sm.symbols("x") * 0 for subsys_index_pair in itertools.combinations(subsystem_indices, 2): for term in self.subsystem_interactions[ min(subsys_index_pair) ].as_ordered_terms(): term_mod = term.subs( [ (symbol, 1) for symbol in self.external_fluxes + self.offset_charges + [sm.symbols("I")] ] ) interaction_var_indices = [ self.get_subsystem_index(get_trailing_number(symbol.name)) for symbol in term_mod.free_symbols ] if np.array_equal( np.sort(interaction_var_indices), np.sort(subsystem_indices) ): interaction += term interaction = self._make_expr_human_readable( interaction, float_round=float_round ) if print_latex: print(latex(interaction)) return interaction
# **************************************************************** # ************* Functions for plotting potential ***************** # ****************************************************************
[docs] def potential_energy(self, **kwargs) -> ndarray: """ Returns the full potential of the circuit evaluated in a grid of points as chosen by the user or using default variable ranges. Parameters ---------- θ<index>: value(s) for variable :math:`\theta_i` in the potential. """ periodic_indices = self.var_categories["periodic"] discretized_ext_indices = self.var_categories["extended"] var_categories = discretized_ext_indices + periodic_indices # method to concatenate sublists potential_sym = self.potential_symbolic.subs("I", 1) for ext_flux in self.external_fluxes: potential_sym = potential_sym.subs(ext_flux, ext_flux * 2 * np.pi) for var in self.external_fluxes: potential_sym = potential_sym.subs(var, var * np.pi * 2) # constructing the grids parameters = dict.fromkeys( ["θ" + str(index) for index in var_categories] + [var.name for var in self.external_fluxes] + [var.name for var in self.symbolic_params] ) for var_name in kwargs: if isinstance(kwargs[var_name], np.ndarray): parameters[var_name] = kwargs[var_name] elif isinstance(kwargs[var_name], (int, float)): parameters[var_name] = kwargs[var_name] else: raise AttributeError( "Only float, int or Numpy ndarray assignments are allowed." ) for var_name in parameters.keys(): if parameters[var_name] is None: if var_name in [ var.name for var in list(self.symbolic_params.keys()) + self.external_fluxes ]: parameters[var_name] = getattr(self, var_name) elif var_name in ["θ" + str(index) for index in var_categories]: raise AttributeError(var_name + " is not set.") # creating a meshgrid for multiple dimensions sweep_vars = {} for var_name in kwargs: if isinstance(kwargs[var_name], np.ndarray): sweep_vars[var_name] = kwargs[var_name] if len(sweep_vars) > 1: sweep_vars.update( zip( sweep_vars, np.meshgrid(*[grid for grid in sweep_vars.values()]), ) ) for var_name in sweep_vars: parameters[var_name] = sweep_vars[var_name] potential_func = sm.lambdify(parameters.keys(), potential_sym, "numpy") return potential_func(*parameters.values())
[docs] def plot_potential(self, **kwargs): r""" Returns the plot of the potential for the circuit instance. Make sure to not set more than two variables in the instance.potential to a Numpy array, as the the code cannot plot with more than 3 dimensions. Parameters ---------- θ<index>: Union[ndarray, float] value(s) for the variable :math:`\theta_i` occurring in the potential. """ periodic_indices = self.var_categories["periodic"] discretized_ext_indices = self.var_categories["extended"] var_categories = discretized_ext_indices + periodic_indices # constructing the grids parameters = dict.fromkeys( ["θ" + str(index) for index in var_categories] + [var.name for var in self.external_fluxes] + [var.name for var in self.symbolic_params] ) sweep_vars = {} for var_name in kwargs: if isinstance(kwargs[var_name], np.ndarray): sweep_vars[var_name] = kwargs[var_name] if len(sweep_vars) > 1: sweep_vars.update(zip(sweep_vars, np.meshgrid(*list(sweep_vars.values())))) for var_name in sweep_vars: parameters[var_name] = sweep_vars[var_name] if len(sweep_vars) > 2: raise AttributeError( "Cannot plot with a dimension greater than 3; Only give a maximum of " "two grid inputs" ) potential_energies = self.potential_energy(**kwargs) if len(sweep_vars) == 1: plot = plt.plot(*(list(sweep_vars.values()) + [potential_energies])) plt.xlabel( r"$\theta_{{{}}}$".format( get_trailing_number(list(sweep_vars.keys())[0]) ) ) plt.ylabel("Potential energy in " + scq.get_units()) if len(sweep_vars) == 2: plot = plt.contourf(*(list(sweep_vars.values()) + [potential_energies])) var_indices = [ get_trailing_number(var_name) for var_name in list(sweep_vars.keys()) ] plt.xlabel(r"$\theta_{{{}}}$".format(var_indices[0])) plt.ylabel(r"$\theta_{{{}}}$".format(var_indices[1])) cbar = plt.colorbar() cbar.set_label("Potential energy in " + scq.get_units()) return plot
# **************************************************************** # ************* Functions for plotting wave function ************* # ****************************************************************
[docs] def get_osc_param(self, var_index: int, which_param: str = "length") -> float: """ Returns the oscillator parameters based on the oscillator used to diagonalize the Hamiltonian in the harmonic oscillator basis. Parameters ---------- var_index: var index whose oscillator parameter needs to be fetched which_param: "length" or "freq" - decides which parameter is returned, by default "length" Returns ------- returns the float value which is the oscillator length or the frequency of the oscillator corresponding to var_index depending on the string `which_param`. """ if not self.hierarchical_diagonalization: return eval("self.osc_" + which_param + "s[" + str(var_index) + "]") subsystem = self.subsystems[self.get_subsystem_index(var_index)] return subsystem.get_osc_param(var_index, which_param=which_param)
def _recursive_basis_change( self, wf_reshaped, wf_dim, subsystem, relevant_indices=None ): """ Method to change the basis recursively, to reverse hierarchical diagonalization and get to the basis in which the variables were initially defined. Parameters ---------- wf_dim: The dimension of the wave function which needs to be rewritten in terms of the initial basis """ _, U_subsys = subsystem.eigensys(evals_count=subsystem.truncated_dim) wf_sublist = list(range(len(wf_reshaped.shape))) U_sublist = [wf_dim, len(wf_sublist)] target_sublist = wf_sublist.copy() target_sublist[wf_dim] = len(wf_sublist) wf_new_basis = np.einsum( wf_reshaped, wf_sublist, U_subsys.T, U_sublist, target_sublist ) if subsystem.hierarchical_diagonalization: wf_shape = list(wf_new_basis.shape) wf_shape[wf_dim] = [ sub_subsys.truncated_dim for sub_subsys in subsystem.subsystems.values() ] wf_new_basis = wf_new_basis.reshape(flatten_list_recursive(wf_shape)) for sub_subsys_index, sub_subsys in enumerate( subsystem.subsystems.values() ): if len(set(relevant_indices) & set(sub_subsys.var_categories_list)) > 0: wf_new_basis = self._recursive_basis_change( wf_new_basis, wf_dim + sub_subsys_index, sub_subsys, relevant_indices=relevant_indices, ) else: if len(set(relevant_indices) & set(subsystem.var_categories_list)) > 0: wf_shape = list(wf_new_basis.shape) wf_shape[wf_dim] = [ getattr(subsystem, cutoff_attrib) if "ext" in cutoff_attrib else (2 * getattr(subsystem, cutoff_attrib) + 1) for cutoff_attrib in subsystem.cutoff_names ] wf_new_basis = wf_new_basis.reshape(flatten_list_recursive(wf_shape)) return wf_new_basis def _basis_change_harm_osc_to_phi(self, wf_original_basis, wf_dim, var_index): """ Method to change the basis from harmonic oscillator to phi basis """ U_ho_phi = np.array( [ osc.harm_osc_wavefunction( n, self._default_grid_phi.make_linspace(), abs(self.get_osc_param(var_index, which_param="length")), ) for n in range(getattr(self, "cutoff_ext_" + str(var_index))) ] ) wf_sublist = [idx for idx, _ in enumerate(wf_original_basis.shape)] U_sublist = [wf_dim, len(wf_sublist)] target_sublist = wf_sublist.copy() target_sublist[wf_dim] = len(wf_sublist) wf_ext_basis = np.einsum( wf_original_basis, wf_sublist, U_ho_phi, U_sublist, target_sublist ) return wf_ext_basis def _basis_change_n_to_phi(self, wf_original_basis, wf_dim, var_index): """ Method to change the basis from harmonic oscillator to phi basis """ U_n_phi = np.array( [ np.exp( n * np.linspace(-np.pi, np.pi, self._default_grid_phi.pt_count) * 1j ) for n in range(2 * getattr(self, "cutoff_n_" + str(var_index)) + 1) ] ) wf_sublist = list(range(len(wf_original_basis.shape))) U_sublist = [wf_dim, len(wf_sublist)] target_sublist = wf_sublist.copy() target_sublist[wf_dim] = len(wf_sublist) wf_ext_basis = np.einsum( wf_original_basis, wf_sublist, U_n_phi, U_sublist, target_sublist ) return wf_ext_basis def _get_var_dim_for_reshaped_wf(self, wf_var_indices, var_index): wf_dim = 0 system_hierarchy_for_vars_chosen = list( set([self.get_subsystem_index(index) for index in np.sort(wf_var_indices)]) ) for subsys_index in self.subsystems: if subsys_index not in system_hierarchy_for_vars_chosen: wf_dim += 1 if subsys_index in system_hierarchy_for_vars_chosen: subsys_var_index_list = self.subsystems[ subsys_index ].var_categories_list if var_index not in subsys_var_index_list: wf_dim += len(subsys_var_index_list) else: wf_dim += subsys_var_index_list.index(var_index) break return wf_dim def _dims_to_be_summed( self, var_indices: List[int], system_hierarchy_for_vars_chosen ) -> List[int]: dims_to_be_summed = [] num_wf_dims = 0 if self.hierarchical_diagonalization: for subsys_index in self.subsystems: if subsys_index in system_hierarchy_for_vars_chosen: for index, var_index in enumerate( self.subsystems[subsys_index].var_categories_list ): if var_index not in var_indices: dims_to_be_summed += [num_wf_dims + index] num_wf_dims += len( self.subsystems[subsys_index].var_categories_list ) else: dims_to_be_summed += [num_wf_dims] num_wf_dims += 1 else: dims_to_be_summed = [ var_index - 1 for var_index in self.var_categories["periodic"] + self.var_categories["extended"] if var_index not in var_indices ] return dims_to_be_summed
[docs] def generate_wf_plot_data( self, which: int = 0, var_indices: Tuple[int] = (1,), eigensys: ndarray = None, change_discrete_charge_to_phi: bool = True, ): """ Returns the plot of the probability density of the wave function in the requested variables for the current Circuit instance. Parameters ---------- which: integer to choose which wave function to plot var_indices: A tuple containing the indices of the variables chosen to plot the wave function in. Should not have more than 2 entries. eigensys: The object returned by the method instance. `eigensys` is used to avoid the re-evaluation of the eigensystems if already evaluated. change_discrete_charge_to_phi: bool boolean to choose if the discrete charge basis for the periodic variable needs to be changed to phi basis. """ # checking to see if eigensys needs to be generated if eigensys is None: _, wfs = self.eigensys() else: _, wfs = eigensys wf = wfs[:, which] if self.hierarchical_diagonalization: system_hierarchy_for_vars_chosen = list( set([self.get_subsystem_index(index) for index in np.sort(var_indices)]) ) # getting the subsystem index for each of the index dimension subsys_trunc_dims = [sys.truncated_dim for sys in self.subsystems.values()] # reshaping the wave functions to truncated dims of subsystems wf_hd_reshaped = wf.reshape(*subsys_trunc_dims) # **** Converting to the basis in which the variables are defined ***** wf_original_basis = wf_hd_reshaped for subsys_index in system_hierarchy_for_vars_chosen: wf_dim = 0 for sys_index in range(subsys_index): if sys_index in system_hierarchy_for_vars_chosen: wf_dim += len(self.subsystems[sys_index].var_categories_list) else: wf_dim += 1 wf_original_basis = self._recursive_basis_change( wf_original_basis, wf_dim, self.subsystems[subsys_index], relevant_indices=var_indices, ) else: wf_original_basis = wf.reshape( *[ getattr(self, cutoff_attrib) if "ext" in cutoff_attrib else (2 * getattr(self, cutoff_attrib) + 1) for cutoff_attrib in self.cutoff_names ] ) # making a basis change to phi for every var_index wf_ext_basis = wf_original_basis for var_index in var_indices: # finding the dimension corresponding to the var_index if not self.hierarchical_diagonalization: wf_dim = self.var_categories_list.index(var_index) else: wf_dim = self._get_var_dim_for_reshaped_wf(var_indices, var_index) if ( var_index in self.var_categories["extended"] and self.ext_basis == "harmonic" ): wf_ext_basis = self._basis_change_harm_osc_to_phi( wf_ext_basis, wf_dim, var_index ) if change_discrete_charge_to_phi: if var_index in self.var_categories["periodic"]: wf_ext_basis = self._basis_change_n_to_phi( wf_ext_basis, wf_dim, var_index ) # if a probability plot is requested, sum over the dimesnsions not relevant to # the ones in var_categories if self.hierarchical_diagonalization: dims_to_be_summed = self._dims_to_be_summed( var_indices, system_hierarchy_for_vars_chosen ) # since system_hierarchy_for_vars_chosen is not defined for a circuit without HD # replace the argument system_hierarchy_for_vars_chosen for _dims_to_be_summed # by [] else: dims_to_be_summed = self._dims_to_be_summed(var_indices, []) wf_plot = np.sum( np.abs(wf_ext_basis) ** 2, axis=tuple(dims_to_be_summed), ) # reorder the array according to the order in var_indices all_var_indices = ( flatten_list_recursive(self.system_hierarchy) if self.hierarchical_diagonalization else self.var_categories_list ) var_index_order = [ all_var_indices.index(var_index) for var_index in var_indices ] var_index_dims = (stats.rankdata(var_index_order) - 1).astype(int) dims_reshape = np.array(wf_plot.shape)[var_index_dims] wf_plot = wf_plot.reshape(*dims_reshape) return wf_plot
[docs] def plot_wavefunction( self, which=0, var_indices: Tuple[int] = (1,), esys: Tuple[ndarray, ndarray] = None, change_discrete_charge_to_phi: bool = True, zero_calibrate: bool = True, **kwargs ): """ Returns the plot of the probability density of the wave function in the requested variables for the current Circuit instance. Parameters ---------- which: integer to choose which wave function to plot var_indices: A tuple containing the indices of the variables chosen to plot the wave function in. Should not have more than 2 entries. esys: The object returned by the method `.eigensys`, is used to avoid the re-evaluation of the eigen systems if already evaluated. change_discrete_charge_to_phi: chooses if the discrete charge basis for the periodic variable needs to be changed to phi basis. zero_calibrate: bool, optional if True, colors are adjusted to use zero wavefunction amplitude as the neutral color in the palette **kwargs: plotting parameters """ if len(var_indices) > 2: raise AttributeError( "Cannot plot wave function in more than 2 dimensions. The number of " "dimensions should be less than 2." ) var_indices = np.sort(var_indices) cutoffs_dict = ( self.cutoffs_dict() ) # dictionary for cutoffs for each variable index grids_dict = {} var_index_dims_dict = {} for cutoff_attrib in self.cutoff_names: var_index = get_trailing_number(cutoff_attrib) if "cutoff_n" in cutoff_attrib: grids_dict[var_index] = discretization.Grid1d( -np.pi, np.pi, self._default_grid_phi.pt_count ) else: var_index_dims_dict[var_index] = getattr(self, cutoff_attrib) if self.ext_basis == "harmonic": grid = self._default_grid_phi elif self.ext_basis == "discretized": grid = discretization.Grid1d( self.discretized_phi_range[var_index][0], self.discretized_phi_range[var_index][1], cutoffs_dict[var_index], ) grids_dict[var_index] = grid wf_plot = self.generate_wf_plot_data( which=which, var_indices=var_indices, eigensys=esys, change_discrete_charge_to_phi=change_discrete_charge_to_phi, ) var_types = [] for var_index in np.sort(var_indices): if var_index in self.var_categories["periodic"]: if not change_discrete_charge_to_phi: var_types.append("Charge in units of 2e, variable:") else: var_types.append("Dimensionless flux, discrete charge variable:") else: var_types.append("Dimensionless flux, variable:") if len(var_indices) == 1: wavefunc = storage.WaveFunction( basis_labels=grids_dict[var_indices[0]].make_linspace(), amplitudes=wf_plot, ) if not change_discrete_charge_to_phi and ( var_indices[0] in self.var_categories["periodic"] ): kwargs = { **defaults.wavefunction1d_discrete("abs_sqr"), **kwargs, } amplitude_modifier = constants.MODE_FUNC_DICT["abs_sqr"] wavefunc.amplitudes = amplitude_modifier(wavefunc.amplitudes) plot.wavefunction1d_discrete(wavefunc, **kwargs) else: plot.wavefunction1d_nopotential( wavefunc, 0, xlabel=r"$\theta_{{{}}}$".format(str(var_indices[0])), ylabel=r"$|\psi(\theta_{{{}}})|^2$".format(str(var_indices[0])), **kwargs ) elif len(var_indices) == 2: wavefunc_grid = discretization.GridSpec( np.asarray( [ list(grids_dict[var_indices[0]].get_initdata().values()), list(grids_dict[var_indices[1]].get_initdata().values()), ] ) ) wavefunc = storage.WaveFunctionOnGrid(wavefunc_grid, wf_plot) plot.wavefunction2d( wavefunc, zero_calibrate=zero_calibrate, xlabel=r"$\theta_{{{}}}$".format(str(var_indices[0])), ylabel=r"$\theta_{{{}}}$".format(str(var_indices[1])), **kwargs )
def _get_cutoff_value(self, var_index: int) -> int: """Return the cutoff value associated with the variable with integer index `var_index`.""" for cutoff_name in self.parent.cutoff_names: if str(var_index) in cutoff_name: return getattr(self.parent, cutoff_name)
[docs] def operator_names_in_hamiltonian_symbolic(self) -> List[str]: """ Returns a list of the names (strings) of all operators occurring in the symbolic Hamiltonian. """ return [ symbol.name for symbol in self.hamiltonian_symbolic.free_symbols if ("ng" not in symbol.name and "Φ" not in symbol.name) and symbol not in self.symbolic_params ]
[docs]class Circuit(Subsystem): """ Class for analysis of custom superconducting circuits. Parameters ---------- symbolic_circuit: SymbolicCircuit an instance of the class `SymbolicCircuit` ext_basis: str can be "discretized" or "harmonic" which chooses whether to use discretized phi or harmonic oscillator basis for extended variables, by default "discretized" initiate_sym_calc: bool attribute to initiate Circuit instance, by default `True` system_hierarchy: list A list of lists which is provided by the user to define subsystems, by default `None` subsystem_trunc_dims: list, optional a dict object which can be generated for a specific system_hierarchy using the method `truncation_template`, by default `None` truncated_dim: Optional[int] truncated dimension if the user wants to use this circuit instance in HilbertSpace, by default `None` Returns ------- Circuit An instance of class `Circuit` """ def __init__( self, symbolic_circuit: SymbolicCircuit, ext_basis: str = "discretized", initiate_sym_calc: bool = True, system_hierarchy: list = None, subsystem_trunc_dims: list = None, truncated_dim: int = None, ): sm.init_printing(order="none") self.is_child = False self.symbolic_circuit: SymbolicCircuit = symbolic_circuit self.ext_basis: str = ext_basis self.truncated_dim: int = truncated_dim self.system_hierarchy: list = system_hierarchy self.subsystem_trunc_dims: list = subsystem_trunc_dims self.discretized_phi_range: Dict[int, Tuple[float, float]] = {} self.cutoff_names: List[str] = [] # setting default grids for plotting self._default_grid_phi: discretization.Grid1d = discretization.Grid1d( -6 * np.pi, 6 * np.pi, 200 ) self.type_of_matrices: str = ( "sparse" # type of matrices used to construct the operators ) # copying all the required attributes required_attributes = [ "branches", "closure_branches", "external_fluxes", "ground_node", "hamiltonian_symbolic", "input_string", "is_grounded", "lagrangian_node_vars", "lagrangian_symbolic", "nodes", "offset_charges", "potential_symbolic", "symbolic_params", "transformation_matrix", "var_categories", ] for attr in required_attributes: setattr(self, attr, getattr(self.symbolic_circuit, attr)) self._sys_type = type(self).__name__ self._id_str = self._autogenerate_id_str() # Hamiltonian function if initiate_sym_calc: self.configure() def __repr__(self) -> str: return self._id_str
[docs] def clear_unnecessary_attribs(self): """ Clear all the attributes which are not part of the circuit description """ necessary_attrib_names = ( self.cutoff_names + [flux_symbol.name for flux_symbol in self.external_fluxes] + [ offset_charge_symbol.name for offset_charge_symbol in self.offset_charges ] + ["cutoff_names"] ) attrib_keys = list(self.__dict__.keys()).copy() for attrib in attrib_keys: if attrib[1:] not in necessary_attrib_names: if ( "cutoff_n_" in attrib or "Φ" in attrib or "cutoff_ext_" in attrib or attrib[1:3] == "ng" ): delattr(self, attrib)
[docs] def configure( self, transformation_matrix: ndarray = None, system_hierarchy: list = None, subsystem_trunc_dims: list = None, closure_branches: List[Branch] = None, ): """ Method which re-initializes a circuit instance to update, hierarchical diagonalization parameters or closure branches or the variable transformation used to describe the circuit. Parameters ---------- transformation_matrix: A user defined variable transformation which has the dimensions of the number nodes (not counting the ground node), by default `None` system_hierarchy: A list of lists which is provided by the user to define subsystems, by default `None` subsystem_trunc_dims: dict object which can be generated for a specific system_hierarchy using the method `truncation_template`, by default `None` closure_branches: List of branches where external flux variables will be specified, by default `None` which then chooses closure branches by an internally generated spanning tree. Raises ------ Exception when system_hierarchy is set and subsystem_trunc_dims is not set. """ system_hierarchy = system_hierarchy or self.system_hierarchy subsystem_trunc_dims = subsystem_trunc_dims or self.subsystem_trunc_dims closure_branches = closure_branches or self.closure_branches if transformation_matrix is None: if hasattr(self, "transformation_matrix"): transformation_matrix = self.transformation_matrix self.hierarchical_diagonalization = ( True if system_hierarchy is not None else False ) self.symbolic_circuit.configure( transformation_matrix=transformation_matrix, closure_branches=closure_branches, ) # copying all the required attributes required_attributes = [ "branches", "closure_branches", "external_fluxes", "ground_node", "hamiltonian_symbolic", "input_string", "is_grounded", "lagrangian_node_vars", "lagrangian_symbolic", "nodes", "offset_charges", "potential_symbolic", "symbolic_params", "transformation_matrix", "var_categories", ] for attr in required_attributes: setattr(self, attr, getattr(self.symbolic_circuit, attr)) # initiating the class properties if not hasattr(self, "cutoff_names"): self.cutoff_names = [] for var_type in self.var_categories.keys(): if var_type == "periodic": for idx, var_index in enumerate(self.var_categories["periodic"]): if not hasattr(self, "_" + "cutoff_n_" + str(var_index)): self._make_property( "cutoff_n_" + str(var_index), 5, "update_cutoffs" ) self.cutoff_names.append("cutoff_n_" + str(var_index)) if var_type == "extended": for idx, var_index in enumerate(self.var_categories["extended"]): if not hasattr(self, "_" + "cutoff_ext_" + str(var_index)): self._make_property( "cutoff_ext_" + str(var_index), 30, "update_cutoffs" ) self.cutoff_names.append("cutoff_ext_" + str(var_index)) self.var_categories_list = flatten_list(list(self.var_categories.values())) # default values for the parameters for idx, param in enumerate(self.symbolic_params): # if harmonic oscillator basis is used, param vars become class properties. if not hasattr(self, param.name): self._make_property( param.name, self.symbolic_params[param], "update_param_vars" ) # setting the ranges for flux ranges used for discrete phi vars for v in self.var_categories["extended"]: try: self.discretized_phi_range[v] # check to see if this was defined except: self.discretized_phi_range[v] = (-6 * np.pi, 6 * np.pi) # external flux vars for flux in self.external_fluxes: # setting the default to zero external flux if not hasattr(self, flux.name): self._make_property(flux.name, 0.0, "update_external_flux_or_charge") # offset charges for offset_charge in self.offset_charges: # default to zero offset charge if not hasattr(self, offset_charge.name): self._make_property( offset_charge.name, 0.0, "update_external_flux_or_charge" ) # changing the matrix type if necessary if ( len(flatten_list(self.var_categories.values())) == 1 and self.ext_basis == "harmonic" ): self.type_of_matrices = "dense" # setting the __init__params attribute self._init_params = ( [param.name for param in self.symbolic_params] + [flux.name for flux in self.external_fluxes] + [offset_charge.name for offset_charge in self.offset_charges] + self.cutoff_names + ["input_string"] ) self._set_vars() # setting the attribute vars to store operator symbols if len(self.symbolic_circuit.nodes) > 3: self.hamiltonian_symbolic = ( self.symbolic_circuit.generate_symbolic_hamiltonian( substitute_params=True ) ) if system_hierarchy is not None: self.hierarchical_diagonalization = ( system_hierarchy != [] and system_hierarchy != flatten_list_recursive(system_hierarchy) ) if not self.hierarchical_diagonalization: self.generate_hamiltonian_sym_for_numerics() self.operators_by_name = self.set_operators() else: self.system_hierarchy = system_hierarchy if subsystem_trunc_dims is None: raise Exception( "The truncated dimensions attribute for hierarchical " "diagonalization is not set." ) self.subsystem_trunc_dims = subsystem_trunc_dims self.generate_hamiltonian_sym_for_numerics() self.generate_subsystems() self.operators_by_name = self.set_operators() self.build_hilbertspace() # clear unnecesary attribs self.clear_unnecessary_attribs()
[docs] @classmethod def from_yaml( cls, input_string: str, from_file: bool = True, ext_basis="discretized", basis_completion="heuristic", initiate_sym_calc=True, system_hierarchy: list = None, subsystem_trunc_dims: list = None, truncated_dim: int = None, ): """ Create a Circuit class instance from a circuit graph described in an input string in YAML format. Parameters ---------- input_string: String describing the number of nodes and branches connecting then along with their parameters from_file: Set to True by default, when a file name should be provided to `input_string`, else the circuit graph description in YAML should be provided as a string. ext_basis: can be "discretized" or "harmonic" which chooses whether to use discretized phi or harmonic oscillator basis for extended variables, by default "discretized" basis_completion: either "heuristic" or "canonical", defines the matrix used for completing the transformation matrix. Sometimes used to change the variable transformation to result in a simpler symbolic Hamiltonian, by default "heuristic" initiate_sym_calc: attribute to initiate Circuit instance, by default `True` system_hierarchy: A list of lists which is provided by the user to define subsystems, by default `None` subsystem_trunc_dims: a dict object which can be generated for a specific system_hierarchy using the method `truncation_template`, by default `None` truncated_dim: truncated dimension if the user wants to use this circuit instance in `HilbertSpace`, by default `None` Returns ------- An instance of class `Circuit` """ if basis_completion not in ["heuristic", "canonical"]: raise Exception( "Incorrect parameter set for basis_completion. It can either be 'heuristic' or 'canonical'" ) symbolic_circuit = SymbolicCircuit.from_yaml( input_string, from_file=from_file, basis_completion=basis_completion, initiate_sym_calc=True, ) return cls( symbolic_circuit, initiate_sym_calc=initiate_sym_calc, ext_basis=ext_basis, system_hierarchy=system_hierarchy, subsystem_trunc_dims=subsystem_trunc_dims, truncated_dim=truncated_dim, )
[docs] def variable_transformation(self) -> List[sm.Equality]: """ Returns the variable transformation used in this circuit Returns ------- sm.Expr _description_ """ trans_mat = self.transformation_matrix theta_vars = [ sm.symbols("θ" + str(index)) for index in range(1, len(self.symbolic_circuit.nodes) + 1) ] node_vars = [ sm.symbols("φ" + str(index)) for index in range(1, len(self.symbolic_circuit.nodes) + 1) ] node_var_eqns = [] for idx, node_var in enumerate(node_vars): node_var_eqns.append( sm.Eq(node_vars[idx], np.sum(trans_mat[idx, :] * theta_vars)) ) return node_var_eqns
[docs] def sym_lagrangian( self, vars_type: str = "node", print_latex: bool = False ) -> sm.Expr: """ Method returns a user readable symbolic Lagrangian for the current instance Parameters ---------- vars_type: "node" or "new", fixes the kind of lagrangian requested, by default "node" print_latex: if set to True, the expression is additionally printed as LaTeX code Returns ------- Human readable form of the Lagrangian """ if vars_type == "node": lagrangian = self._make_expr_human_readable(self.lagrangian_node_vars) # replace v\theta with \theta_dot for var_index in range(1, 1 + len(self.symbolic_circuit.nodes)): lagrangian = lagrangian.replace( sm.symbols("vφ" + str(var_index)), sm.symbols("\\dot{φ_" + str(var_index) + "}"), ) elif vars_type == "new": lagrangian = self._make_expr_human_readable(self.lagrangian_symbolic) # replace v\theta with \theta_dot for var_index in self.var_categories_list: lagrangian = lagrangian.replace( sm.symbols("vθ" + str(var_index)), sm.symbols("\\dot{θ_" + str(var_index) + "}"), ) if print_latex: print(latex(lagrangian)) return lagrangian
[docs] def offset_charge_transformation(self) -> List[sm.Equality]: """ Returns the variable transformation between offset charges of periodic variables and the offset node charges Returns ------- sm.Expr Human readable form of expressions of offset charges in terms of node offset charges """ trans_mat = self.transformation_matrix node_offset_charge_vars = [ sm.symbols("q_g" + str(index)) for index in range(1, len(self.symbolic_circuit.nodes) + 1) ] periodic_offset_charge_vars = [ sm.symbols("ng" + str(index)) for index in self.symbolic_circuit.var_categories["periodic"] ] periodic_offset_charge_eqns = [] for idx, node_var in enumerate(periodic_offset_charge_vars): periodic_offset_charge_eqns.append( self._make_expr_human_readable( sm.Eq( periodic_offset_charge_vars[idx], np.sum(trans_mat[idx, :] * node_offset_charge_vars), ) ) ) return periodic_offset_charge_eqns
[docs] def sym_external_fluxes(self) -> Dict[sm.Expr, Tuple["Branch", List["Branch"]]]: """ Method returns a dictionary of Human readable external fluxes with associated branches and loops (represented as lists of branches) for the current instance Returns ------- A dictionary of Human readable external fluxes with their associated branches and loops """ return { self._make_expr_human_readable(self.external_fluxes[ibranch]): ( self.closure_branches[ibranch], self.symbolic_circuit._find_loop(self.closure_branches[ibranch]), ) for ibranch in range(len(self.external_fluxes)) }
# example input strings
[docs]def example_circuit(qubit: str) -> str: """ Returns example input strings for AnalyzeQCircuit and CustomQCircuit for some of the popular qubits. Parameters ---------- qubit: "fluxonium" or "transmon" or "zero_pi" or "cos2phi" choosing the respective example input strings. """ # example input strings for popular qubits inputs_by_qubit_name = dict( fluxonium="nodes: 2\nbranches:\nJJ 1,2 Ej Ecj\nL 1,2 El\nC 1,2 Ec", transmon="nodes: 2\nbranches:\nC\t1,2\tEc\nJJ\t1,2\tEj\tEcj\n", cos2phi="nodes: 4\nbranches:\nC\t1,3\tEc\nJJ\t1,2\tEj\tEcj\nJJ\t3, " "4\tEj\tEcj\nL\t1,4\tEl\nL\t2,3\tEl\n\n", zero_pi="nodes: 4\nbranches:\nJJ\t1,2\tEj\tEcj\nL\t2,3\tEl\nJJ\t3," "4\tEj\tEcj\nL\t4,1\tEl\nC\t1,3\tEc\nC\t2,4\tEc\n", ) if qubit in inputs_by_qubit_name: return inputs_by_qubit_name[qubit] else: raise AttributeError("Qubit not available or invalid input.")
[docs]def grid_operator_func_factory( inner_op: Callable, index: int, grids_dict: Dict[int, discretization.Grid1d] ) -> Callable: def operator_func(self: Subsystem): return self._kron_operator(inner_op(grids_dict[index]), index) return operator_func
[docs]def operator_func_factory( inner_op: Callable, cutoffs_dict: dict, index: int ) -> Callable: def operator_func(self): return self._kron_operator(inner_op(cutoffs_dict[index]), index) return operator_func
[docs]def compose(f: Callable, g: Callable): def g_after_f(x: Any) -> Any: return f(g(x)) return g_after_f