This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/solidMechanics/elasticOrthoNonLinULSolidFoam/pressureRotatePlate/0/DU

91 lines
2.5 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
2015-05-17 13:55:59 +00:00
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
outside
{
// type fixedDisplacement;
// value uniform ( 0 0 0 );
// type fixedRotation;
// rotationAngle 1;
// rotationAxis (0 0 1);
// rotationOrigin (0 0 0);
2013-12-11 16:09:41 +00:00
// value uniform ( 0 0 0 );
type timeVaryingFixedRotation;
rotationAxis (0 0 1);
rotationOrigin (0 0 0);
fileName "$FOAM_CASE/constant/timeVsOutsideAngle";
outOfBounds clamp;
2013-12-11 16:09:41 +00:00
value uniform ( 0 0 0 );
// type solidTractionOrtho;
// field U;
// traction uniform ( 0 0 0 );
// pressure uniform 0;
// value uniform (0 0 0);
}
inside
{
// type timeVaryingFixedRotation;
// rotationAngle 1;
// rotationAxis (0 0 1);
// rotationOrigin (0 0 0);
// fileName "$FOAM_CASE/constant/timeVsInsideAngle";
// outOfBounds clamp;
2013-12-11 16:09:41 +00:00
// value uniform ( 0 0 0 );
// type fixedRotation;
// rotationAngle 1;
// rotationAxis (0 0 1);
// rotationOrigin (0 0 0);
2013-12-11 16:09:41 +00:00
// value uniform ( 0 0 0 );
type solidTraction;
traction uniform ( 0 0 0 );
pressure uniform 1e6;
nonLinear updatedLagrangian;
orthotropic yes;
value uniform (0 0 0);
}
front
{
type empty;
// type solidTractionOrtho;
// field U;
// traction uniform ( 0 0 0 );
// pressure uniform 0;
// value uniform (0 0 0);
}
back
{
type empty;
}
}
2016-06-21 12:50:08 +00:00
// ************************************************************************* //