Skip to content

Commit

Permalink
fixed the einstein spelling in the files and filename
Browse files Browse the repository at this point in the history
  • Loading branch information
carlamariacoppola committed Jul 30, 2017
1 parent 8c6251f commit a41e490
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/python/frigus/readers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy
from astropy import units as u

from frigus import read_energy_levels, read_einstien_coefficient
from frigus import read_energy_levels, read_einstein_coefficient
from frigus.read_collision_coefficients import (
read_collision_coefficients_lique_and_wrathmall,
read_collision_coefficients_lipovka)
Expand Down Expand Up @@ -117,7 +117,7 @@ def read_raw_data(self):
#
# read the einstein coefficients for the H2 transitions
#
A, A_info_nnz = read_einstien_coefficient.read_einstein_simbotin()
A, A_info_nnz = read_einstein_coefficient.read_einstein_simbotin()
self.raw_data.A = A
self.raw_data.A_info_nnz = A_info_nnz

Expand Down Expand Up @@ -205,7 +205,7 @@ def read_raw_data(self):
#
# read the einstein coefficients for the H2 transitions
#
A, A_info_nnz = read_einstien_coefficient.read_einstein_simbotin()
A, A_info_nnz = read_einstein_coefficient.read_einstein_simbotin()
self.raw_data.A = A
self.raw_data.A_info_nnz = A_info_nnz

Expand Down Expand Up @@ -293,7 +293,7 @@ def read_raw_data(self):
#
# read the einstein coefficients for the H2 transitions
#
A, A_info_nnz = read_einstien_coefficient.read_einstein_simbotin()
A, A_info_nnz = read_einstein_coefficient.read_einstein_simbotin()
self.raw_data.A = A
self.raw_data.A_info_nnz = A_info_nnz

Expand Down Expand Up @@ -479,7 +479,7 @@ def read_raw_data(self):
#
# read the einstein coefficients for the HD transitions
#
A, A_info_nnz = read_einstien_coefficient.read_einstein_coppola()
A, A_info_nnz = read_einstein_coefficient.read_einstein_coppola()
self.raw_data.A = A
self.raw_data.A_info_nnz = A_info_nnz

Expand Down

0 comments on commit a41e490

Please sign in to comment.