/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1912                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      dynamicMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solver volumetricBSplinesMotionSolver;

volumetricBSplinesMotionSolverCoeffs
{
    duct
    {
        type    cartesian;
        nCPsU   6;
        nCPsV   4;
        nCPsW   3;
        degreeU 3;
        degreeV 3;
        degreeW 2;

        controlPointsDefinition axisAligned;
        lowerCpBounds           ( 0.1 -0.25  -0.1);
        upperCpBounds           ( 0.9  0.25   1.1);

        confineX1movement false;
        confineX2movement false;
        confineX3movement true;
        confineBoundaryControlPoints true;

        boundUMinCPs ( (true true true) (true true true) );
        boundUMaxCPs ( (true true true) (true true true) );
        boundVMinCPs ( (true true true) );
        boundVMaxCPs ( (true true true) );
    }
}

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