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/elasticIncrSolidFoam/slidingFrictionBallIncr/0/DU

131 lines
3.4 KiB
Text
Raw Normal View History

2013-12-11 16:09:41 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
2012-09-11 15:42:55 +00:00
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 3.0 |
| \\ / A nd | Web: http://www.extend-project.de |
2012-09-11 15:42:55 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object DU;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
topBrickUp
{
type timeVaryingFixedDisplacement;
outOfBounds clamp;
fileName "$FOAM_CASE/constant/timeVsTopDisp";
value uniform (0 0 0);
}
bottomBrickUp
2012-09-11 15:42:55 +00:00
{
type solidContact;
master yes;
contactActive yes;
rigidMaster no;
shadowPatch topBrickDown;
interpolationMethod ggi;
//interpolationMethod patchToPatch;
projectionAlgo visible;
projectionDir contactSphere;
correctionFrequency 10;
normalContactModel standardPenalty;;
standardPenaltyNormalModelDict
{
penaltyScale 1;
relaxationFactor 0.01;
infoFrequency 10;
limitPenetration no;
penetrationLimit -0.03;
limitPressure no;
pressureLimit 1e9;
correctMissedVertices yes;
distanceMethod point;
oscillationCorrection yes;
smoothingSteps 1;
}
frictionContactModel standardPenalty;
standardPenaltyFrictionModelDict
{
penaltyScale 0.5;
relaxationFactor 0.1;
infoFrequency 10;
oscillationCorrection yes;
smoothingSteps 1;
frictionLaw coulomb;
frictionLawDict
{
frictionCoeff 0.3;
}
}
value uniform (0 0 0);
2012-09-11 15:42:55 +00:00
}
topBrickDown
2012-09-11 15:42:55 +00:00
{
type solidContact;
master no;
contactActive yes;
shadowPatch bottomBrickUp;
value uniform (0 0 0);
2012-09-11 15:42:55 +00:00
}
bottomBrickDown
2012-09-11 15:42:55 +00:00
{
type fixedDisplacement;
2012-09-11 15:42:55 +00:00
value uniform (0 0 0);
}
bottomBrickLeft
{
type solidTraction;
traction uniform ( 0 0 0 );
pressure uniform 0;
value uniform (0 0 0);
}
bottomBrickRight
{
type solidTraction;
traction uniform ( 0 0 0 );
pressure uniform 0;
value uniform (0 0 0);
}
topBrickLeft
{
type solidTraction;
traction uniform ( 0 0 0 );
pressure uniform 0;
value uniform (0 0 0);
}
topBrickRight
{
type solidTraction;
traction uniform ( 0 0 0 );
2012-09-11 15:42:55 +00:00
pressure uniform 0;
value uniform (0 0 0);
}
back
{
type empty;
}
front
{
type empty;
}
}
// ************************************************************************* //