You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
.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.
The text was updated successfully, but these errors were encountered:
@bendudson our electron conduction is incorrect.
In the code we have the equivalent of:
Now, this agrees with Fitzpatrick (3.187):
![image](https://private-user-images.githubusercontent.com/62797494/350458124-83a7e560-db66-4232-8638-c99f6e7b8a66.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1NjY0NjYsIm5iZiI6MTczOTU2NjE2NiwicGF0aCI6Ii82Mjc5NzQ5NC8zNTA0NTgxMjQtODNhN2U1NjAtZGI2Ni00MjMyLTg2MzgtYzk5ZjZlN2I4YTY2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDIwNDkyNlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWNkMTQ3NzRmYzZhMWIzYWVhODIyNmYwNjk5OTM0YjhlZjA1ODE5Njk2MTA2MzhlZjhhMmYxZjgzYWNhZjVkOWUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.tQHL_QnqiFassfO_AFOtqh8lmB2fECW-Ihwc87u_s30)
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:
hermes-3/src/evolve_pressure.cxx
Lines 75 to 77 in 8c45022
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.
The text was updated successfully, but these errors were encountered: