resolution Grid resolution.
Useresolution=N
to specify the resolution for a unigrid, useresolution=Nx2^L
to specify both the base grid resolution (N) and the maximum number of refinement levels (L). Examples:resolution=1024 resolution=256x2^4dtdx The Δt/Δx Courant factor.
It can be constant or a function of time. Examples:dtdx=1 dtdx=t<16.4? 1 : t<17.58? 0.1 : 0.02gridInt Integration method.
RK2
— Runge-Kutta 2nd order
RK4
— Runge-Kutta 4th order
ICN
— Iterated Crank-Nicholson
LW2
— Lax-Wendroffsigma The σ factor of the numerical dissipation term.
It can be coordinate dependent. Examples:sigma=0.01 sigma=LStepSigma sigma0=0.02 sigma1=0.01 i=8shoot.integrator Integration method for ODEShootInit.
RK2
— Runge-Kutta 2nd order
RK4
— Runge-Kutta 4th order
amError Error function for the mesh refinement condition.
Examples:amError=ComponentError 0errorTolerance Error tolerance for the mesh refinement condition.
Example:errorTolerance=1e-12errorCheckFreq Frequency of error checking.
Example:errorCheckFreq=8regridFreq Maximum number of time steps without regridding.
Example:regridFreq=16bufferZoneSize Buffer zone size.
Example:bufferZoneSize=2
dtwrite Time difference for datafile writing.
It can be a constant or a function of time. Examples:dtwrite=0.1 dtwrite=t<1.6? 0.1 : t<1.68? 0.01 : t<1.688? 0.001 : 0.0001tmax Output should end at this time.
It can be a constant or a function of the initial time parameter, t0. Example:tmax=t0+16
displayedComponents Comma separated list of components and grid functions to display.
Example:displayedComponents=g00,m,r,e,y,t_propermemoryMax Maximum number of integration steps to memorize.
The simulation can be backtracked by the specified number of steps.
memorySteps A value n means that each n-th integration step is memorized and backtracking restores the time t-nΔt. delay Delay between time steps in milliseconds.
Use it to slow down the simulation.breakpoints Comma separated list of times where the simulation should pause automatically.
08 May 2009, P. Csizmadia