1
- function compare_cmfd (N= 4096 * 4 , Nx= 1024 , Nc= 64 , na2= 11 ; s= 1.0 , tol= 1.e-10 )
1
+ function compare_cmfd (N= 4096 * 4 , Nx= 1024 , Nc= 64 , na2= 11 ;
2
+ tau= 5.0 , s= 1.0 , tol= 1.e-10 , plotme= true )
2
3
phi_c = zeros (Nc)
3
4
phi_c0 = zeros (Nc)
4
- cmfd_data= cmfd_init (N, Nx, Nc, na2, s)
5
+ dx= tau/ Nc
6
+ x= dx* .5 : dx: tau- dx* .5
7
+ cmfd_data= cmfd_init (N, Nx, Nc, na2, s; tau= tau)
5
8
#
6
9
# QMC-GMRES is the baseline
7
10
#
8
- goutgm= qmc_krylov (N, Nx, na2; s= s)
11
+ goutgm= qmc_krylov (N, Nx, na2; s= s, tau= tau)
12
+ solgmf= goutgm. sol
13
+ solgm= zeros (Nc)
14
+ solgm.= ftoc (solgmf,solgm)
9
15
reshistg= goutgm. reshistg
10
16
itgmax= length (reshistg)
11
17
#
12
18
# Newton-GMRES + NDA
13
19
#
14
- nout= cmfd_nsoli (Nc; s= s)
20
+ nout= cmfd_nsoli (N, Nx, Nc; s= s, tau= tau)
21
+ soln= nout. solution
15
22
fout= nout. stats. ifun+ nout. stats. ijac+ nout. stats. iarm
16
23
#
17
24
# count the warm-up qmc-si sweep
@@ -22,18 +29,32 @@ reshistn=nout.history
22
29
#
23
30
# NDA-Picard
24
31
#
25
- pout= test_cmfd (Nc; s= s)
32
+ pout= test_cmfd (N, Nx, Nc; s= s, tau= tau)
33
+ solp= pout. solution
34
+ println (norm (soln- solp,Inf )," " ,norm (soln- solgm,Inf ))
26
35
reshistp= pout. history
27
36
itpic= length (reshistp)
28
37
#
29
38
# Plot the results
30
39
#
40
+ Itau= Int (tau)
41
+ if plotme
42
+ figure (1 )
43
+ plot (x,soln," k-" ,x,solgm," k--" ,x,solp," k-." )
44
+ figure (2 )
31
45
semilogy (1 : itgmax,reshistg/ reshistg[1 ]," k-" ,
32
46
1 : itpic,reshistp/ reshistp[1 ]," k.-" ,
33
47
ftot,reshistn/ reshistn[1 ]," k--" )
34
- title (" N=$N , Nx=$Nx , Nc=$Nc " )
48
+ stri= L "\i nfty"
49
+ xxst= " N=$N , Nx=$Nx , Nc=$Nc , s=" * stri* " , Lx = $Itau "
50
+ if s== Inf
51
+ # title("N=$N, Nx=$Nx, Nc=$Nc, s=, Lx = $Itau")
52
+ title (xxst)
53
+ else
54
+ title (" N=$N , Nx=$Nx , Nc=$Nc , s=1.0, Lx = $Itau " )
55
+ end
35
56
xlabel (" Transport sweeps" )
36
57
legend ([" QMC-GMRES" ," NDA-Picard" ," NDA-Newton" ])
37
-
58
+ end
38
59
end
39
60
0 commit comments