CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Community Contributions

[waves2Foam] Pressure wave?

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 10, 2016, 19:03
Default Pressure wave?
  #1
New Member
 
Skanner Darkly
Join Date: Jul 2016
Posts: 3
Rep Power: 9
samtheman23 is on a distinguished road
All,

I built a '2D' numerical wave tank (1 element wide) with a fixed, truncated cylinder in the middle (static mesh).

I know I am breaking protocol by not posting everything to make it reproducible but I was wondering if anyone had encountered a similar phenomenon.

Here is a video sped up 10x: https://youtu.be/o-_OqZrtPJk
When I initialize my domain the pressure (and velocity is 0) everywhere. But on the first time step you see these 'pressure waves' above the MWL emanate from the cylinder outward.

Here is my waveProperties:
Code:
seaLevel            0;

relaxationNames     ( inlet outlet );

initializationName  outlet;

inletCoeffs
{
    waveType            stokesFirst;
    Tsoft               20;
    depth               95;
    period              8;
    direction           ( 1 0 0 );
    phi                 0;
    height              4;
    waveNumber          (0.0628806 0 0);
    omega               0.785398;

    relaxationZone
    {
        relaxationScheme    Spatial;
        relaxationShape     Rectangular;
        beachType           Empty;
        relaxType           INLET;
        startX              ( -650 0 0 );
        endX                ( -620 0 0.1 );
        orientation         ( 1 0 0 );
    }
}

outletCoeffs
{
    waveType            potentialCurrent;
    U                   ( 0 0 0 );
    Tsoft               20;

    relaxationZone
    {
        relaxationScheme    Spatial;
        relaxationShape     Rectangular;
        beachType           Empty;
        relaxType           OUTLET;
        startX              ( 640 0 0 );
        endX                ( 650 0 0.1 );
        orientation         ( 1 0 0 );
    }
}
Here is my 0/p_rgh:
Code:
boundaryField
{
    cylinder
    {
        type            zeroGradient;
    }
    front
    {
        type            empty;
    }
    bottom
    {
        type            zeroGradient;
    }
    inlet
    {
        type            zeroGradient;
    }
    back
    {
        type            empty;
    }
    outlet
    {
        type            zeroGradient;
    }
    atmosphere
    {
        type            totalPressure;
        rho             none;
        psi             none;
        gamma           1;
        p0              uniform 0;
        value           uniform 0;
    }
}
Here is my 0/U:
Code:
dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    cylinder
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
    front
    {
        type            empty;
    }
    bottom
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
    inlet
    {
        type            waveVelocity;
        refValue        uniform (0 0 0);
        refGradient     uniform (0 0 0);
        valueFraction   uniform 1;
        value           uniform (0 0 0);
    }
    back
    {
        type            empty;
    }
    outlet
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }
    atmosphere
    {
        type            pressureInletOutletVelocity;
        value           uniform (0 0 0);
    }
}
My only guess is that there is some flux condition on the inlet/outlet. I also know that a common fix is an AR of 1 at the waterline. Or maybe going to StokesSecond? Any other ideas?
samtheman23 is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pressure Wave Speed prb43 Main CFD Forum 4 August 18, 2017 09:53
interFoam (HELYX-OS) pressure boundary conditions SFr OpenFOAM Running, Solving & CFD 8 June 23, 2016 16:36
CFX Solver stopped with error when requested for backup during solver running Mfaizan CFX 40 May 13, 2016 06:50
Pressure wave pattern over body in steadystate? Chebeba CFX 1 March 16, 2008 02:00
Neumann pressure BC and velocity field Antech Main CFD Forum 0 April 25, 2006 02:15


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