Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/examples/a10_ideal_example/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
1 change: 1 addition & 0 deletions docs/examples/a10_kinetic_example/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
1 change: 1 addition & 0 deletions docs/examples/a5_tearing_example/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
1 change: 1 addition & 0 deletions docs/examples/run_ideal_example/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
1 change: 1 addition & 0 deletions docs/examples/run_kinetic_example/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
1 change: 1 addition & 0 deletions input/vac.in
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
delg=15.01
delfac=1e-3
cn0=1
use_legacy_greens_function = f
/

&shape
Expand Down
4 changes: 3 additions & 1 deletion vacuum/vacuum_global.f
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ MODULE vglobal_mod
IMPLICIT NONE

LOGICAL :: lsymz,check1,check2,lanal,lkdis,lpest1,lpless,wall,
$ lnova,checks,lfunin,checke,checkd,symvac,verbose_timer_output
$ lnova,checks,lfunin,checke,checkd,symvac,
$ verbose_timer_output, use_legacy_greens_function

INTEGER, PARAMETER :: nc31=31,maxc1=100,maxa1=200,max2=3,
$ nccl3=72,numvar=100,ndima=2,ndim0=5,neqv1=1
Expand Down Expand Up @@ -114,6 +115,7 @@ SUBROUTINE global_alloc(nths0,nfm,mtot,ntsin0)
c-----------------------------------------------------------------------
c define derived sizes.
c-----------------------------------------------------------------------
use_legacy_greens_function = .false.
ntsin=ntsin0+5
nsf=nsf0+1
nfe=1+nsf/2
Expand Down
4 changes: 2 additions & 2 deletions vacuum/vacuum_io.f
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ subroutine cardmo
data under / "--------" /
namelist / modes / mfel,m,mth,n,mdiv,lsymz,lfunin,xiin,
. leqarcw, lpest1, lnova, ladj, ldcon, lgato, lrgato, lspark,
$ ismth, lzio, mp0,mp1
$ ismth, lzio, mp0, mp1
namelist / debugs / checkd, checke, check1, check2, checks,
$ wall, lkplt, verbose_timer_output
namelist / vacdat / ishape,aw,bw,cw,dw,tw,nsing,epsq,noutv,delg,
. idgt, idot, delfac, idsk, cn0
. idgt, idot, delfac, idsk, cn0, use_legacy_greens_function
namelist / diagns / lkdis, ieig, iloop,
$ nloop,nloopr,
. lpsub, nphil, nphse, mx, mz, nph, xofsl,
Expand Down
Loading