fixed edge display for volume cells
[engrid-github.git] / src / libengrid / resources / solvers / example.template
blobf601a934e947e1719d5ab517704fee024025757f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 # global format
10 # {{{ TYPE : NAME : OPTIONS : DEFAULT_VALUE }}}
12 # spinboxes
13 # {{{ TYPE : NAME : MIN, MAX, STEP : DEFAULT_VALUE }}};
14 version          {{{SpinBox: version int: 0, 18, 5 : 18 }}};
15 # {{{ TYPE : NAME : MIN, MAX, STEP, NUM_DECIMALS : DEFAULT_VALUE }}};
16 floatversion     {{{DoubleSpinBox: version double: 0, 100, 0.5, 5 : 47 }}};
18 # line edits
19 # {{{ TYPE : NAME : : DEFAULT_VALUE }}};
20 default          {{{IntLineEdit: name1 : : 49 }}};
21 # {{{ TYPE : NAME : : DEFAULT_VALUE }}};
22 default          {{{DoubleLineEdit: name2 : : 1.23 }}};
23 # {{{ TYPE : NAME : : DEFAULT_VALUE }}};
24 default          {{{TextLineEdit: name3 : : some text }}};
26 # comboboxes
27 # {{{ TYPE : NAME : (DESCRIPTION 1, VALUE 1),...,(DESCRIPTION N, VALUE N) : DEFAULT_VALUE }}};
28 div(phi,U)       {{{ComboBox: name : (1st order, Gauss), (2nd order, Kramer), (3rd order, Noether): Gauss }}};
30 # checkboxes
31 # {{{ TYPE : NAME : CHECKED_VALUE, UNCHECKED_VALUE : DEFAULT_VALUE }}};
32 default          {{{CheckBox: check1 : yes, no : yes }}}; #checked
33 default          {{{CheckBox: check2 : on, off : on }}}; #checked
34 default          {{{CheckBox: check3 : no, yes : yes }}}; #unchecked