Skip to content

Commit

Permalink
Fix transformation of rate matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfullard committed Oct 29, 2024
1 parent bd88080 commit 9b61d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/plasma/equilibrium/level_populations.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def solve(self):
)
)
normalized_level_populations.loc[species_id, :].update(
np.hstack(solved_matrices.values)
np.vstack(solved_matrices.values).T
)

return normalized_level_populations

0 comments on commit 9b61d47

Please sign in to comment.