Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combine kinetics and relaxations parameters into incoherent_processes #52

Open
vatai opened this issue Dec 30, 2022 · 0 comments
Open
Assignees
Labels
question Further information is requested
Milestone

Comments

@vatai
Copy link
Collaborator

vatai commented Dec 30, 2022

    results = sim.MARY(
        init_state=State.TRIPLET,
        obs_state=State.TRIPLET,
        time=time,
        B=Bs,
        D=0,
        J=0,
        ### shouldn't be like this:
        # hilbert_incoherent_processes=[rp.kinetics.Exponential(k)],

        ### should be like this
        incoherent_processes=[
            rp.kinetics.Haberkorn(krec, State.SINGLET),
            rp.kinetics.HaberkornFree(kesc),
            relaxation.SingletTripletDephasing(kSTD),
        ],
        ### currently it is like this:
        kinetics=[
            # rp.kinetics.Exponential(k),
            rp.kinetics.Haberkorn(krec, State.SINGLET),
            rp.kinetics.HaberkornFree(kesc),
        ],
        relaxations=[relaxation.SingletTripletDephasing(kSTD)],
    )
@vatai vatai self-assigned this Dec 30, 2022
@vatai vatai added this to the v0.7.0 milestone Dec 30, 2022
@vatai vatai added the question Further information is requested label Dec 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant