Skip to content

Commit

Permalink
pybamm-team#1063 remove default T value from Landesfeind
Browse files Browse the repository at this point in the history
  • Loading branch information
brosaplanella committed Jan 2, 2021
1 parent 8dc2e50 commit bd1dc12
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np


def electrolyte_TDF_EC_DMC_1_1_Landesfeind2019(c_e, T=298.15):
def electrolyte_TDF_EC_DMC_1_1_Landesfeind2019(c_e, T):
"""
Thermodynamic factor (TDF) of LiPF6 in EC:DMC (1:1 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np


def electrolyte_transference_number_EC_DMC_1_1_Landesfeind2019(c_e, T=298.15):
def electrolyte_transference_number_EC_DMC_1_1_Landesfeind2019(c_e, T):
"""
Transference number of LiPF6 in EC:DMC (1:1 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np


def electrolyte_TDF_EC_EMC_3_7_Landesfeind2019(c_e, T=298.15):
def electrolyte_TDF_EC_EMC_3_7_Landesfeind2019(c_e, T):
"""
Thermodynamic factor (TDF) of LiPF6 in EC:EMC (3:7 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np


def electrolyte_transference_number_EC_EMC_3_7_Landesfeind2019(c_e, T=298.15):
def electrolyte_transference_number_EC_EMC_3_7_Landesfeind2019(c_e, T):
"""
Transference number of LiPF6 in EC:EMC (3:7 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np


def electrolyte_TDF_EMC_FEC_19_1_Landesfeind2019(c_e, T=298.15):
def electrolyte_TDF_EMC_FEC_19_1_Landesfeind2019(c_e, T):
"""
Thermodyamic factor (TDF) of LiPF6 in EMC:FEC (19:1 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np


def electrolyte_transference_number_EMC_FEC_19_1_Landesfeind2019(c_e, T=298.15):
def electrolyte_transference_number_EMC_FEC_19_1_Landesfeind2019(c_e, T):
"""
Transference number of LiPF6 in EMC:FEC (19:1 w:w) as a function of ion
concentration and temperature. The data comes from [1].
Expand Down

0 comments on commit bd1dc12

Please sign in to comment.