Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Electron conduction kappa is wrong #234

Open
mikekryjak opened this issue Jul 19, 2024 · 3 comments
Open

Electron conduction kappa is wrong #234

mikekryjak opened this issue Jul 19, 2024 · 3 comments
Labels
bug Something isn't working

Comments

@mikekryjak
Copy link
Collaborator

@bendudson our electron conduction is incorrect.

In the code we have the equivalent of:

$$\tau_{ee} = \frac{12 \pi^{3/2} \varepsilon_0^2 m_e^{1/2} T^{3/2}}{ln \Lambda e^4 n_e}$$

Now, this agrees with Fitzpatrick (3.187):
image

But it is not consistent with the Braginskii form which has an additional sqrt(2) in the denominator:
$$\tau_{ee} = \frac{12 \pi^{3/2} \varepsilon_0^2 m_e^{1/2} T^{3/2}}{\sqrt(2) ln \Lambda e^4 n_e}$$

In Hermes-3, we used the Braginskii prefactor of 3.16:

kappa_coefficient = options["kappa_coefficient"]
.doc("Numerical coefficient in parallel heat conduction. Default is 3.16 for electrons, 3.9 otherwise")
.withDefault((name == "e") ? 3.16 : 3.9);

But this is not consistent with tau_ee which uses the Fitzpatrick formulation!

The 3.16 should be divided by sqrt(2) - our electron conduction should be sqrt(2) lower. This is anecdotally in line with what I've been seeing in my 2D runs once I switch on my Braginskii branch.

@mikekryjak mikekryjak added the bug Something isn't working label Jul 19, 2024
@mikekryjak
Copy link
Collaborator Author

Big thanks to Stefan Mijin for working through this with me!

@bendudson
Copy link
Owner

Good find, @mikekryjak ! We should document this carefully so as not to get caught by different definitions of tau_ee

@mikekryjak
Copy link
Collaborator Author

This is being resolved in #195

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants