Initial commit of NavalHydro package from Wikki to the ShipHydroSIG
[ShipHydroSIG.git] / run / navalFoam / twoBoats / system / tetFemSolution
blob8309f40fc4b0cc01a8f41192a47b3bd5dc7b8d2f
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.4                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
13     class           dictionary;
14     object          tetFemSolution;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 solvers
21 //     motionU
22 //     {
23 //         solver           CG;
24 //         preconditioner   Cholesky;
26 //         minIter          0;
27 //         maxIter          500;
28 //         tolerance        1e-7;
29 //         relTol           0.001;
30 //     };
32     motionU
33     {
34         solver            amgSolver;
35         cycle             W-cycle;
36         policy            AAMG;
37         nPreSweeps        0;
38         nPostSweeps       2;
39         groupSize         4;
40         minCoarseEqns     20;
41         nMaxLevels        100;
42         scale             on;
43         smoother          ILU;
45         minIter           0;
46         maxIter           100;
47         tolerance         1e-7;
48         relTol            0.001;
49     };
53 // ************************************************************************* //