transition#

import qrules.transition

Find allowed transitions between an initial and final state.

class SolvingMode(value)[source]#

Bases: Enum

Types of modes for solving.

FAST = 1[source]#

Find “likeliest” solutions only.

FULL = 2[source]#

Find all possible solutions.

class ExecutionInfo(not_executed_node_rules: Dict[int, Set[str]] = _Nothing.NOTHING, violated_node_rules: Dict[int, Set[str]] = _Nothing.NOTHING, not_executed_edge_rules: Dict[int, Set[str]] = _Nothing.NOTHING, violated_edge_rules: Dict[int, Set[str]] = _Nothing.NOTHING)[source]#

Bases: object

not_executed_node_rules: Dict[int, Set[str]][source]#
violated_node_rules: Dict[int, Set[str]][source]#
not_executed_edge_rules: Dict[int, Set[str]][source]#
violated_edge_rules: Dict[int, Set[str]][source]#
extend(other_result: ExecutionInfo, intersect_violations: bool = False) None[source]#
clear() None[source]#
class ProblemSet(topology: Topology, initial_facts: InitialFacts, solving_settings: GraphSettings)[source]#

Bases: object

Particle reaction problem set as a graph-like data structure.

topology: Topology[source]#

Topology over which the problem set is defined.

initial_facts: InitialFacts[source]#

Information about the initial and final state.

solving_settings: GraphSettings[source]#

Solving settings, such as conservation rules and QN-domains.

to_qn_problem_set() QNProblemSet[source]#
class StateTransitionManager(initial_state: Sequence[str | Tuple[str, Sequence[float]]], final_state: Sequence[str | Tuple[str, Sequence[float]]], particle_db: ParticleCollection | None = None, allowed_intermediate_particles: List[str] | None = None, interaction_type_settings: Dict[InteractionType, Tuple[EdgeSettings, NodeSettings]] | None = None, formalism: str = 'helicity', topology_building: str = 'isobar', solving_mode: SolvingMode = SolvingMode.FAST, reload_pdg: bool = False, mass_conservation_factor: float | None = 3.0, max_angular_momentum: int = 1, max_spin_magnitude: float = 2.0, number_of_threads: int | None = None)[source]#

Bases: object

Main handler for decay topologies.

interaction_determinators: List[InteractionDeterminator][source]#

Checks that are executed over selected conservation rules.

See also

{ref}`usage/reaction:Select interaction types`

topologies: Tuple[Topology, ...][source]#

Topology instances over which the STM propagates quantum numbers.

set_allowed_intermediate_particles(name_patterns: Iterable[str] | str, regex: bool = False) None[source]#
property formalism: str[source]#
add_final_state_grouping(fs_group: List[str] | List[List[str]]) None[source]#
get_allowed_interaction_types() List[InteractionType] | Dict[int, List[InteractionType]][source]#
get_allowed_interaction_types(node_id: int) List[InteractionType]
set_allowed_interaction_types(allowed_interaction_types: Iterable[InteractionType], node_id: int | None = None) None[source]#
create_problem_sets() Dict[float, List[ProblemSet]][source]#
find_solutions(problem_sets: Dict[float, List[ProblemSet]]) ReactionInfo[source]#

Check for solutions for a specific set of interaction settings.

find_quantum_number_transitions(problem_sets: Dict[float, List[ProblemSet]]) Dict[float, List[Tuple[QNProblemSet, QNResult]]][source]#

Find allowed transitions purely in terms of quantum number sets.

class State(particle: Particle, spin_projection: SupportsFloat)[source]#

Bases: object

particle: Particle[source]#
spin_projection: float[source]#
StateTransition: TypeAlias = 'FrozenTransition[State, InteractionProperties]'#

Transition of some initial State to a final State.

class ReactionInfo(transitions: Iterable[FrozenTransition[State, InteractionProperties]], formalism: str)[source]#

Bases: object

Ordered collection of StateTransition instances.

transitions: Tuple[FrozenTransition[State, InteractionProperties], ...][source]#
formalism: str[source]#
initial_state: FrozenDict[int, Particle][source]#
final_state: FrozenDict[int, Particle][source]#
get_intermediate_particles() ParticleCollection[source]#

Extract the names of the intermediate state particles.

group_by_topology() Dict[Topology, List[FrozenTransition[State, InteractionProperties]]][source]#