Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / solidMechanics / elasticNonLinULSolidFoam / timeVaryingPlateHoleNonLinUL / constant / rheologyProperties
blob705f47de9d6918094cc683fabb4c8f9e609ae0ed
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       dictionary;
13     location    "constant";
14     object      rheologyProperties;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 planeStress     yes;
20  rheology
21  {
22      type            linearElastic;
23      rho             rho [1 -3 0 0 0 0 0] 7854;
24      E               E [1 -1 -2 0 0 0 0] 2e+11;
25      nu              nu [0 0 0 0 0 0 0] 0.3;
26  }
29 rheology
31     type                    multiMaterial;
33     laws
34     (
35         matZero
36         {
37             type            linearElastic;
38             rho             rho [1 -3 0 0 0 0 0] 7854;
39             E               E [1 -1 -2 0 0 0 0] 1.5e+11;
40             nu              nu [0 0 0 0 0 0 0] 0.3;
41         }
43         matOne
44         {
45             type            linearElastic;
46             rho             rho [1 -3 0 0 0 0 0] 7854;
47             E               E [1 -1 -2 0 0 0 0] 2.5e+11;
48             nu              nu [0 0 0 0 0 0 0] 0.3;
49         }
51         matTwo
52         {
53             type            linearElastic;
54             rho             rho [1 -3 0 0 0 0 0] 7854;
55             E               E [1 -1 -2 0 0 0 0] 2e+11;
56             nu              nu [0 0 0 0 0 0 0] 0.3;
57         }
58     );
62 // ************************************************************************* //