Skip to content
Snippets Groups Projects
createFields.H 822 B
Newer Older
        "T",
        runTime.timeName(),
        mesh,
        IOobject::MUST_READ,
        IOobject::AUTO_WRITE
    ),
    mesh
);
        "U",
        runTime.timeName(),
        mesh,
        IOobject::MUST_READ,
        IOobject::AUTO_WRITE
    ),
    mesh
);
Info<< "Reading transportProperties\n" << endl;
        "transportProperties",
        runTime.constant(),
        mesh,
        IOobject::MUST_READ_IF_MODIFIED,
        IOobject::NO_WRITE
    )
);
Info<< "Reading diffusivity DT\n" << endl;
dimensionedScalar DT
(
    "DT",
    dimArea/dimTime,
    transportProperties
);