View Issue Details

IDProjectCategoryView StatusLast Update
0001412OpenFOAMBugpublic2015-01-01 16:22
ReporterGRAUPS Assigned Tohenry  
PrioritylowSeveritytextReproducibilityN/A
Status resolvedResolutionfixed 
PlatformUnixOSOtherOS Version(please specify)
Summary0001412: explicitPorositySource header file example appears to be out of date
DescriptionexplicitPorositySource.H file shows this as an example input for porous zones...

explicitPorositySourceCoeffs
{
    type DarcyForchheimer;

    DarcyForchheimerCoeffs
    {
        d d [0 -2 0 0 0 0 0] (5e7 -1000 -1000);
        f f [0 -1 0 0 0 0 0] (0 0 0);

        coordinateSystem
        {
            e1 (0.70710678 0.70710678 0);
            e2 (0 0 1);
        }
    }
}

This does not run when placed in the fvOptions file... should be changed to something like this...

explicitPorositySourceCoeffs
{
    type DarcyForchheimer;

    DarcyForchheimerCoeffs
    {
        d d [0 -2 0 0 0 0 0] (1e5 -1000 -1000);
        f f [0 -1 0 0 0 0 0] (0 0 0);

        coordinateSystem
        {
            type cartesian;
            origin (0 0 0);
            coordinateRotation
            {
                type axesRotation;
                e1 (1 0 0);
                e2 (0 1 0);
            }
        }
    }
}
TagsNo tags attached.

Activities

henry

2015-01-01 16:22

manager   ~0003454

Resolved by commit be428aacd7f1a242f2fe65a6cde8431041b9aa4f

Issue History

Date Modified Username Field Change
2014-10-13 20:49 GRAUPS New Issue
2015-01-01 16:22 henry Note Added: 0003454
2015-01-01 16:22 henry Status new => resolved
2015-01-01 16:22 henry Resolution open => fixed
2015-01-01 16:22 henry Assigned To => henry