View Issue Details

IDProjectCategoryView StatusLast Update
0003342OpenFOAMContributionpublic2019-09-25 13:34
Reporterprojectionist Assigned Tohenry  
PrioritynoneSeveritytrivialReproducibilityalways
Status resolvedResolutionfixed 
Fixed in Versiondev 
Summary0003342: A moderately annotated mirrorMeshDict for $FOAM_ETC/caseDicts/annotated
DescriptionThe existing mirrorMeshDict in $FOAM_ETC/caseDicts/annotated only demonstrates one out of three methods to specify the mirror plane.

While it was trivial to find the other means by virtue of OpenFOAM's banana-test, users may probably expect to find all available options in the annotated dictionaries.

The attached mirrorMeshDict is extended by the two other means of defining the mirror-plane.
TagsNo tags attached.

Activities

projectionist

2019-09-03 16:31

reporter  

mirrorMeshDict (1,012 bytes)   
/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7  
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      mirrorMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

planeType           pointAndNormal;

pointAndNormalDict
{
    basePoint       (0 0 0);
    normalVector    (0 1 0);
}

//  plane equation: ax + by + cz + d = 0
planeEquationDict
{
    a   0;
    b   1;
    c   0;
    d   0;
}

embeddedPointsDict
{
    point1  (0 0 0);
    point2  (1 0 0);
    point3  (0 0 1);
}

planeTolerance      1e-5;

// ************************************************************************* //
mirrorMeshDict (1,012 bytes)   

henry

2019-09-12 22:30

manager   ~0010740

Pending signing of the contributor agreement

henry

2019-09-25 13:34

manager   ~0010773

Resolved by commit 46e8d2244502de60c192a0157c192aa8a1cdd843

Issue History

Date Modified Username Field Change
2019-09-03 16:31 projectionist New Issue
2019-09-03 16:31 projectionist File Added: mirrorMeshDict
2019-09-12 22:30 henry Assigned To => henry
2019-09-12 22:30 henry Status new => closed
2019-09-12 22:30 henry Resolution open => suspended
2019-09-12 22:30 henry Note Added: 0010740
2019-09-25 13:34 henry Status closed => resolved
2019-09-25 13:34 henry Resolution suspended => fixed
2019-09-25 13:34 henry Fixed in Version => dev
2019-09-25 13:34 henry Note Added: 0010773