Difference between revisions of "ContribDieselFoamInjectorProperties"

From OpenFOAMWiki
Line 21: Line 21:
 
         unitInjectorCoeffs
 
         unitInjectorCoeffs
 
         {
 
         {
 +
            position        (0.0 1.0 0.0);
 +
            direction        (0.0 -1.0 0.0);
 +
            diameter        2.0e-4;
 +
            Cd              0.86;
 +
            mass            26.0e-6;
 +
            nParcels        10000;
 +
            X
 +
            (
 +
                1.0
 +
            );
 +
            massFlowRateProfile
 +
            (
 +
                (0.0    1.0)
 +
                (1.0e-3  1.0)
 +
            );
 +
            temperatureProfile
 +
            (
 +
                (0.0      350.0)
 +
                (1.0e-3  350.0)
 +
            );
 
         }
 
         }
  

Revision as of 12:27, 10 December 2008

Back

injectorProperties

FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      injectorProperties;
}

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

(
    {
        injectorType          unitInjector;

// injectorType optional:
        unitInjectorCoeffs
        {
            position         (0.0 1.0 0.0);
            direction        (0.0 -1.0 0.0);
            diameter         2.0e-4;
            Cd               0.86;
            mass             26.0e-6;
            nParcels         10000;
            X
            (
                1.0
            );
            massFlowRateProfile
            (
                (0.0     1.0)
                (1.0e-3  1.0)
            );
            temperatureProfile
            (
                (0.0      350.0)
                (1.0e-3   350.0)
            );
        }
        commonRailInjectorCoeffs
        {
        }
        definedInjectorCoeffs
        {
        }
        swirlInjectorCoeffs
        {
        }
        multiHoleInjectorCoeffs
        {
        }
    } 
)