Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • openfoam openfoam
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 426
    • Issues 426
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 8
    • Merge requests 8
  • Deployments
    • Deployments
    • Releases
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Development
  • openfoamopenfoam
  • Merge requests
  • !546

ENH: new tabulated anisotropic solid transport model

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Kutalmış Berçin requested to merge feature-anisotropic-solid-material-conductivity into develop May 31, 2022
  • Overview 0
  • Commits 4
  • Changes 606

EP1878

Summary

This feature allows users to specify tabulated anisotropic thermal conductivity properties for solid thermodynamics with an optional coordinate system specification.

The transport model is called tabulatedAnIso, and as an example, the model is specified in thermophysicalProperties file as follows:

thermoType
{
    type            heSolidThermo;
    mixture         pureMixture;
    transport       tabulatedAnIso;
    thermo          hTabulated;
    equationOfState icoPolynomial;
    specie          specie;
    energy          sensibleEnthalpy;
}

mixture
{
    specie
    {
        molWeight   50;
    }
    transport
    {
        kappa       table
        (
            // T   kappa
            ( 200  (80 80 80) )
            ( 400  (80 80 80) )
        );

        // kappa    <Function1<scalar>>;
    }
    thermodynamics
    {
        Hf      0;
        Cp
        (
            ( 200 450)
            ( 400 450)
        );
        Sf      0;
    }
    equationOfState
    {
        rhoCoeffs<8>     (8000 0 0 0 0 0 0 0);
    }
}

coordinateSystem
{
    type        cylindrical;
    origin      (0 0 0);
    rotation
    {
        type    cylindrical;
        axis    (1 0 0);
    }
}

Tests

  • linux64ClangDPInt32Opt
  • linux64GccDPInt32Opt
  • linux64GccSPDPInt64Debug
  • Alltest
Edited Jun 08, 2022 by Kutalmış Berçin
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: feature-anisotropic-solid-material-conductivity