materials_for_mc 0.2.0

Material builder for Monte Carlo simulations
Documentation
1
2
3
4
5
6
def test_reaction_instantiation():
    from materials_for_mc import Reaction
    r = Reaction(["n"], ["n", "n"], 1.23)
    assert r.reactants == ["n"]
    assert r.products == ["n", "n"]
    assert r.energy == 1.23