Skip to content
Snippets Groups Projects
Commit d357eac6 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann
Browse files

adaptation for new bare, bari functions

parent 9636e3c5
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ subroutine poisson
k2_ = 1.0
if (jmaxe .ge. 0) then
DO ine=1,jmaxe
CALL bare(0,ine,i0j)
i0j = bare(0,ine)
k1_ = k1_ * x_e**2/ine
k2_ = k2_ * x_e**4/ine**2
sum_kernel_mom_e = sum_kernel_mom_e + k1_ * moments(i0j,ikr,ikz,updatetlevel)
......@@ -50,7 +50,7 @@ subroutine poisson
k2_ = 1.0
if (jmaxi .ge. 0) then
DO ini=1,jmaxe
CALL bari(0,ini,i0j)
i0j = bari(0,ini)
k1_ = k1_ * x_i**2/ini
k2_ = k2_ * x_i**4/ini**2
sum_kernel_mom_i = sum_kernel_mom_i + k1_ * moments(Nmome + i0j,ikr,ikz,updatetlevel)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment