Removed unnecessary return statement
[foam-extend-3.2.git] / tutorials / solidMechanics / elasticAcpSolidFoam / crackingBiMatDcbLinear / 0 / org / U
blob21c35c3580f982e02dc94f2b0b1277cb1ba25e3c
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 1 0 0 0 0 0];
20 internalField   uniform (0 0 0);
22 boundaryField
24     bottomLoading
25     {
26         type           timeVaryingFixedDisplacement;
27         fileName       "$FOAM_CASE/constant/timeVsBottomDisp";
28         outOfBounds    clamp;
29         value          uniform (0 0 0);
30     }
32     topLoading
33     {
34         type           timeVaryingFixedDisplacement;
35         fileName       "$FOAM_CASE/constant/timeVsTopDisp";
36         outOfBounds    clamp;
37         value          uniform (0 0 0);
38     }
40     tractionFree
41     {
42         type            solidTraction;
43         traction        uniform (0 0 0);
44         pressure        uniform 0;
45         value           uniform (0 0 0);
46     }
48     notch
49     {
50         type            solidTraction;
51         traction        uniform (0 0 0);
52         pressure        uniform 0;
53         value           uniform (0 0 0);
54     }
56     front
57     {
58         type empty;
59     }
61     back
62     {
63         type empty;
64     }
66     crack
67     {
68       type                       solidCohesive;
69       relaxationFactor           0.01;
70       contact                    no;
71       penaltyScale               1;
72       frictionCoeff              0.1;
73       explicitSeparationDistance no;
74       value                      uniform ( 0 0 0 );
75     }
78 // ************************************************************************* //