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

[waves2Foam] Stokesfirst wave profile asymetrical against the still water level??

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By ngj

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 19, 2015, 21:23
Default Stokesfirst wave profile asymetrical against the still water level??
  #1
Member
 
Xiantao Zhang
Join Date: Nov 2014
Posts: 31
Rep Power: 11
zhxter is on a distinguished road
Dear foamers,
I am now trying to generate regular waves using the tutorial "waveFlume" of waves2Foam. And the result shows that the value of wave crest is larger than the wave trough. ( asymmetrical against the still water level). The relevant input files are shown as follows:

1. blockMesh
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.5                                   |
|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 1;

vertices        
(
    (  0   -1.035 0 )
    ( 13.5 -1.035 0 )
    (  0   -0.10  0 )
    ( 13.5 -0.10  0 )
    (  0    0.10  0 )
    ( 13.5  0.10  0 )
    (  0    0.265 0 )
    ( 13.5  0.265 0 )

    (  0   -1.035 0.1 )
    ( 13.5 -1.035 0.1 )
    (  0   -0.10  0.1 )
    ( 13.5 -0.10  0.1 )
    (  0    0.10  0.1 )
    ( 13.5  0.10  0.1 )
    (  0    0.265 0.1 )
    ( 13.5  0.265 0.1 )                  
);

blocks          
(
    hex (0 1 3 2 8 9 11 10)   (1000 46 1 ) simpleGrading (1 0.3333 1)
    hex (2 3 5 4 10 11 13 12) (1000 20 1) simpleGrading (1 1 1)
    hex (4 5 7 6 12 13 15 14) (1000 11 1) simpleGrading (1 2 1)
);

edges           
(
);

patches         
(
    patch inlet
    (
        (2 0 8 10)
        (4 2 10 12)
        (6 4 12 14)
    )
    wall bottom 
    (
        (0 1 9 8)
    )
    patch outlet
    (
        (1 3 11 9)
        (3 5 13 11)
        (5 7 15 13)
    )

    patch atmosphere 
    (
        (7 6 14 15)
    )
    
    empty frontBack
    (
        (8 9 11 10)
        (10 11 13 12)
        (12 13 15 14)
        (0 2 3 1)
        (2 4 5 3)
        (4 6 7 5)
    )
);

mergePatchPairs
(
);

// ************************************************************************* //
2. probeDefinitions
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.5                                   |
|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      loggingProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

surfaceElevationAnyName
{
    type waveGauge;

    pointDistribution lineDistribution;
    N 200;
    linestart (1.5  -0.5 0.05);
    lineend   (11.5 -0.5 0.05);
    add       ( 0 0.7 0);
    axis      y;
    stretch 1;
}


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

3. wavePropertiesinput
Code:
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  1.5                                   |
|   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      environmentalProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

seaLevel    0.00;

// A list of the relaxation zones in the simulation. The parameters are given
// in <name>Coeffs below.
relaxationNames (inlet outlet);

initializationName outlet;

inletCoeffs
{
    // Wave type to be used at boundary "inlet" and in relaxation zone "inlet"这里同时给出了boudary入口与relaxation zone入口的边界条件,合二为一
    waveType    stokesFirst;  
    
    // Ramp time of 2 s
    Tsoft       1.1;

    // Water depth at the boundary and in the relaxation zone
    depth       1.035;

    // Wave period
    period      1.1;

    // Phase shift in the wave
    phi         0.000000;

    // Wave number vector, k. 
    direction  (3.1415926 0.0 0.0);

    // Wave height
    height      0.16;
    
    // Specifications on the relaxation zone shape and relaxation scheme
    relaxationZone
    {
        relaxationScheme Spatial;
        relaxationShape  Rectangular;
        beachType        Empty;
    
        relaxType   INLET;
        startX      (0 -1.035 0);
        endX        (2 0.265  0.1);
        orientation      (1.0 0.0 0.0);
    }
};

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

    relaxationZone
    {
        relaxationScheme Spatial;
        relaxationShape  Rectangular;
        beachType        Empty;    

        relaxType   OUTLET;
        startX      (9.5 -1.035 0);
        endX        (13.5 0.265 0.1);
        orientation      (1.0 0.0 0.0);
    }
};



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

4. The simulated regular waves
The generated regular wave has the height of 0.18m. We can find from the figure that the wave crest is about 0.1m while the wave trough is about 0.6m. Could anyone help me with the problem?
Attached Images
File Type: jpg wave elevation.jpg (35.2 KB, 83 views)

Last edited by wyldckat; March 21, 2015 at 07:36. Reason: Added [CODE][/CODE]
zhxter is offline   Reply With Quote

Old   March 21, 2015, 04:03
Default
  #2
Member
 
Stefan
Join Date: Jan 2010
Location: Kiel, Germany
Posts: 81
Rep Power: 16
SD@TUB is on a distinguished road
hi,
You may enlarge your water depth and also vary mesh density. Set-up seems to be OK.
/Stefan
SD@TUB is offline   Reply With Quote

Old   March 23, 2015, 12:08
Default
  #3
ngj
Senior Member
 
Niels Gjoel Jacobsen
Join Date: Mar 2009
Location: Copenhagen, Denmark
Posts: 1,900
Rep Power: 37
ngj will become famous soon enoughngj will become famous soon enough
Good afternoon,

@Xiantao: First order wave theory is not applicable. Try inserting your values in one of the many diagrams of applicable wave theories and you will see what I mean.
(Edit: A quick test shows that with a wave height of 0.08 m and stokesSecond you get good results. For larger wave heights, you will need theories of higher order than second)

Kind regards,

Niels
fumiya likes this.
__________________
Please note that I do not use the Friend-feature, so do not be offended, if I do not accept a request.

Last edited by wyldckat; October 8, 2018 at 09:11. Reason: removed answer to another post that was on the main thread
ngj 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
water level inlt boundary condition trapan13 OpenFOAM Pre-Processing 3 May 22, 2018 09:16
Discrepancy between contour of alpha1 = 0.5 and water level from pressure probes. JamesRunnalls OpenFOAM Post-Processing 0 December 27, 2016 09:26
height of water level in two-phase flows? Michael Bo CFX 2 August 23, 2004 01:50
Terrible Mistake In Fluid Dynamics History Abhi Main CFD Forum 12 July 8, 2002 09:11
uptodate water distribution network fredius,magige,tanzanian,(e.a) Main CFD Forum 0 January 27, 2002 07:10


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