View Issue Details

IDProjectCategoryView StatusLast Update
0001163OpenFOAMBugpublic2014-02-19 09:28
Reporteruser612Assigned Touser2 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
PlatformLinuxOSUbuntuOS Version10.04
Summary0001163: No effect of fvOption scalarSemiImplicitSource with chtMultiRegionSimpleFoam
DescriptionThe fvOption scalarSemiImplicitSource doesn't have any effects, when it is used in chtMultiRegionSimpleFoam.

In OpenFOAM 2.2.2 it worked perfectly. I have learned that the solid part of the solver has changed from:

    - fvm::laplacian(betav*alpha, h, "laplacian(alpha,h)")
    + fvOptions(rho, h)

to

      thermo.isotropic()
      ? -fvm::laplacian(betav*thermo.alpha(), h, "laplacian(alpha,h)")
      : -fvm::laplacian(betav*tAnialpha(), h, "laplacian(alpha,h)")
    ==
      fvOptions(rho, h)

That means the definition of scalarSemiImplicitSource would change from

    injectionRateSuSp
    {
        h (-1 0);
    }

to

    injectionRateSuSp
    {
        h (1 0);
    }

But the source has no effect at all anymore.
Steps To ReproduceRun the attached case in OpenFOAM 2.3.0.
TagsNo tags attached.

Activities

user612

2014-02-18 17:50

 

user2

2014-02-19 09:28

  ~0002857

Thanks for the report - fixed by commit a3382af

Issue History

Date Modified Username Field Change
2014-02-18 17:50 user612 New Issue
2014-02-18 17:50 user612 File Added: bugScalarSemiImplicitSource.tar.gz
2014-02-19 09:28 user2 Note Added: 0002857
2014-02-19 09:28 user2 Status new => resolved
2014-02-19 09:28 user2 Fixed in Version => 2.3.x
2014-02-19 09:28 user2 Resolution open => fixed
2014-02-19 09:28 user2 Assigned To => user2