Skip to content
Discussion options

You must be logged in to vote

Hi @mpegis , It did worked by making the diffusivity a temperature dependent function which changes with ambient temperature.

An Arrhenius dependent function that takes ambient temperature as input worked just fine.

The temperature-dependent diffusivity property is descripted by this Arrhenius equation

Here's the change I have done in code.

If it's an EC reaction limited SEI submodel.

    def ec_diffusivity(T_amb):
        D_sj = 2e-18,
        EaD = 4000
        arrhenius = exp(EaD / constants.R * (1 / 298.15 - 1 / T_amb))
        return D_sj * arrhenius
        parameter_values.update({"EC diffusivity [m2.s-1]":ec_diffusivity(tempK)})

If it's an Solvent-diffusion limited SEI submodel.

Replies: 6 comments 11 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
3 replies
@brosaplanella
Comment options

brosaplanella May 31, 2023
Maintainer Sponsor

@mlnsai
Comment options

@brosaplanella
Comment options

brosaplanella Jun 2, 2023
Maintainer Sponsor

Comment options

You must be logged in to vote
2 replies
@mlnsai
Comment options

@mpegis
Comment options

Comment options

You must be logged in to vote
2 replies
@Ansh-Lodhi
Comment options

@brosaplanella
Comment options

brosaplanella Jun 12, 2023
Maintainer Sponsor

Answer selected by mlnsai
Comment options

You must be logged in to vote
3 replies
@mlnsai
Comment options

@ganmad
Comment options

@MirAbbasAli2A
Comment options

Comment options

You must be logged in to vote
1 reply
@brosaplanella
Comment options

brosaplanella Oct 2, 2023
Maintainer Sponsor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
6 participants