Changes between Version 83 and Version 84 of doc/app/initialization_parameters


Ignore:
Timestamp:
Sep 15, 2010 9:27:19 AM (14 years ago)
Author:
kanani
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/initialization_parameters

    v83 v84  
    786786|----------------
    787787{{{#!td style="vertical-align:top"
    788 [=#<insert_parameter_name> '''<insert_parameter_name>''']
    789 }}}
    790 {{{#!td style="vertical-align:top"
    791 <insert type>
    792 }}}
    793 {{{#!td style="vertical-align:top"
    794 <insert value>
    795 }}}
    796 {{{#!td
    797 <insert explanation>
     788[=#psolver '''psolver''']
     789}}}
     790{{{#!td style="vertical-align:top"
     791C*10
     792}}}
     793{{{#!td style="vertical-align:top"
     794'poisfft'
     795}}}
     796{{{#!td
     797Scheme to be used to solve the Poisson equation for the perturbation pressure.\\\\
     798The user can choose between the following schemes:\\\\
     799'' 'poisfft' ''\\\\
     800Direct method using FFT along x and y, solution of a tridiagonal matrix along z, and backward FFT (see Siano, institute reports, volume 54). The FFT routines to be used can be determined via the initialization parameter [#fft_method fft_method].\\
     801This solver is specially optimized for 1d domain decompositions. Vectorization is optimized for domain decompositions along x only.\\\\
     802'' 'poisfft_hybrid' ''\\\\
     803Direct method using FFT along x and y, solution of a tridiagonal matrix along z, and backward FFT (see Siano, institute reports, volume 54). The FFT routines to be used can be determined via the initialization parameter [#fft_method fft_method].\\
     804This solver is specially optimized for 1d domain decompositions. Vectorization is optimized for domain decompositions along x only.\\\\
     805'' 'multigrid' ''\\\\
     806Multi-grid scheme (see Uhlenbrock, diploma thesis). v- and w-cycles (see [#cycle_mg cycle_mg]) are implemented. The convergence of the iterative scheme can be steered by the number of v-/w-cycles to be carried out for each call of the scheme ([#mg_cycles mg_cycles]) and by the number of Gauss-Seidel iterations (see [#ngsrb ngsrb]) to be carried out on each grid level. Instead the requested accuracy can be given via [#residual_limit residual_limit]. This is the default! The smaller this limit is, the more cycles have to be carried out in this case and the number of cycles may vary from timestep to timestep.\\\\
     807If [#mg_cycles mg_cycles] is set to its optimal value, the computing time of the multi-grid scheme amounts approximately to that of the direct solver '' 'poisfft','' as long as the number of grid points in the three directions of space corresponds to a power-of-two (2^n^) where ''n'' >= 5 must hold. With large ''n'', the multi-grid scheme can even be faster than the direct solver (although its accuracy is several orders of magnitude worse, but this does not affect the accuracy of the simulation). Nevertheless, the user should always carry out some test runs in order to find out the optimum value for [#mg_cycles mg_cycles], because the CPU time of a run very critically depends on this parameter.\\\\
     808This scheme requires that the number of grid points of the subdomains (or of the total domain, if only one PE is uesd) along each of the directions can at least be devided once by 2 without rest.\\\\
     809With parallel runs, starting from a certain grid level the data of the subdomains are possibly gathered on PE0 in order to allow for a further coarsening of the grid. The grid level for gathering can be manually set by [#mg_switch_to_pe0_level mg_switch_to_pe0_level].\\\\
     810Using this procedure requires the subdomains to be of identical size (see [#grid_matching grid_matching]).\\\\
     811'' 'sor' ''\\\\
     812Successive over relaxation method (SOR). The convergence of this iterative scheme is steered with the parameters [#omega_sor omega_sor], [#nsor_ini nsor_ini] and [#nsor nsor].\\
     813Compared to the direct method and the multi-grid method, this scheme needs substantially more computing time. It should only be used for test runs, e.g. if errors in the other pressure solver methods are assumed.\\\\
     814In order to speed-up performance, the Poisson equation is by default only solved at the last substep of a multistep Runge-Kutta scheme (see [#call_psolver at_all_substeps call_psolver at_all_substeps] and [#timestep_scheme timestep_scheme]).
    798815}}}
    799816|----------------