Skip to content
Snippets Groups Projects
Commit daf0c271 authored by Markus Wolff's avatar Markus Wolff
Browse files

added list of run-time parameters to doxygen documentation


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8806 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent df9145d9
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,8 @@ INPUT += @srcdir@/mainpage \
@srcdir@/modules \
@top_srcdir@/dumux \
@top_srcdir@/test \
@top_srcdir@/tutorial
@top_srcdir@/tutorial \
@srcdir@/extradoc/parameterlist
IMAGE_PATH = @srcdir@/images
......
/*!
*\file
*\ingroup Parameter
*
*\brief List of currently useable run-time parameters
*
* The listed run-time parameters are in general available, but we point out that a certain model might not use
* every parameter!
*
* \section listofpropparams Run-time parameters with property values as default
* \subsection implicitParams [Implicit]
* -# MassUpwindWeight (double)
* -# EnableHints (bool)
* -# EnableJacobianRecycling (bool)
* -# EnablePartialReassemble (bool)
* -# EnableSmoothUpwinding (bool)
* -# NumericDifferenceMethod (int)
* \subsection impetParams [IMPET]
* -# ErrorTermFactor (double)
* -# ErrorTermLowerBound (double)
* -# ErrorTermUpperBound (double)
* -# SwitchNormals (bool)
* -# CFLFactor (double)
* -# EnableVolumeIntegral (bool)
* -# RestrictFluxInTransport (bool)
* -# IterationFlag (int)
* -# IterationNumber (int)
* -# MaximumDefect (double)
* -# RelaxationFactor (double)
* \subsection freeflowParams [Stokes]
* -# StabilizationAlpha (double)
* -# StabilizationBeta (double)
* \subsection timeManager [TimeManager]
* -# MaxTimeStepSize
* \subsection linearParams [LinearSolver]
* -# PreconditionerRelaxation (double)
* -# PreconditionerIterations (int)
* -# Verbosity (int)
* -# MaxIterations (int)
* -# GMResRestart (int)
* -# ResidualReduction (double)
* \subsection nonlinearParams [Newton]
* -# EnableRelativeCriterion (bool)
* -# EnableAbsoluteCriterion (bool)
* -# SatisfyAbsAndRel (bool)
* -# RelTolerance (double)
* -# AbsTolerance (double)
* -# TargetSteps (int)
* -# MaxSteps (int)
* -# WriteConvergence (bool)
* -# UseLineSearch (bool)
* -# EnableChop (bool)
* \subsection adaptiveParams [GridAdapt]
* -# RefineTolerance (double)
* -# CoarsenTolerance (double)
* -# MinLevel (int)
* -# MaxLevel (int)
* -# AdaptionInterval (int)
* -# EnableInitializationIndicator (bool)
* \subsection vtkParams [VTK]
OutputLevel (int)
* -# AddVelocity (bool)
* -# AddTemperatures (bool)
* -# AddTemperatures (bool)
* -# AddEnthalpies (bool)
* -# AddInternalEnergies (bool)
* -# AddFugacities (bool)
* -# AddPorosity (bool)
* -# AddBoundaryTypes (bool)
* -# AddSaturations (bool)
* -# AddPressures (bool)
* -# AddVelocities (bool)
* -# AddDensities (bool)
* -# AddMobilities (bool)
* -# AddAverageMolarMass (bool)
* -# AddMassFractions (bool)
* -# AddMoleFractions (bool)
* -# AddMolarities (bool)
* \subsection problemParams [Problem]
* -# EnableGravity (bool)
*
* \section listofpropparams Pure run-time parameters
* \subsection gridParamsRT [Grid]
* -# UpperRightX (double)
* -# UpperRightY (double)
* -# UpperRightZ (double)
* -# NumberOfCellsX (int)
* -# NumberOfCellsY (int)
* -# NumberOfCellsZ (int)
* -# File (string)
* \subsection timeManagerRT [TimeManager]
* -# ParameterFile (string)
* -# PrintProperties (bool)
* -# Restart (double)
* -# PrintParameters (bool)
* -# TEnd (double)
* -# DtInitial (double)
* \subsection problemParamsRT [Problem]
* \subsection spatialParamsParamsRT [SpatialParams]
*
*/
"Run-time with property default:"
[Implicit] "Parameter Type"
MassUpwindWeight double
EnableHints bool
EnableJacobianRecycling bool
EnablePartialReassemble bool
EnableSmoothUpwinding bool
NumericDifferenceMethod int
[Vtk]
OutputLevel int
AddVelocity bool
AddTemperatures bool
AddTemperatures bool
AddEnthalpies bool
AddInternalEnergies bool
AddFugacities bool
AddPorosity bool
AddBoundaryTypes bool
AddSaturations bool
AddPressures bool
AddVelocities bool
AddDensities bool
AddMobilities bool
AddAverageMolarMass bool
AddMassFractions bool
AddMoleFractions bool
AddMolarities bool
[Impet]
ErrorTermFactor double
ErrorTermLowerBound double
ErrorTermUpperBound double
SwitchNormals bool
CFLFactor double
EnableVolumeIntegral bool
RestrictFluxInTransport bool
IterationFlag int
IterationNumber int
MaximumDefect double
RelaxationFactor double
[GridAdapt]
RefineTolerance double
CoarsenTolerance double
MinLevel int
MaxLevel int
AdaptionInterval int
EnableInitializationIndicator bool
[Stokes]
StabilizationAlpha double
StabilizationBeta double
[TimeManager]
MaxTimeStepSize double
[Problem]
EnableGravity bool
[LinearSolver]
PreconditionerRelaxation double
PreconditionerIterations int
Verbosity int
MaxIterations int
GMResRestart int
ResidualReduction double
[Newton]
EnableRelativeCriterion bool
EnableAbsoluteCriterion bool
SatisfyAbsAndRel bool
RelTolerance double
AbsTolerance double
TargetSteps int
MaxSteps int
WriteConvergence bool
UseLineSearch bool
EnableChop bool
"Pure run-time:"
[Grid]
UpperRightX double
UpperRightY double
UpperRightZ double
NumberOfCellsX int
NumberOfCellsY int
NumberOfCellsZ int
File string
[TimeManager]
ParameterFile string
PrintProperties bool
Restart double
PrintParameters bool
TEnd double
DtInitial double
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment