runparms.inc
来自「shpf 1.9一个并行编译器」· INC 代码 · 共 16 行
INC
16 行
!---------------------------------------------------------------
! niter: The no. of multigrid cycles for the coarsest (1st level) grid.
! This is modified for later levels as follows:
! ncycle = MAX (ncycle/4, 10)
! i.e. it has the sequence of values: 60, 15, 10, 10...
!
! MMAX: DEFINITION OF FINEST GRIDSIZE: (2**MMAX+1)*(2**MMAX+1)
! Also determines the memory required for array storage.
! Neglecting temporaries (!) it is approx:
! {3 * (2**MMAX + 1)**2} * 8 bytes
!---------------------------------------------------------------
INTEGER niter, mmax, mmin
PARAMETER (niter = 10, mmin = 9, mmax = 9)
! PARAMETER (niter = 60, mmax = 8)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?