Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "Smagorinsky.H"
00027 #include <OpenFOAM/addToRunTimeSelectionTable.H>
00028
00029
00030
00031 namespace Foam
00032 {
00033 namespace incompressible
00034 {
00035 namespace LESModels
00036 {
00037
00038
00039
00040 defineTypeNameAndDebug(Smagorinsky, 0);
00041 addToRunTimeSelectionTable(LESModel, Smagorinsky, dictionary);
00042
00043
00044
00045 void Smagorinsky::updateSubGridScaleFields(const volTensorField& gradU)
00046 {
00047 nuSgs_ = ck_*delta()*sqrt(k(gradU));
00048 nuSgs_.correctBoundaryConditions();
00049 }
00050
00051
00052
00053
00054 Smagorinsky::Smagorinsky
00055 (
00056 const volVectorField& U,
00057 const surfaceScalarField& phi,
00058 transportModel& transport
00059 )
00060 :
00061 LESModel(typeName, U, phi, transport),
00062 GenEddyVisc(U, phi, transport),
00063
00064 ck_
00065 (
00066 dimensioned<scalar>::lookupOrAddToDict
00067 (
00068 "ck",
00069 coeffDict_,
00070 0.094
00071 )
00072 )
00073 {
00074 updateSubGridScaleFields(fvc::grad(U));
00075
00076 printCoeffs();
00077 }
00078
00079
00080
00081
00082 void Smagorinsky::correct(const tmp<volTensorField>& gradU)
00083 {
00084 GenEddyVisc::correct(gradU);
00085 updateSubGridScaleFields(gradU());
00086 }
00087
00088
00089 bool Smagorinsky::read()
00090 {
00091 if (GenEddyVisc::read())
00092 {
00093 ck_.readIfPresent(coeffDict());
00094
00095 return true;
00096 }
00097 else
00098 {
00099 return false;
00100 }
00101 }
00102
00103
00104
00105
00106 }
00107 }
00108 }
00109
00110