Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / solidMechanics / elasticAcpSolidFoam / crackingPlateShearCompress / 0 / org / U
blob81b47f2175eceb2cfa91173a66691904c8ad1fcc
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     bottom
25     {
26         type            fixedDisplacement;
27         value           uniform (0 0 0);
28     }
30     top
31     {
32         type           timeVaryingFixedDisplacement;
33         fileName       "$FOAM_CASE/constant/timeVsTopDisp";
34         outOfBounds    clamp;
35         value          uniform (0 0 0);
36     }
38     tractionFree
39     {
40         type            solidTraction;
41         traction        uniform (0 0 0);
42         pressure        uniform 0;
43         value           uniform (0 0 0);
44     }
46     notch
47     {
48         type            solidTraction;
49         traction        uniform (0 0 0);
50         pressure        uniform 0;
51         value           uniform (0 0 0);
52     }
54     front
55     {
56         type empty;
57     }
59     back
60     {
61         type empty;
62     }
64     crack
65     {
66       type                       solidCohesive;
67       relaxationFactor           0.001;
68       contact                    yes;
69       penaltyScale               1;
70       frictionCoeff              0.01;
71       explicitSeparationDistance no;
72       value                      uniform ( 0 0 0 );
73     }
76 // ************************************************************************* //