CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   using rotatingWallVelocity in openfoam (https://www.cfd-online.com/Forums/openfoam-solving/122731-using-rotatingwallvelocity-openfoam.html)

bigboss.abhishek August 27, 2013 00:41

using rotatingWallVelocity in openfoam
 
i have made a case using rotatingWallVelocity it is running wellbut after some time i wish to stop the rotation.My boundary conditions are as follows.

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions [0 1 -1 0 0 0 0];

internalField uniform (0 0 0);

boundaryField
{
wall
{
type fixedValue;
value uniform (0 0 0);
}
inner_rotating_wall
{
type rotatingWallVelocity;
origin (0 0 0);
axis (0 0 1);
omega 400;
}
outlet1
{
type fixedValue;
value uniform (0 0 0);
}

inlet1
{
type fluxCorrectedVelocity;
value uniform (0 0 0);
}
inlet2
{
type fluxCorrectedVelocity;
value uniform (0 0 0);
}


defaultFaces
{
type empty;
}
}


// ************************************************** *********************** //

I am not able to stop the rotation since in the later time directories my boundary automatically changes to

inner_rotating_wall
{
type calculated;
value uniform (0 0 0);
}

Will changing the 0 time directory boundary condition will do the job ????



All times are GMT -4. The time now is 16:24.