|
[Sponsors] |
August 31, 2019, 17:41 |
timeVaryingFixedPressure??
|
#1 |
New Member
Theja
Join Date: Dec 2018
Location: Germany
Posts: 13
Rep Power: 7 |
Hi!
I have a case which I have to apply time varying fixed pressure condition instead of traction. So i would like to know what is the type of boundary condition to be applied for that case. As from the tutorial I can see right { type timeVaryingSolidTraction; // I want this in terms of Pressure outOfBounds clamp; nonLinear off; fileName "$FOAM_CASE/constant/timeVsRightTraction"; } with regards, Theja |
|
September 2, 2019, 07:14 |
|
#2 |
Super Moderator
Philip Cardiff
Join Date: Mar 2009
Location: Dublin, Ireland
Posts: 1,093
Rep Power: 34 |
Hi Theja,
The timeVaryingSolidTraction boundary condition only allows the traction to vary in time, not the pressure. You could create a new boundary condition with the required functionality or alternatively you can use solidTraction in solids4foam, which allows both traction and pressure to be time-varying e.g. Code:
yourPatchName { type solidTraction; pressureSeries { fileName "$FOAM_CASE/costant/timeVsPressure"; outOfBounds clamp; } traction uniform (0 0 0); value uniform (0 0 0); } Code:
yourPatchName { type solidTraction; pressure uniform 0; tractionSeries { fileName "$FOAM_CASE/costant/timeVsTraction"; outOfBounds clamp; } value uniform (0 0 0); } Code:
yourPatchName { type solidTraction; pressureSeries { fileName "$FOAM_CASE/costant/timeVsPressure"; outOfBounds clamp; } tractionSeries { fileName "$FOAM_CASE/costant/timeVsTraction"; outOfBounds clamp; } value uniform (0 0 0); } Philip |
|
|
|