diff --git a/applications/solvers/financial/financialFoam/createFields.H b/applications/solvers/financial/financialFoam/createFields.H index dc0da4d2a..d9a8769d7 100644 --- a/applications/solvers/financial/financialFoam/createFields.H +++ b/applications/solvers/financial/financialFoam/createFields.H @@ -1,95 +1,99 @@ - Info<< "Reading financial properties\n" << endl; +Info<< "Reading financial properties\n" << endl; - IOdictionary financialProperties +IOdictionary financialProperties +( + IOobject ( - IOobject - ( - "financialProperties", - runTime.constant(), - mesh, - IOobject::MUST_READ_IF_MODIFIED, - IOobject::NO_WRITE - ) - ); + "financialProperties", + runTime.constant(), + mesh, + IOobject::MUST_READ_IF_MODIFIED, + IOobject::NO_WRITE + ) +); - dimensionedScalar strike +dimensionedScalar strike +( + "strike", + dimLength, + financialProperties.lookup("strike") +); + +dimensionedScalar r +( + "r", + dimless/dimTime, + financialProperties.lookup("r") +); + +dimensionedScalar sigma +( + "sigma", + dimensionSet(0, 0, -0.5, 0, 0), + financialProperties.lookup("sigma") +); + +dimensionedScalar sigmaSqr = sqr(sigma); + + +Info<< nl << "Reading field V" << endl; + +volScalarField V +( + IOobject ( - financialProperties.lookup("strike") - ); + "V", + runTime.timeName(), + mesh, + IOobject::MUST_READ, + IOobject::AUTO_WRITE + ), + mesh +); - dimensionedScalar r + +surfaceVectorField Pf +( + IOobject ( - financialProperties.lookup("r") - ); + "Pf", + runTime.timeName(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh.Cf() +); - dimensionedScalar sigma + +volVectorField P +( + IOobject ( - financialProperties.lookup("sigma") - ); + "P", + runTime.timeName(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh.C() +); - dimensionedScalar sigmaSqr = sqr(sigma); +V == max +( + P.component(Foam::vector::X) - strike, + dimensionedScalar("0", V.dimensions(), 0.0) +); - - Info<< nl << "Reading field V" << endl; - - volScalarField V +volScalarField delta +( + IOobject ( - IOobject - ( - "V", - runTime.timeName(), - mesh, - IOobject::MUST_READ, - IOobject::AUTO_WRITE - ), - mesh - ); - - - surfaceVectorField Pf - ( - IOobject - ( - "Pf", - runTime.timeName(), - mesh, - IOobject::NO_READ, - IOobject::NO_WRITE - ), - mesh.Cf() - ); - - - volVectorField P - ( - IOobject - ( - "P", - runTime.timeName(), - mesh, - IOobject::NO_READ, - IOobject::NO_WRITE - ), - mesh.C() - ); - -//- V == max(strike - P.x(), dimensionedScalar("0", V.dimensions(), 0.0)); - V == max - ( - P.component(Foam::vector::X) - strike, - dimensionedScalar("0", V.dimensions(), 0.0) - ); - - - volScalarField delta - ( - IOobject - ( - "delta", - runTime.timeName(), - mesh, - IOobject::NO_READ, - IOobject::AUTO_WRITE - ), - fvc::grad(V)().component(Foam::vector::X) - ); + "delta", + runTime.timeName(), + mesh, + IOobject::NO_READ, + IOobject::AUTO_WRITE + ), + fvc::grad(V)().component(Foam::vector::X) +); diff --git a/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/readTransportProperties.H b/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/readTransportProperties.H index 82d101d8c..f3809377b 100644 --- a/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/readTransportProperties.H +++ b/applications/solvers/heatTransfer/buoyantBoussinesqSimpleFoam/readTransportProperties.H @@ -1,13 +1,18 @@ - singlePhaseTransportModel laminarTransport(U, phi); +singlePhaseTransportModel laminarTransport(U, phi); - // Thermal expansion coefficient [1/K] - dimensionedScalar beta(laminarTransport.lookup("beta")); +// Thermal expansion coefficient [1/K] +dimensionedScalar beta +( + "beta", + dimless/dimTemperature, + laminarTransport.lookup("beta") +); - // Reference temperature [K] - dimensionedScalar TRef(laminarTransport.lookup("TRef")); +// Reference temperature [K] +dimensionedScalar TRef("TRef", dimTemperature, laminarTransport.lookup("TRef")); - // Laminar Prandtl number - dimensionedScalar Pr(laminarTransport.lookup("Pr")); +// Laminar Prandtl number +dimensionedScalar Pr("Pr", dimless, laminarTransport.lookup("Pr")); - // Turbulent Prandtl number - dimensionedScalar Prt(laminarTransport.lookup("Prt")); +// Turbulent Prandtl number +dimensionedScalar Prt("Prt", dimless, laminarTransport.lookup("Prt")); diff --git a/applications/solvers/incompressible/boundaryFoam/createFields.H b/applications/solvers/incompressible/boundaryFoam/createFields.H index f170e212a..0554d9268 100644 --- a/applications/solvers/incompressible/boundaryFoam/createFields.H +++ b/applications/solvers/incompressible/boundaryFoam/createFields.H @@ -1,49 +1,49 @@ - Info<< "Reading field U\n" << endl; - volVectorField U +Info<< "Reading field U\n" << endl; +volVectorField U +( + IOobject ( - IOobject - ( - "U", - runTime.timeName(), - mesh, - IOobject::MUST_READ, - IOobject::AUTO_WRITE - ), - mesh - ); - - - Info<< "Creating face flux\n" << endl; - surfaceScalarField phi - ( - IOobject - ( - "phi", - runTime.timeName(), - mesh, - IOobject::NO_READ, - IOobject::NO_WRITE - ), + "U", + runTime.timeName(), mesh, - dimensionedScalar("zero", mesh.Sf().dimensions()*U.dimensions(), 0.0) - ); + IOobject::MUST_READ, + IOobject::AUTO_WRITE + ), + mesh +); - singlePhaseTransportModel laminarTransport(U, phi); - - autoPtr turbulence +Info<< "Creating face flux\n" << endl; +surfaceScalarField phi +( + IOobject ( - incompressible::RASModel::New(U, phi, laminarTransport) - ); + "phi", + runTime.timeName(), + mesh, + IOobject::NO_READ, + IOobject::NO_WRITE + ), + mesh, + dimensionedScalar("zero", mesh.Sf().dimensions()*U.dimensions(), 0.0) +); - dimensionedVector Ubar(laminarTransport.lookup("Ubar")); - vector flowDirection = (Ubar/mag(Ubar)).value(); - tensor flowMask = sqr(flowDirection); +singlePhaseTransportModel laminarTransport(U, phi); - dimensionedVector gradP - ( - "gradP", - dimensionSet(0, 1, -2, 0, 0), - vector::zero - ); +autoPtr turbulence +( + incompressible::RASModel::New(U, phi, laminarTransport) +); + +dimensionedVector Ubar("Ubar", dimVelocity, laminarTransport.lookup("Ubar")); + +vector flowDirection = (Ubar/mag(Ubar)).value(); +tensor flowMask = sqr(flowDirection); + +dimensionedVector gradP +( + "gradP", + dimensionSet(0, 1, -2, 0, 0), + vector::zero +); diff --git a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/createFields.H b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/createFields.H index 8c954b6a6..56b934d58 100644 --- a/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/createFields.H +++ b/applications/solvers/lagrangian/icoUncoupledKinematicParcelFoam/createFields.H @@ -18,6 +18,8 @@ dimensionedScalar rhoInfValue ( + "rhoInf", + dimDensity, laminarTransport.lookup("rhoInf") ); diff --git a/applications/solvers/multiphase/cavitatingFoam/readThermodynamicProperties.H b/applications/solvers/multiphase/cavitatingFoam/readThermodynamicProperties.H index 3740f1056..e4e0f7b8a 100644 --- a/applications/solvers/multiphase/cavitatingFoam/readThermodynamicProperties.H +++ b/applications/solvers/multiphase/cavitatingFoam/readThermodynamicProperties.H @@ -1,27 +1,52 @@ - Info<< "Reading thermodynamicProperties\n" << endl; +Info<< "Reading thermodynamicProperties\n" << endl; - IOdictionary thermodynamicProperties +IOdictionary thermodynamicProperties +( + IOobject ( - IOobject - ( - "thermodynamicProperties", - runTime.constant(), - mesh, - IOobject::MUST_READ_IF_MODIFIED, - IOobject::NO_WRITE - ) - ); + "thermodynamicProperties", + runTime.constant(), + mesh, + IOobject::MUST_READ_IF_MODIFIED, + IOobject::NO_WRITE + ) +); - dimensionedScalar psil(thermodynamicProperties.lookup("psil")); +dimensionedScalar psil +( + "psil", + dimCompressibility, + thermodynamicProperties.lookup("psil") +); - dimensionedScalar rholSat(thermodynamicProperties.lookup("rholSat")); +dimensionedScalar rholSat +( + "rholSat", + dimDensity, + thermodynamicProperties.lookup("rholSat") +); - dimensionedScalar psiv(thermodynamicProperties.lookup("psiv")); +dimensionedScalar psiv +( + "psiv", + dimCompressibility, + thermodynamicProperties.lookup("psiv") +); - dimensionedScalar pSat(thermodynamicProperties.lookup("pSat")); +dimensionedScalar pSat +( + "pSat", + dimPressure, + thermodynamicProperties.lookup("pSat") +); - dimensionedScalar rhovSat("rhovSat", psiv*pSat); +dimensionedScalar rhovSat("rhovSat", psiv*pSat); - dimensionedScalar rhol0("rhol0", rholSat - pSat*psil); +dimensionedScalar rhol0("rhol0", rholSat - pSat*psil); - dimensionedScalar rhoMin(thermodynamicProperties.lookup("rhoMin")); +dimensionedScalar rhoMin +( + "rhoMin", + dimDensity, + thermodynamicProperties.lookup("rhoMin") +); diff --git a/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H b/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H index ce0faac57..4110b86e7 100644 --- a/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H +++ b/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H @@ -46,7 +46,7 @@ volScalarField rho mixture.rho() ); -dimensionedScalar pMin(mixture.lookup("pMin")); +dimensionedScalar pMin("pMin", dimPressure, mixture.lookup("pMin")); mesh.setFluxRequired(p_rgh.name()); diff --git a/applications/solvers/multiphase/interFoam/interMixingFoam/incompressibleThreePhaseMixture/incompressibleThreePhaseMixture.C b/applications/solvers/multiphase/interFoam/interMixingFoam/incompressibleThreePhaseMixture/incompressibleThreePhaseMixture.C index 0894f3c6f..352c85694 100644 --- a/applications/solvers/multiphase/interFoam/interMixingFoam/incompressibleThreePhaseMixture/incompressibleThreePhaseMixture.C +++ b/applications/solvers/multiphase/interFoam/interMixingFoam/incompressibleThreePhaseMixture/incompressibleThreePhaseMixture.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -152,9 +152,9 @@ Foam::incompressibleThreePhaseMixture::incompressibleThreePhaseMixture ) ), - rho1_(nuModel1_->viscosityProperties().lookup("rho")), - rho2_(nuModel2_->viscosityProperties().lookup("rho")), - rho3_(nuModel3_->viscosityProperties().lookup("rho")) + rho1_("rho", dimDensity, nuModel1_->viscosityProperties().lookup("rho")), + rho2_("rho", dimDensity, nuModel2_->viscosityProperties().lookup("rho")), + rho3_("rho", dimDensity, nuModel3_->viscosityProperties().lookup("rho")) { alpha3_ == 1.0 - alpha1_ - alpha2_; calcNu(); diff --git a/applications/solvers/multiphase/interPhaseChangeFoam/phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C b/applications/solvers/multiphase/interPhaseChangeFoam/phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C index d25fbdfec..557525388 100644 --- a/applications/solvers/multiphase/interPhaseChangeFoam/phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C +++ b/applications/solvers/multiphase/interPhaseChangeFoam/phaseChangeTwoPhaseMixtures/phaseChangeTwoPhaseMixture/phaseChangeTwoPhaseMixture.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -44,7 +44,7 @@ Foam::phaseChangeTwoPhaseMixture::phaseChangeTwoPhaseMixture : incompressibleTwoPhaseMixture(U, phi), phaseChangeTwoPhaseMixtureCoeffs_(subDict(type + "Coeffs")), - pSat_(lookup("pSat")) + pSat_("pSat", dimPressure, lookup("pSat")) {} diff --git a/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/phase/phase.C b/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/phase/phase.C index 08e7c0b04..85954554f 100644 --- a/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/phase/phase.C +++ b/applications/solvers/multiphase/multiphaseInterFoam/multiphaseMixture/phase/phase.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -59,7 +59,7 @@ Foam::phase::phase phi ) ), - rho_(phaseDict_.lookup("rho")) + rho_("rho", dimDensity, phaseDict_.lookup("rho")) {} diff --git a/applications/solvers/multiphase/twoLiquidMixingFoam/createFields.H b/applications/solvers/multiphase/twoLiquidMixingFoam/createFields.H index 9fc3bcbbb..c52c897b3 100644 --- a/applications/solvers/multiphase/twoLiquidMixingFoam/createFields.H +++ b/applications/solvers/multiphase/twoLiquidMixingFoam/createFields.H @@ -37,10 +37,10 @@ volScalarField& alpha2(mixture.alpha2()); const dimensionedScalar& rho1 = mixture.rho1(); const dimensionedScalar& rho2 = mixture.rho2(); -dimensionedScalar Dab(mixture.lookup("Dab")); +dimensionedScalar Dab("Dab", dimViscosity, mixture.lookup("Dab")); // Read the reciprocal of the turbulent Schmidt number -dimensionedScalar alphatab(mixture.lookup("alphatab")); +dimensionedScalar alphatab("alphatab", dimless, mixture.lookup("alphatab")); // Need to store rho for ddt(rho, U) volScalarField rho("rho", alpha1*rho1 + alpha2*rho2); diff --git a/etc/templates/axisymmetricJet/constant/transportProperties b/etc/templates/axisymmetricJet/constant/transportProperties index 9671f7a86..455ea9b0b 100644 --- a/etc/templates/axisymmetricJet/constant/transportProperties +++ b/etc/templates/axisymmetricJet/constant/transportProperties @@ -16,38 +16,38 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; BirdCarreauCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } CrossPowerLawCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } powerLawCoeffs { - nuMax nuMax [ 0 2 -1 0 0 0 0 ] 1e-03; - nuMin nuMin [ 0 2 -1 0 0 0 0 ] 1e-05; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nuMax [0 2 -1 0 0 0 0] 1e-03; + nuMin [0 2 -1 0 0 0 0] 1e-05; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } HerschelBulkleyCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - tau0 tau0 [ 0 2 -2 0 0 0 0 ] 1; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nu0 [0 2 -1 0 0 0 0] 1e-03; + tau0 [0 2 -2 0 0 0 0] 1; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } // ************************************************************************* // diff --git a/etc/templates/closedVolumeRotating/constant/transportProperties b/etc/templates/closedVolumeRotating/constant/transportProperties index 9671f7a86..455ea9b0b 100644 --- a/etc/templates/closedVolumeRotating/constant/transportProperties +++ b/etc/templates/closedVolumeRotating/constant/transportProperties @@ -16,38 +16,38 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; BirdCarreauCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } CrossPowerLawCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } powerLawCoeffs { - nuMax nuMax [ 0 2 -1 0 0 0 0 ] 1e-03; - nuMin nuMin [ 0 2 -1 0 0 0 0 ] 1e-05; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nuMax [0 2 -1 0 0 0 0] 1e-03; + nuMin [0 2 -1 0 0 0 0] 1e-05; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } HerschelBulkleyCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - tau0 tau0 [ 0 2 -2 0 0 0 0 ] 1; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nu0 [0 2 -1 0 0 0 0] 1e-03; + tau0 [0 2 -2 0 0 0 0] 1; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } // ************************************************************************* // diff --git a/etc/templates/inflowOutflow/constant/transportProperties b/etc/templates/inflowOutflow/constant/transportProperties index 9671f7a86..455ea9b0b 100644 --- a/etc/templates/inflowOutflow/constant/transportProperties +++ b/etc/templates/inflowOutflow/constant/transportProperties @@ -16,38 +16,38 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; BirdCarreauCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } CrossPowerLawCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } powerLawCoeffs { - nuMax nuMax [ 0 2 -1 0 0 0 0 ] 1e-03; - nuMin nuMin [ 0 2 -1 0 0 0 0 ] 1e-05; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nuMax [0 2 -1 0 0 0 0] 1e-03; + nuMin [0 2 -1 0 0 0 0] 1e-05; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } HerschelBulkleyCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - tau0 tau0 [ 0 2 -2 0 0 0 0 ] 1; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nu0 [0 2 -1 0 0 0 0] 1e-03; + tau0 [0 2 -2 0 0 0 0] 1; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } // ************************************************************************* // diff --git a/etc/templates/inflowOutflowRotating/constant/transportProperties b/etc/templates/inflowOutflowRotating/constant/transportProperties index 9671f7a86..455ea9b0b 100644 --- a/etc/templates/inflowOutflowRotating/constant/transportProperties +++ b/etc/templates/inflowOutflowRotating/constant/transportProperties @@ -16,38 +16,38 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; BirdCarreauCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } CrossPowerLawCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-05; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0.5; + nu0 [0 2 -1 0 0 0 0] 1e-03; + nuInf [0 2 -1 0 0 0 0] 1e-05; + m [0 0 1 0 0 0 0] 1; + n [0 0 0 0 0 0 0] 0.5; } powerLawCoeffs { - nuMax nuMax [ 0 2 -1 0 0 0 0 ] 1e-03; - nuMin nuMin [ 0 2 -1 0 0 0 0 ] 1e-05; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nuMax [0 2 -1 0 0 0 0] 1e-03; + nuMin [0 2 -1 0 0 0 0] 1e-05; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } HerschelBulkleyCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-03; - tau0 tau0 [ 0 2 -2 0 0 0 0 ] 1; - k k [ 0 2 -1 0 0 0 0 ] 1e-05; - n n [ 0 0 0 0 0 0 0 ] 1; + nu0 [0 2 -1 0 0 0 0] 1e-03; + tau0 [0 2 -2 0 0 0 0] 1; + k [0 2 -1 0 0 0 0] 1e-05; + n [0 0 0 0 0 0 0] 1; } // ************************************************************************* // diff --git a/src/OpenFOAM/dimensionSet/dimensionSets.C b/src/OpenFOAM/dimensionSet/dimensionSets.C index a858f4cb2..dde9d1708 100644 --- a/src/OpenFOAM/dimensionSet/dimensionSets.C +++ b/src/OpenFOAM/dimensionSet/dimensionSets.C @@ -193,6 +193,7 @@ const dimensionSet dimEnergy(dimForce*dimLength); const dimensionSet dimPower(dimEnergy/dimTime); const dimensionSet dimPressure(dimForce/dimArea); +const dimensionSet dimCompressibility(dimDensity/dimPressure); const dimensionSet dimGasConstant(dimEnergy/dimMass/dimTemperature); const dimensionSet dimSpecificHeatCapacity(dimGasConstant); const dimensionSet dimViscosity(dimArea/dimTime); diff --git a/src/OpenFOAM/dimensionSet/dimensionSets.H b/src/OpenFOAM/dimensionSet/dimensionSets.H index a2273176a..cf74ae85b 100644 --- a/src/OpenFOAM/dimensionSet/dimensionSets.H +++ b/src/OpenFOAM/dimensionSet/dimensionSets.H @@ -69,6 +69,7 @@ extern const dimensionSet dimPower; extern const dimensionSet dimVelocity; extern const dimensionSet dimAcceleration; extern const dimensionSet dimPressure; +extern const dimensionSet dimCompressibility; extern const dimensionSet dimGasConstant; extern const dimensionSet dimSpecificHeatCapacity; extern const dimensionSet dimViscosity; diff --git a/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C b/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C index 3e5e056ec..46a3eb55a 100644 --- a/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C +++ b/src/TurbulenceModels/incompressible/turbulentTransportModels/derivedFvPatchFields/wallFunctions/alphatWallFunctions/alphatJayatillekeWallFunction/alphatJayatillekeWallFunctionFvPatchScalarField.C @@ -226,7 +226,12 @@ void alphatJayatillekeWallFunctionFvPatchScalarField::updateCoeffs() // Molecular Prandtl number const scalar Pr ( - dimensionedScalar(transportProperties.lookup("Pr")).value() + dimensionedScalar + ( + "Pr", + dimless, + transportProperties.lookup("Pr") + ).value() ); // Populate boundary values diff --git a/src/thermophysicalModels/barotropicCompressibilityModel/Chung/Chung.C b/src/thermophysicalModels/barotropicCompressibilityModel/Chung/Chung.C index 586070a2f..3c626b94e 100644 --- a/src/thermophysicalModels/barotropicCompressibilityModel/Chung/Chung.C +++ b/src/thermophysicalModels/barotropicCompressibilityModel/Chung/Chung.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -52,10 +52,30 @@ Foam::compressibilityModels::Chung::Chung ) : barotropicCompressibilityModel(compressibilityProperties, gamma, psiName), - psiv_(compressibilityProperties_.lookup("psiv")), - psil_(compressibilityProperties_.lookup("psil")), - rhovSat_(compressibilityProperties_.lookup("rhovSat")), - rholSat_(compressibilityProperties_.lookup("rholSat")) + psiv_ + ( + "psiv", + dimCompressibility, + compressibilityProperties_.lookup("psiv") + ), + psil_ + ( + "psil", + dimCompressibility, + compressibilityProperties_.lookup("psil") + ), + rhovSat_ + ( + "rhovSat", + dimDensity, + compressibilityProperties_.lookup("rhovSat") + ), + rholSat_ + ( + "rholSat", + dimDensity, + compressibilityProperties_.lookup("rholSat") + ) { correct(); } diff --git a/src/thermophysicalModels/barotropicCompressibilityModel/Wallis/Wallis.C b/src/thermophysicalModels/barotropicCompressibilityModel/Wallis/Wallis.C index 3aa468840..4717c5b0a 100644 --- a/src/thermophysicalModels/barotropicCompressibilityModel/Wallis/Wallis.C +++ b/src/thermophysicalModels/barotropicCompressibilityModel/Wallis/Wallis.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -52,10 +52,30 @@ Foam::compressibilityModels::Wallis::Wallis ) : barotropicCompressibilityModel(compressibilityProperties, gamma, psiName), - psiv_(compressibilityProperties_.lookup("psiv")), - psil_(compressibilityProperties_.lookup("psil")), - rhovSat_(compressibilityProperties_.lookup("rhovSat")), - rholSat_(compressibilityProperties_.lookup("rholSat")) + psiv_ + ( + "psiv", + dimCompressibility, + compressibilityProperties_.lookup("psiv") + ), + psil_ + ( + "psil", + dimCompressibility, + compressibilityProperties_.lookup("psil") + ), + rhovSat_ + ( + "rhovSat", + dimDensity, + compressibilityProperties_.lookup("rhovSat") + ), + rholSat_ + ( + "rholSat", + dimDensity, + compressibilityProperties_.lookup("rholSat") + ) { correct(); } diff --git a/src/thermophysicalModels/barotropicCompressibilityModel/linear/linear.C b/src/thermophysicalModels/barotropicCompressibilityModel/linear/linear.C index ad7dccef0..6edaad6eb 100644 --- a/src/thermophysicalModels/barotropicCompressibilityModel/linear/linear.C +++ b/src/thermophysicalModels/barotropicCompressibilityModel/linear/linear.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -52,8 +52,18 @@ Foam::compressibilityModels::linear::linear ) : barotropicCompressibilityModel(compressibilityProperties, gamma, psiName), - psiv_(compressibilityProperties_.lookup("psiv")), - psil_(compressibilityProperties_.lookup("psil")) + psiv_ + ( + "psiv", + dimCompressibility, + compressibilityProperties_.lookup("psiv") + ), + psil_ + ( + "psil", + dimCompressibility, + compressibilityProperties_.lookup("psil") + ) { correct(); psi_.oldTime(); diff --git a/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C b/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C index 0f2213b68..3deb2a66c 100644 --- a/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C +++ b/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -68,10 +68,10 @@ Foam::viscosityModels::BirdCarreau::BirdCarreau : viscosityModel(name, viscosityProperties, U, phi), BirdCarreauCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")), - nu0_(BirdCarreauCoeffs_.lookup("nu0")), - nuInf_(BirdCarreauCoeffs_.lookup("nuInf")), - k_(BirdCarreauCoeffs_.lookup("k")), - n_(BirdCarreauCoeffs_.lookup("n")), + nu0_("nu0", dimViscosity, BirdCarreauCoeffs_.lookup("nu0")), + nuInf_("nuInf", dimViscosity, BirdCarreauCoeffs_.lookup("nuInf")), + k_("k", dimTime, BirdCarreauCoeffs_.lookup("k")), + n_("n", dimless, BirdCarreauCoeffs_.lookup("n")), a_ ( BirdCarreauCoeffs_.lookupOrDefault diff --git a/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C b/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C index 3e87a3b8f..1201dbb4a 100644 --- a/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C +++ b/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -66,10 +66,10 @@ Foam::viscosityModels::CrossPowerLaw::CrossPowerLaw : viscosityModel(name, viscosityProperties, U, phi), CrossPowerLawCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")), - nu0_(CrossPowerLawCoeffs_.lookup("nu0")), - nuInf_(CrossPowerLawCoeffs_.lookup("nuInf")), - m_(CrossPowerLawCoeffs_.lookup("m")), - n_(CrossPowerLawCoeffs_.lookup("n")), + nu0_("nu0", dimViscosity, CrossPowerLawCoeffs_.lookup("nu0")), + nuInf_("nuInf", dimViscosity, CrossPowerLawCoeffs_.lookup("nuInf")), + m_("m", dimTime, CrossPowerLawCoeffs_.lookup("m")), + n_("n", dimless, CrossPowerLawCoeffs_.lookup("n")), nu_ ( IOobject diff --git a/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C b/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C index 019b549e6..eb41da76f 100644 --- a/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C +++ b/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -55,16 +55,6 @@ Foam::viscosityModels::HerschelBulkley::calcNu() const tmp sr(strainRate()); - // return - // ( - // min - // ( - // nu0_, - // (tau0_ + k_*rtone*(pow(tone*sr(), n_) - pow(tone*tau0_/nu0_, n_))) - // /max(sr(), dimensionedScalar("VSMALL", dimless/dimTime, VSMALL)) - // ) - // ); - return ( min @@ -89,10 +79,10 @@ Foam::viscosityModels::HerschelBulkley::HerschelBulkley : viscosityModel(name, viscosityProperties, U, phi), HerschelBulkleyCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")), - k_(HerschelBulkleyCoeffs_.lookup("k")), - n_(HerschelBulkleyCoeffs_.lookup("n")), - tau0_(HerschelBulkleyCoeffs_.lookup("tau0")), - nu0_(HerschelBulkleyCoeffs_.lookup("nu0")), + k_("k", dimViscosity, HerschelBulkleyCoeffs_.lookup("k")), + n_("n", dimless, HerschelBulkleyCoeffs_.lookup("n")), + tau0_("tau0", dimViscosity/dimTime, HerschelBulkleyCoeffs_.lookup("tau0")), + nu0_("nu0", dimViscosity, HerschelBulkleyCoeffs_.lookup("nu0")), nu_ ( IOobject diff --git a/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C b/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C index 071ac6223..afd5b000a 100644 --- a/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C +++ b/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -82,10 +82,10 @@ Foam::viscosityModels::powerLaw::powerLaw : viscosityModel(name, viscosityProperties, U, phi), powerLawCoeffs_(viscosityProperties.subDict(typeName + "Coeffs")), - k_(powerLawCoeffs_.lookup("k")), - n_(powerLawCoeffs_.lookup("n")), - nuMin_(powerLawCoeffs_.lookup("nuMin")), - nuMax_(powerLawCoeffs_.lookup("nuMax")), + k_("k", dimViscosity, powerLawCoeffs_.lookup("k")), + n_("n", dimless, powerLawCoeffs_.lookup("n")), + nuMin_("nuMin", dimViscosity, powerLawCoeffs_.lookup("nuMin")), + nuMax_("nuMax", dimViscosity, powerLawCoeffs_.lookup("nuMax")), nu_ ( IOobject diff --git a/src/transportModels/interfaceProperties/interfaceProperties.C b/src/transportModels/interfaceProperties/interfaceProperties.C index 0091aeee8..81718a32d 100644 --- a/src/transportModels/interfaceProperties/interfaceProperties.C +++ b/src/transportModels/interfaceProperties/interfaceProperties.C @@ -167,7 +167,7 @@ Foam::interfaceProperties::interfaceProperties alpha1.mesh().solverDict(alpha1.name()).lookup("cAlpha") ) ), - sigma_(dict.lookup("sigma")), + sigma_("sigma", dimensionSet(1, 0, -2, 0, 0), dict.lookup("sigma")), deltaN_ ( diff --git a/tutorials/DNS/dnsFoam/boxTurb16/0/p b/tutorials/DNS/dnsFoam/boxTurb16/0/p index c794185b3..9d7f24f8d 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/0/p +++ b/tutorials/DNS/dnsFoam/boxTurb16/0/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties b/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties index 504a5e1e4..1a7e14495 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties +++ b/tutorials/DNS/dnsFoam/boxTurb16/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [ 0 2 -1 0 0 0 0 ] 0.025; +nu [0 2 -1 0 0 0 0] 0.025; // ************************************************************************* // diff --git a/tutorials/basic/laplacianFoam/flange/constant/transportProperties b/tutorials/basic/laplacianFoam/flange/constant/transportProperties index c0acc95e5..2a2806fb2 100644 --- a/tutorials/basic/laplacianFoam/flange/constant/transportProperties +++ b/tutorials/basic/laplacianFoam/flange/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -DT DT [ 0 2 -1 0 0 0 0 ] 4e-05; +DT DT [0 2 -1 0 0 0 0] 4e-05; // ************************************************************************* // diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties b/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties index 62bcc4602..ee7c5e45e 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -DT DT [ 0 2 -1 0 0 0 0 ] 0.01; +DT DT [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Aw b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Aw index ebfddffa1..9e587306d 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Aw +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Aw @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -1 0 0 0 0 0 ]; +dimensions [0 -1 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B index 035bd2bac..8a430bb05 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR index 61ebec7a6..9076af217 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -1 0 0 0 0 0 ]; +dimensions [0 -1 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT index 51505ae12..fcb9f43e1 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -1 0 0 0 0 0 ]; +dimensions [0 -1 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs index b33c7bd7e..82ef44f36 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 0 0 0 0 0 ]; +dimensions [0 1 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv index d7a0451e7..d1b228459 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su index 2776c4cd1..e7ac33c7f 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform 0.5; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/T b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/T index 9280aeafb..a508662b3 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/T +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/T @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 300; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Tu b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Tu index 802612268..c72df6e21 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Tu +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Tu @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 300; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/U b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/U index c13c56c12..d80165816 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/U +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Xi b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Xi index 0ba04cf8f..53d36f4c5 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Xi +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Xi @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/b b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/b index 9a4f7880f..43ad33228 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/b +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/b @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/betav b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/betav index 8c1e73d08..4a719759e 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/betav +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/betav @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon index 26ca09c49..b5c06f18c 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 0.1; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/ft b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/ft index 634eeeb1e..af3c6a8bb 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/ft +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/ft @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.0623; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k index a9ff01787..e6c8fe0ee 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1.5; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k.old b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k.old index a9ff01787..e6c8fe0ee 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k.old +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/k.old @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1.5; diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/nsv b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/nsv index 9bd26827f..f46f287c6 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/nsv +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/nsv @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField nonuniform List 8025 diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p index 39eec3128..5d0efb0b2 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 100000; diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/epsilon b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/epsilon index 57a9ae537..18300060a 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/epsilon +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 375; diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/k b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/k index 603093e6e..f5f843e59 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/k +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1.5; diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/nut b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/nut index 113acd86c..e39fcccf8 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/nut +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/combustionProperties b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/combustionProperties index ca17b8af4..b1a20cd21 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/combustionProperties +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/combustionProperties @@ -19,21 +19,21 @@ laminarFlameSpeedCorrelation Gulders; fuel Propane; -Su Su [ 0 1 -1 0 0 0 0 ] 0.434; +Su Su [0 1 -1 0 0 0 0] 0.434; SuModel unstrained; -equivalenceRatio equivalenceRatio [ 0 0 0 0 0 0 0 ] 1; +equivalenceRatio equivalenceRatio [0 0 0 0 0 0 0] 1; -sigmaExt sigmaExt [ 0 0 -1 0 0 0 0 ] 100000; +sigmaExt sigmaExt [0 0 -1 0 0 0 0] 100000; XiModel transport; -XiCoef XiCoef [ 0 0 0 0 0 0 0 ] 0.62; +XiCoef XiCoef [0 0 0 0 0 0 0] 0.62; -XiShapeCoef XiShapeCoef [ 0 0 0 0 0 0 0 ] 1; +XiShapeCoef XiShapeCoef [0 0 0 0 0 0 0] 1; -uPrimeCoef uPrimeCoef [ 0 0 0 0 0 0 0 ] 1; +uPrimeCoef uPrimeCoef [0 0 0 0 0 0 0] 1; GuldersCoeffs { @@ -113,11 +113,11 @@ ignitionSites ignitionSphereFraction 1; -ignitionThickness ignitionThickness [ 0 1 0 0 0 0 0 ] 0.001; +ignitionThickness ignitionThickness [0 1 0 0 0 0 0] 0.001; ignitionCircleFraction 0.5; -ignitionKernelArea ignitionKernelArea [ 0 2 0 0 0 0 0 ] 0.001; +ignitionKernelArea ignitionKernelArea [0 2 0 0 0 0 0] 0.001; // ************************************************************************* // diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties index 83a589012..e6e3ab3a2 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties @@ -26,7 +26,7 @@ thermoType energy absoluteEnthalpy; } -stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [ 0 0 0 0 0 0 0 ] 15.675; +stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [0 0 0 0 0 0 0] 15.675; reactants { diff --git a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen index 8d4aff1e1..397d6345d 100644 --- a/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen +++ b/tutorials/combustion/XiFoam/ras/moriyoshiHomogeneous/constant/thermophysicalProperties.hydrogen @@ -26,7 +26,7 @@ thermoType energy absoluteEnthalpy; } -stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [ 0 0 0 0 0 0 0 ] 34.074; +stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [0 0 0 0 0 0 0] 34.074; reactants { diff --git a/tutorials/combustion/engineFoam/kivaTest/constant/combustionProperties b/tutorials/combustion/engineFoam/kivaTest/constant/combustionProperties index 27f323c02..c0de6fda5 100644 --- a/tutorials/combustion/engineFoam/kivaTest/constant/combustionProperties +++ b/tutorials/combustion/engineFoam/kivaTest/constant/combustionProperties @@ -19,21 +19,21 @@ laminarFlameSpeedCorrelation Gulders; fuel IsoOctane; -Su Su [ 0 1 -1 0 0 0 0 ] 0; +Su Su [0 1 -1 0 0 0 0] 0; SuModel unstrained; -equivalenceRatio equivalenceRatio [ 0 0 0 0 0 0 0 ] 1; +equivalenceRatio equivalenceRatio [0 0 0 0 0 0 0] 1; -sigmaExt sigmaExt [ 0 0 -1 0 0 0 0 ] 100000; +sigmaExt sigmaExt [0 0 -1 0 0 0 0] 100000; XiModel transport; -XiCoef XiCoef [ 0 0 0 0 0 0 0 ] 0.62; +XiCoef XiCoef [0 0 0 0 0 0 0] 0.62; -XiShapeCoef XiShapeCoef [ 0 0 0 0 0 0 0 ] 1; +XiShapeCoef XiShapeCoef [0 0 0 0 0 0 0] 1; -uPrimeCoef uPrimeCoef [ 0 0 0 0 0 0 0 ] 1; +uPrimeCoef uPrimeCoef [0 0 0 0 0 0 0] 1; GuldersCoeffs { @@ -83,11 +83,11 @@ ignitionSites ignitionSphereFraction 1; -ignitionThickness ignitionThickness [ 0 1 0 0 0 0 0 ] 0; +ignitionThickness ignitionThickness [0 1 0 0 0 0 0] 0; ignitionCircleFraction 1; -ignitionKernelArea ignitionKernelArea [ 0 2 0 0 0 0 0 ] 0; +ignitionKernelArea ignitionKernelArea [0 2 0 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/combustion/engineFoam/kivaTest/constant/engineGeometry b/tutorials/combustion/engineFoam/kivaTest/constant/engineGeometry index 246934deb..1c21d87a3 100644 --- a/tutorials/combustion/engineFoam/kivaTest/constant/engineGeometry +++ b/tutorials/combustion/engineFoam/kivaTest/constant/engineGeometry @@ -17,15 +17,15 @@ FoamFile engineMesh layered; -conRodLength conRodLength [ 0 1 0 0 0 0 0 ] 0.147; +conRodLength conRodLength [0 1 0 0 0 0 0] 0.147; -bore bore [ 0 1 0 0 0 0 0 ] 0.092; +bore bore [0 1 0 0 0 0 0] 0.092; -stroke stroke [ 0 1 0 0 0 0 0 ] 0.08423; +stroke stroke [0 1 0 0 0 0 0] 0.08423; -clearance clearance [ 0 1 0 0 0 0 0 ] 0.00115; +clearance clearance [0 1 0 0 0 0 0] 0.00115; -rpm rpm [ 0 0 -1 0 0 0 0 ] 1500; +rpm rpm [0 0 -1 0 0 0 0] 1500; // ************************************************************************* // diff --git a/tutorials/combustion/engineFoam/kivaTest/constant/thermophysicalProperties b/tutorials/combustion/engineFoam/kivaTest/constant/thermophysicalProperties index b7c4847d5..863152a97 100644 --- a/tutorials/combustion/engineFoam/kivaTest/constant/thermophysicalProperties +++ b/tutorials/combustion/engineFoam/kivaTest/constant/thermophysicalProperties @@ -27,7 +27,7 @@ thermoType //energy absoluteInternalEnergy; } -stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [ 0 0 0 0 0 0 0 ] 15.0336; +stoichiometricAirFuelMassRatio stoichiometricAirFuelMassRatio [0 0 0 0 0 0 0] 15.0336; fuel { diff --git a/tutorials/combustion/fireFoam/les/flameSpreadWaterSuppressionPanel/constant/radiationProperties b/tutorials/combustion/fireFoam/les/flameSpreadWaterSuppressionPanel/constant/radiationProperties index 6ce48dc3f..242c5aace 100644 --- a/tutorials/combustion/fireFoam/les/flameSpreadWaterSuppressionPanel/constant/radiationProperties +++ b/tutorials/combustion/fireFoam/les/flameSpreadWaterSuppressionPanel/constant/radiationProperties @@ -36,9 +36,9 @@ absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.1; - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.1; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.1; + emissivity emissivity [0 -1 0 0 0 0 0] 0.1; + E E [1 -1 -3 0 0 0 0] 0; } greyMeanAbsorptionEmissionSootCoeffs diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/sampleCone b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/sampleCone index 8c37c1473..0c23675f6 100755 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/sampleCone +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/sampleCone @@ -25,7 +25,7 @@ USAGE unset timeOpt # parse options -while [ "$#" -gt 0 ] +while [ "$#" -gt 0] do case "$1" in -h | -help) diff --git a/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/constant/transportProperties b/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/constant/transportProperties index 3558155d0..587f6acbd 100644 --- a/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/constant/transportProperties +++ b/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/constant/transportProperties @@ -17,6 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.0e-6; +nu [0 2 -1 0 0 0 0] 1.0e-6; // ************************************************************************* // diff --git a/tutorials/compressible/rhoPimpleFoam/ras/cavity/0/epsilon b/tutorials/compressible/rhoPimpleFoam/ras/cavity/0/epsilon index cfc9a229b..fdcaf9c13 100644 --- a/tutorials/compressible/rhoPimpleFoam/ras/cavity/0/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/ras/cavity/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 0.000765; diff --git a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/epsilon b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/epsilon index 07e4effd3..3b5704561 100644 --- a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/epsilon +++ b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 20; diff --git a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/k b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/k index 60208ba13..74be565a8 100644 --- a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/k +++ b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/constant/transportProperties b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/constant/transportProperties +++ b/tutorials/compressible/rhoPimpleFoam/ras/mixerVessel2D/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/epsilon b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/epsilon index 21b1e98ef..dc27e2fcf 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/epsilon +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 200; diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/k b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/k index cd7aa3109..2b39c9a2c 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/k +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/nut b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/nut index 4362a65a8..fcb2bc9b0 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/nut +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuctImplicit/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/epsilon b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/epsilon index 21b1e98ef..dc27e2fcf 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/epsilon +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 200; diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/k b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/k index cd7aa3109..2b39c9a2c 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/k +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties index bb5efe789..93c3dbbd4 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/thermodynamicProperties @@ -15,11 +15,11 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -rho0 rho0 [ 1 -3 0 0 0 0 0 ] 1000; +rho0 rho0 [1 -3 0 0 0 0 0] 1000; -p0 p0 [ 1 -1 -2 0 0 0 0 ] 100000; +p0 p0 [1 -1 -2 0 0 0 0] 100000; -psi psi [ 0 -2 2 0 0 0 0 ] 4.54e-07; +psi psi [0 -2 2 0 0 0 0] 4.54e-07; // ************************************************************************* // diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties index 21ee6987d..ae4876ed0 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -mu mu [ 1 -1 -1 0 0 0 0 ] 0.001; +mu mu [1 -1 -1 0 0 0 0] 0.001; // ************************************************************************* // diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryT b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryT index ece1ab678..3a1827546 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryT +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryT @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryU b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryU index c75e5506a..4fca314b2 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryU +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/boundaryU @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/dsmcRhoN b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/dsmcRhoN index 2494f1643..b3de99a72 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/dsmcRhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/dsmcRhoN @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -3 0 0 0 0 0 ]; +dimensions [0 -3 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/fD b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/fD index bcc188d7b..fd5ad5452 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/fD +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/fD @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/iDof b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/iDof index 1dd93605f..4c2082039 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/iDof +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/iDof @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -3 0 0 0 0 0 ]; +dimensions [0 -3 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/internalE b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/internalE index b5e11bb73..c3647d56f 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/internalE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/internalE @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/linearKE b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/linearKE index 4edb0c49d..b7c7278bb 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/linearKE +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/linearKE @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/momentum b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/momentum index 1b17cb300..72e71e8c2 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/momentum +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/momentum @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -2 -1 0 0 0 0 ]; +dimensions [1 -2 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/q b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/q index e4cb992d8..efc71c530 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/q +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/q @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 0 -3 0 0 0 0 ]; +dimensions [1 0 -3 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoM b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoM index 2eb277f9c..527596874 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoM +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoM @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -3 0 0 0 0 0 ]; +dimensions [1 -3 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoN b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoN index 7d6a69919..688e05647 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoN +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/0/rhoN @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 -3 0 0 0 0 0 ]; +dimensions [0 -3 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0/U b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0/U index 59bf5a53e..5a6fca1d9 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0/U +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0/U b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0/U index 59bf5a53e..5a6fca1d9 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0/U +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties b/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties index 4f5f33d8d..db3d16a10 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/constant/physicalProperties @@ -15,9 +15,8 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -epsilon0 epsilon0 [ -1 -3 4 0 0 2 0 ] 8.85419e-12; - -k k [ -1 0 2 0 0 1 0 ] 0.00016; +epsilon0 epsilon0 [-1 -3 4 0 0 2 0] 8.85419e-12; +k k [-1 0 2 0 0 1 0] 0.00016; // ************************************************************************* // diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties b/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties index 94e7bd079..703d83b4d 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties +++ b/tutorials/electromagnetics/mhdFoam/hartmann/constant/transportProperties @@ -15,13 +15,12 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -rho rho [ 1 -3 0 0 0 0 0 ] 1; +rho [1 -3 0 0 0 0 0] 1; -nu nu [ 0 2 -1 0 0 0 0 ] 1; +nu [0 2 -1 0 0 0 0] 1; -mu mu [ 1 1 -2 0 0 -2 0 ] 1; - -sigma sigma [ -1 -3 3 0 0 2 0 ] 1; +mu [1 1 -2 0 0 -2 0] 1; +sigma [-1 -3 3 0 0 2 0] 1; // ************************************************************************* // diff --git a/tutorials/financial/financialFoam/europeanCall/constant/financialProperties b/tutorials/financial/financialFoam/europeanCall/constant/financialProperties index 5d7b3ac78..98fdad00a 100644 --- a/tutorials/financial/financialFoam/europeanCall/constant/financialProperties +++ b/tutorials/financial/financialFoam/europeanCall/constant/financialProperties @@ -15,17 +15,16 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -strike strike [ 0 1 0 0 0 0 0 ] 40; +strike [0 1 0 0 0 0 0] 40; -r r [ 0 0 -1 0 0 0 0 ] 0.1; +r [0 0 -1 0 0 0 0] 0.1; -sigma sigma [ 0 0 -0.5 0 0 0 0 ] 0.2; +sigma [0 0 -0.5 0 0 0 0] 0.2; -s s [ 0 0 -1 0 0 0 0 ] 0; +s [0 0 -1 0 0 0 0] 0; -xi xi [ 0 0 -0.5 0 0 0 0 ] 0.1; - -eta eta [ 0 0 0 0 0 0 0 ] 0; +xi [0 0 -0.5 0 0 0 0] 0.1; +eta [0 0 0 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/financial/financialFoam/europeanCall/constant/polyMesh/boundary b/tutorials/financial/financialFoam/europeanCall/constant/polyMesh/boundary index b2d00fdb8..a4b4e1137 100644 --- a/tutorials/financial/financialFoam/europeanCall/constant/polyMesh/boundary +++ b/tutorials/financial/financialFoam/europeanCall/constant/polyMesh/boundary @@ -32,6 +32,7 @@ FoamFile defaultFaces { type empty; + inGroups 1(empty); nFaces 2000; startFace 501; } diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties index 674b7e0d4..ce09e5210 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/constant/transportProperties @@ -18,18 +18,18 @@ FoamFile transportModel Newtonian; // Laminar viscosity -nu nu [0 2 -1 0 0 0 0] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // Thermal expansion coefficient -beta beta [0 0 0 -1 0 0 0] 3e-03; +beta [0 0 0 -1 0 0 0] 3e-03; // Reference temperature -TRef TRef [0 0 0 1 0 0 0] 300; +TRef [0 0 0 1 0 0 0] 300; // Laminar Prandtl number -Pr Pr [0 0 0 0 0 0 0] 0.9; +Pr [0 0 0 0 0 0 0] 0.9; // Turbulent Prandtl number -Prt Prt [0 0 0 0 0 0 0] 0.7; +Prt [0 0 0 0 0 0 0] 0.7; // ************************************************************************* // diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties index 674b7e0d4..ce09e5210 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/constant/transportProperties @@ -18,18 +18,18 @@ FoamFile transportModel Newtonian; // Laminar viscosity -nu nu [0 2 -1 0 0 0 0] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // Thermal expansion coefficient -beta beta [0 0 0 -1 0 0 0] 3e-03; +beta [0 0 0 -1 0 0 0] 3e-03; // Reference temperature -TRef TRef [0 0 0 1 0 0 0] 300; +TRef [0 0 0 1 0 0 0] 300; // Laminar Prandtl number -Pr Pr [0 0 0 0 0 0 0] 0.9; +Pr [0 0 0 0 0 0 0] 0.9; // Turbulent Prandtl number -Prt Prt [0 0 0 0 0 0 0] 0.7; +Prt [0 0 0 0 0 0 0] 0.7; // ************************************************************************* // diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties index 674b7e0d4..ce09e5210 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/constant/transportProperties @@ -18,18 +18,18 @@ FoamFile transportModel Newtonian; // Laminar viscosity -nu nu [0 2 -1 0 0 0 0] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // Thermal expansion coefficient -beta beta [0 0 0 -1 0 0 0] 3e-03; +beta [0 0 0 -1 0 0 0] 3e-03; // Reference temperature -TRef TRef [0 0 0 1 0 0 0] 300; +TRef [0 0 0 1 0 0 0] 300; // Laminar Prandtl number -Pr Pr [0 0 0 0 0 0 0] 0.9; +Pr [0 0 0 0 0 0 0] 0.9; // Turbulent Prandtl number -Prt Prt [0 0 0 0 0 0 0] 0.7; +Prt [0 0 0 0 0 0 0] 0.7; // ************************************************************************* // diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/T b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/T index 656062e8a..ea17f0ac0 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/T +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/T @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 300; diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/p b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/p index 38b557127..7db4668cb 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/p +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/0.org/baffle3DRegion/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e6; diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/externalCoupledCavity/externalSolver b/tutorials/heatTransfer/buoyantSimpleFoam/externalCoupledCavity/externalSolver index 2ec1a436d..406d2199d 100755 --- a/tutorials/heatTransfer/buoyantSimpleFoam/externalCoupledCavity/externalSolver +++ b/tutorials/heatTransfer/buoyantSimpleFoam/externalCoupledCavity/externalSolver @@ -51,7 +51,7 @@ init totalWait=0 step=0 -while [ 1 ]; do +while [1 ]; do if [ -f $lockFile ]; then log "found lock file ${lockFile} - waiting" totalWait=$(expr $totalWait + $waitSec) diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties index 6f84aac5b..7ac310e54 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/constant/radiationProperties @@ -26,9 +26,9 @@ absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.5; - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.5; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.5; + emissivity emissivity [0 -1 0 0 0 0 0] 0.5; + E E [1 -1 -3 0 0 0 0] 0; } scatterModel none; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/T b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/T index 995ea65f2..95a8ab241 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/T +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/T @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 300; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/U b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/U index 4fac31365..a8271081e 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/U +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0.001 0 0 ); diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/epsilon b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/epsilon index f8b893353..d411f9233 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/epsilon +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 0.01; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/k b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/k index 2558d1e2e..c5017c940 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/k +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.1; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p index 2f81b33af..a3a5ab714 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p_rgh b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p_rgh index 9c7030303..104dee8a6 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p_rgh +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/0/bottomWater/p_rgh @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties index 67ab26120..09c45f474 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/heater/radiationProperties @@ -24,9 +24,9 @@ absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.0; //opaque - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.1; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.0; //opaque + emissivity emissivity [0 -1 0 0 0 0 0] 0.1; + E E [1 -1 -3 0 0 0 0] 0; } scatterModel none; diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties index 504cce231..79034a694 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties @@ -33,9 +33,9 @@ absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.01; - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.01; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.01; + emissivity emissivity [0 -1 0 0 0 0 0] 0.01; + E E [1 -1 -3 0 0 0 0] 0; } scatterModel none; diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties index 251236222..90c8ed582 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties @@ -24,9 +24,9 @@ absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.0; //opaque - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.1; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.0; //opaque + emissivity emissivity [0 -1 0 0 0 0 0] 0.1; + E E [1 -1 -3 0 0 0 0] 0; } scatterModel none; diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/epsilon b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/epsilon index 3ce2f9e22..0c718a497 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/epsilon +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 3.75e-4; diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/k b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/k index 5269b3150..4136dc380 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/k +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 3.75e-3; diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/nut b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/nut index fa5d09d4f..3db0d49a1 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/nut +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel b/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel index 0353535f0..f2fe72f4e 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/Urel @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon b/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon index 047ac1cbc..c86f27af0 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 14.855; diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/k b/tutorials/incompressible/SRFSimpleFoam/mixer/0/k index 1055f405b..1abbc25b7 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/k +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.375; diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut b/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut index 7ed2af307..07b443997 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega b/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega index 0d3adc085..21dc2662d 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/omega @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 -1 0 0 0 0 ]; +dimensions [0 0 -1 0 0 0 0]; internalField uniform 3.5; diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/0/p b/tutorials/incompressible/SRFSimpleFoam/mixer/0/p index 207b4528e..32fe7135f 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/0/p +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/0/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties index 489cefb1d..ee68cad64 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties index 53fd54c2f..f2c42dfc2 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/constant/transportProperties @@ -17,7 +17,7 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1e-5; +nu [0 2 -1 0 0 0 0] 1e-5; lambda lambda [0 -2 1 0 0 0 0] 1e5; alphaMax alphaMax [0 0 -1 0 0 0 0] 200.0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/U b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/U index 0a2b3b58a..572ecdcc4 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/U +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 10 0 0 ); diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/epsilon b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/epsilon index 50a0eef12..11e676bc0 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/epsilon +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 10; diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/k b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/k index 751ffd13b..4579dd76f 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/k +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.1; diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/nuTilda b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/nuTilda index 34964aa06..5048e273a 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/nuTilda +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/0/nuTilda @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/constant/transportProperties b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/constant/transportProperties index 483ab3301..b5b39c129 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/constant/transportProperties +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/constant/transportProperties @@ -15,27 +15,11 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Ubar Ubar [ 0 1 -1 0 0 0 0 ] ( 10 0 0 ); +Ubar [0 1 -1 0 0 0 0] (10 0 0); transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/U b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/U index 9bd552a68..e896e8999 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/U +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/epsilon b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/epsilon index d2d990078..e03063b0f 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/epsilon +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 1e-08; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/k b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/k index 6c8f70a78..5bac915ca 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/k +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1e-10; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nuTilda b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nuTilda index 3650a0ba2..7068537e9 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nuTilda +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nuTilda @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nut b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nut index ecdb3d273..357138e28 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nut +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/constant/transportProperties b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/constant/transportProperties index 483ab3301..72455ddff 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/constant/transportProperties +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/constant/transportProperties @@ -15,27 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Ubar Ubar [ 0 1 -1 0 0 0 0 ] ( 10 0 0 ); +Ubar [0 1 -1 0 0 0 0] (10 0 0); transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/U b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/U index 1607a6113..377a03ac5 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/U +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 1 0 0 ); diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/epsilon b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/epsilon index ac692bb7f..316b143c1 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/epsilon +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 1e-08; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/k b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/k index 1c9826aeb..55761ee96 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/k +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1e-09; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nuTilda b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nuTilda index 3650a0ba2..7068537e9 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nuTilda +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nuTilda @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut index c9cc1c5b7..348b9ed37 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.k b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.k index 7d7ba9f72..21c2ddb4e 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.k +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.spalding b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.spalding index 4b988ac9a..762b0ac7e 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.spalding +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/nut.spalding @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/omega b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/omega index 8cc512ab3..b540b6d44 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/omega +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/0/omega @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 -1 0 0 0 0 ]; +dimensions [0 0 -1 0 0 0 0]; internalField uniform 1111.11; diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties index f4e64506c..9b3fd54ef 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties @@ -15,11 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Ubar Ubar [ 0 1 -1 0 0 0 0 ] ( 10 0 0 ); +Ubar [0 1 -1 0 0 0 0] (10 0 0); transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-8; - +nu [0 2 -1 0 0 0 0] 1e-8; // ************************************************************************* // diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties.template b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties.template index 03d9dabac..a9a119b1f 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties.template +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/constant/transportProperties.template @@ -15,11 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Ubar Ubar [ 0 1 -1 0 0 0 0 ] ( 10 0 0 ); +Ubar [0 1 -1 0 0 0 0] (10 0 0); transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-XXX; - +nu [0 2 -1 0 0 0 0] 1e-XXX; // ************************************************************************* // diff --git a/tutorials/incompressible/icoFoam/cavity/constant/transportProperties b/tutorials/incompressible/icoFoam/cavity/constant/transportProperties index fa1c1ca0b..91dd75102 100644 --- a/tutorials/incompressible/icoFoam/cavity/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavity/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [ 0 2 -1 0 0 0 0 ] 0.01; +nu [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/incompressible/icoFoam/cavityClipped/constant/transportProperties b/tutorials/incompressible/icoFoam/cavityClipped/constant/transportProperties index fa1c1ca0b..91dd75102 100644 --- a/tutorials/incompressible/icoFoam/cavityClipped/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavityClipped/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [ 0 2 -1 0 0 0 0 ] 0.01; +nu [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/incompressible/icoFoam/cavityGrade/constant/transportProperties b/tutorials/incompressible/icoFoam/cavityGrade/constant/transportProperties index fa1c1ca0b..91dd75102 100644 --- a/tutorials/incompressible/icoFoam/cavityGrade/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/cavityGrade/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [ 0 2 -1 0 0 0 0 ] 0.01; +nu [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/incompressible/icoFoam/elbow/constant/transportProperties b/tutorials/incompressible/icoFoam/elbow/constant/transportProperties index fa1c1ca0b..91dd75102 100644 --- a/tutorials/incompressible/icoFoam/elbow/constant/transportProperties +++ b/tutorials/incompressible/icoFoam/elbow/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [ 0 2 -1 0 0 0 0 ] 0.01; +nu [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties index 6ec6cffa1..c1222a182 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/constant/transportProperties @@ -17,23 +17,20 @@ FoamFile transportModel CrossPowerLaw; -nu nu [ 0 2 -1 0 0 0 0 ] 1; - CrossPowerLawCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.01; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 10; - m m [ 0 0 1 0 0 0 0 ] 0.4; - n n [ 0 0 0 0 0 0 0 ] 3; + nu0 [0 2 -1 0 0 0 0] 0.01; + nuInf [0 2 -1 0 0 0 0] 10; + m [0 0 1 0 0 0 0] 0.4; + n [0 0 0 0 0 0 0] 3; } BirdCarreauCoeffs { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; + nu0 [0 2 -1 0 0 0 0] 1e-06; + nuInf [0 2 -1 0 0 0 0] 1e-06; + k [0 0 1 0 0 0 0] 0; + n [0 0 0 0 0 0 0] 1; } - // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/epsilon b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/epsilon index 7413e6a02..20f7d6d66 100644 --- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/epsilon +++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 20; diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/k b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/k index 722a31a75..1414ac920 100644 --- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/k +++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/nut b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/nut index 7976d3f70..cfb43ebe0 100644 --- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/nut +++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/constant/transportProperties index b40b7d66c..f572eff81 100644 --- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/constant/transportProperties @@ -17,23 +17,7 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/movingCone/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/movingCone/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pimpleDyMFoam/movingCone/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/movingCone/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/constant/transportProperties index 5f2e87ebe..96b2b749a 100644 --- a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/constant/transportProperties @@ -17,6 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-6; +nu [0 2 -1 0 0 0 0] 1e-6; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/propeller/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/propeller/constant/transportProperties index 5f2e87ebe..96b2b749a 100644 --- a/tutorials/incompressible/pimpleDyMFoam/propeller/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/propeller/constant/transportProperties @@ -17,6 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-6; +nu [0 2 -1 0 0 0 0] 1e-6; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/constant/transportProperties index d4e4b455f..7cdb62d17 100644 --- a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_pimpleDyMFoam/constant/transportProperties @@ -17,6 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties index d4e4b455f..7cdb62d17 100644 --- a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties +++ b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/constant/transportProperties @@ -17,6 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/TJunction/0/epsilon b/tutorials/incompressible/pimpleFoam/TJunction/0/epsilon index 00cbd4d30..1d8307f46 100644 --- a/tutorials/incompressible/pimpleFoam/TJunction/0/epsilon +++ b/tutorials/incompressible/pimpleFoam/TJunction/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 200; diff --git a/tutorials/incompressible/pimpleFoam/TJunction/0/k b/tutorials/incompressible/pimpleFoam/TJunction/0/k index 125a20e93..12fc09d65 100644 --- a/tutorials/incompressible/pimpleFoam/TJunction/0/k +++ b/tutorials/incompressible/pimpleFoam/TJunction/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.2; diff --git a/tutorials/incompressible/pimpleFoam/TJunction/0/nut b/tutorials/incompressible/pimpleFoam/TJunction/0/nut index e360ed60a..9f68c55f6 100644 --- a/tutorials/incompressible/pimpleFoam/TJunction/0/nut +++ b/tutorials/incompressible/pimpleFoam/TJunction/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/TJunction/constant/transportProperties b/tutorials/incompressible/pimpleFoam/TJunction/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pimpleFoam/TJunction/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/TJunction/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/TJunctionFan/constant/transportProperties b/tutorials/incompressible/pimpleFoam/TJunctionFan/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pimpleFoam/TJunctionFan/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/TJunctionFan/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/channel395/0.org/U b/tutorials/incompressible/pimpleFoam/channel395/0.org/U index 1b416b9fc..10436b997 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/0.org/U +++ b/tutorials/incompressible/pimpleFoam/channel395/0.org/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0.1335 0 0 ); diff --git a/tutorials/incompressible/pimpleFoam/channel395/0.org/k b/tutorials/incompressible/pimpleFoam/channel395/0.org/k index 2ca4ff44c..1246beed0 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/0.org/k +++ b/tutorials/incompressible/pimpleFoam/channel395/0.org/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/channel395/0.org/nuTilda b/tutorials/incompressible/pimpleFoam/channel395/0.org/nuTilda index 5e43346c5..6d172d79d 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/0.org/nuTilda +++ b/tutorials/incompressible/pimpleFoam/channel395/0.org/nuTilda @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/channel395/0.org/nut b/tutorials/incompressible/pimpleFoam/channel395/0.org/nut index df3efc151..5c2f99d6e 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/0.org/nut +++ b/tutorials/incompressible/pimpleFoam/channel395/0.org/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/channel395/0.org/p b/tutorials/incompressible/pimpleFoam/channel395/0.org/p index 8ea4b3035..fb4ce8785 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/0.org/p +++ b/tutorials/incompressible/pimpleFoam/channel395/0.org/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/channel395/constant/transportProperties b/tutorials/incompressible/pimpleFoam/channel395/constant/transportProperties index 1c959d2fb..fa0218b01 100644 --- a/tutorials/incompressible/pimpleFoam/channel395/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/channel395/constant/transportProperties @@ -15,27 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Ubar Ubar [ 0 1 -1 0 0 0 0 ] ( 0.1335 0 0 ); +Ubar [0 1 -1 0 0 0 0] (0.1335 0 0); transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 2e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 2e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/elipsekkLOmega/0/nut b/tutorials/incompressible/pimpleFoam/elipsekkLOmega/0/nut index 435c96ce8..ed303c8e9 100644 --- a/tutorials/incompressible/pimpleFoam/elipsekkLOmega/0/nut +++ b/tutorials/incompressible/pimpleFoam/elipsekkLOmega/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pimpleFoam/elipsekkLOmega/constant/transportProperties b/tutorials/incompressible/pimpleFoam/elipsekkLOmega/constant/transportProperties index 8b8770280..610a08bc7 100644 --- a/tutorials/incompressible/pimpleFoam/elipsekkLOmega/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/elipsekkLOmega/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.86e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1.86e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pimpleFoam/pitzDaily/constant/transportProperties b/tutorials/incompressible/pimpleFoam/pitzDaily/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pimpleFoam/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/pimpleFoam/pitzDaily/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/U b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/U index cee307a73..ce0679c53 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/U +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/U @@ -23,7 +23,7 @@ turbulentKE 0.24; turbulentOmega 1.78; -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 20 0 0 ); diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/k b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/k index b4cd87638..8e61ee9e5 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/k +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.24; diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nuTilda b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nuTilda index 41461e671..7b24b2747 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nuTilda +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nuTilda @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0.05; diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nut b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nut index 915f16d22..38155ce79 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nut +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/p b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/p index f85ce77a8..ac663ce37 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/p +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/0.org/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/constant/transportProperties b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/constant/transportProperties index 9b4179188..9acbd4a50 100644 --- a/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/les/motorBike/motorBike/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/les/pitzDaily/constant/transportProperties b/tutorials/incompressible/pisoFoam/les/pitzDaily/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pisoFoam/les/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/les/pitzDaily/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/les/pitzDailyMapped/constant/transportProperties b/tutorials/incompressible/pisoFoam/les/pitzDailyMapped/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pisoFoam/les/pitzDailyMapped/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/les/pitzDailyMapped/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/ras/cavity/constant/transportProperties b/tutorials/incompressible/pisoFoam/ras/cavity/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pisoFoam/ras/cavity/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/ras/cavity/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/pisoFoam/ras/cavityCoupledU/constant/transportProperties b/tutorials/incompressible/pisoFoam/ras/cavityCoupledU/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/pisoFoam/ras/cavityCoupledU/constant/transportProperties +++ b/tutorials/incompressible/pisoFoam/ras/cavityCoupledU/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/epsilon b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/epsilon index 21b1e98ef..dc27e2fcf 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/epsilon +++ b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 200; diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/k b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/k index cd7aa3109..2b39c9a2c 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/k +++ b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/constant/transportProperties b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/constant/transportProperties index 9b4179188..9acbd4a50 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/constant/transportProperties +++ b/tutorials/incompressible/porousSimpleFoam/angledDuctImplicit/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/epsilon b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/epsilon index 044bd80ab..8eac570f5 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/epsilon +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 200; diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/k b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/k index 9b5e379a4..7b491926d 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/k +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties index 9b4179188..9acbd4a50 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties b/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties index e0405ef2f..7fcac0b62 100644 --- a/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/airFoil2D/constant/transportProperties @@ -17,25 +17,8 @@ FoamFile transportModel Newtonian; -rho rho [ 1 -3 0 0 0 0 0 ] 1; - -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} +rho [1 -3 0 0 0 0 0] 1; +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/epsilon b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/epsilon index 84f822890..8adf56808 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/epsilon +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 20; diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/k b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/k index 60208ba13..74be565a8 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/k +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/nut b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/nut index 309360d6a..6ca6d3aef 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/0/nut +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties b/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties index 9b4179188..9acbd4a50 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/motorBike/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/epsilon b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/epsilon index ea5df0565..73f9d7fa5 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/epsilon +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/k b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/k index dd90e1e55..777c1a96c 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/k +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 1; diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/nut b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/nut index d397953c1..d749dfae0 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/nut +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/0.org/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties index ab12b4956..af89ac5fe 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/constant/transportProperties @@ -17,7 +17,7 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; +nu [0 2 -1 0 0 0 0] 1e-06; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties b/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pitzDaily/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties index b40b7d66c..401efe908 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/constant/transportProperties @@ -17,23 +17,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; - -CrossPowerLawCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 1; -} - -BirdCarreauCoeffs -{ - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 0; - n n [ 0 0 0 0 0 0 0 ] 1; -} - +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties b/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties index 591101233..9acbd4a50 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/rotorDisk/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties b/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties index 9b4179188..9acbd4a50 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/turbineSiting/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties index 591101233..9acbd4a50 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/constant/transportProperties @@ -16,6 +16,6 @@ FoamFile transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1.5e-05; +nu [0 2 -1 0 0 0 0] 1.5e-05; // ************************************************************************* // diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties index 1776b357e..979d92116 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/radiationProperties @@ -21,7 +21,7 @@ radiationModel P1; P1Coeffs { - C C [ 0 0 0 0 0 0 0 ] 0; + C C [0 0 0 0 0 0 0] 0; } absorptionEmissionModel binaryAbsorptionEmission; @@ -33,9 +33,9 @@ binaryAbsorptionEmissionCoeffs absorptionEmissionModel constantAbsorptionEmission; constantAbsorptionEmissionCoeffs { - absorptivity absorptivity [ 0 -1 0 0 0 0 0 ] 0.5; - emissivity emissivity [ 0 -1 0 0 0 0 0 ] 0.5; - E E [ 1 -1 -3 0 0 0 0 ] 0; + absorptivity absorptivity [0 -1 0 0 0 0 0] 0.5; + emissivity emissivity [0 -1 0 0 0 0 0] 0.5; + E E [1 -1 -3 0 0 0 0] 0; } } model2 diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties index f223c6abb..dbbab9e9f 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/constant/transportProperties @@ -15,10 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -rhoInf rhoInf [ 1 -3 0 0 0 0 0 ] 1.2; +rhoInf [1 -3 0 0 0 0 0] 1.2; transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties index f223c6abb..dbbab9e9f 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/constant/transportProperties @@ -15,10 +15,10 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -rhoInf rhoInf [ 1 -3 0 0 0 0 0 ] 1.2; +rhoInf [1 -3 0 0 0 0 0] 1.2; transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 1e-05; +nu [0 2 -1 0 0 0 0] 1e-05; // ************************************************************************* // diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/patchifyObstacles b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/patchifyObstacles index e184c4dbb..e375202c3 100755 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/patchifyObstacles +++ b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/patchifyObstacles @@ -71,7 +71,7 @@ for xi in $(seq 1 1 $nx); do echo "processing cube $n" pad="" - if [ $n -lt 10 ]; then + if [ $n -lt 10]; then pad="0" fi diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/G b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/G index 5bfc6d009..6fea30404 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/G +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/G @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 0 -3 0 0 0 0 ]; +dimensions [1 0 -3 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/H2O b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/H2O index 615f83b62..6cee312c8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/H2O @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/N2 b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/N2 index 46857fe93..e0b994958 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/N2 @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.79; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/O2 b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/O2 index 206549334..afd5664ee 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/O2 @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.21; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/T b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/T index 3fb56a7a7..9aa18b3fc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/T +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/T @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 350; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/U b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/U index bac859d62..8cd60750d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/U +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/alphat b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/alphat index 62d54f2cb..edaab89a8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/alphat @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -1 0 0 0 0 ]; +dimensions [1 -1 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/epsilon b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/epsilon index 448a7a085..92a339181 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 0.0449; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/k b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/k index 7d79256b2..e81f9772a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/k +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0938; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/nut b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/nut index c0334a141..5f9535f88 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/nut +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/p b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/p index 3ebd756ac..ab56d7d4f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0.org/p +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0.org/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 100000; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/G b/tutorials/lagrangian/reactingParcelFoam/filter/0/G index 5bfc6d009..6fea30404 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/G +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/G @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 0 -3 0 0 0 0 ]; +dimensions [1 0 -3 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/H2O b/tutorials/lagrangian/reactingParcelFoam/filter/0/H2O index 615f83b62..6cee312c8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/H2O +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/H2O @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/N2 b/tutorials/lagrangian/reactingParcelFoam/filter/0/N2 index 46857fe93..e0b994958 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/N2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/N2 @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.79; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/O2 b/tutorials/lagrangian/reactingParcelFoam/filter/0/O2 index 206549334..afd5664ee 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/O2 +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/O2 @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.21; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/T b/tutorials/lagrangian/reactingParcelFoam/filter/0/T index 3fb56a7a7..9aa18b3fc 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/T +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/T @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 350; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/U b/tutorials/lagrangian/reactingParcelFoam/filter/0/U index bac859d62..8cd60750d 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/U +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/U @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/alphat b/tutorials/lagrangian/reactingParcelFoam/filter/0/alphat index 62d54f2cb..edaab89a8 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/alphat +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/alphat @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -1 0 0 0 0 ]; +dimensions [1 -1 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/epsilon b/tutorials/lagrangian/reactingParcelFoam/filter/0/epsilon index 448a7a085..92a339181 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/epsilon +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 0.0449; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/k b/tutorials/lagrangian/reactingParcelFoam/filter/0/k index 7d79256b2..e81f9772a 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/k +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0938; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/nut b/tutorials/lagrangian/reactingParcelFoam/filter/0/nut index c0334a141..5f9535f88 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/nut +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/nut @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -1 0 0 0 0 ]; +dimensions [0 2 -1 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/0/p b/tutorials/lagrangian/reactingParcelFoam/filter/0/p index 3ebd756ac..ab56d7d4f 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/0/p +++ b/tutorials/lagrangian/reactingParcelFoam/filter/0/p @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 100000; diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/N2 b/tutorials/lagrangian/sprayFoam/aachenBomb/0/N2 index d312f1698..41c2e0929 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/N2 +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/N2 @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.766; diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/O2 b/tutorials/lagrangian/sprayFoam/aachenBomb/0/O2 index e08598099..b8e040eeb 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/O2 +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/O2 @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0.234; diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/T b/tutorials/lagrangian/sprayFoam/aachenBomb/0/T index da07d9701..b2849112d 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/T +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/T @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 0 0 1 0 0 0 ]; +dimensions [0 0 0 1 0 0 0]; internalField uniform 800; diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/U b/tutorials/lagrangian/sprayFoam/aachenBomb/0/U index 8abc3ee9f..ea7d4e0e9 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/U +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/U @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 1 -1 0 0 0 0 ]; +dimensions [0 1 -1 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/Ydefault b/tutorials/lagrangian/sprayFoam/aachenBomb/0/Ydefault index 97d3b3fc7..6d98e5661 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/Ydefault +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/Ydefault @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 0 0 0 0 0 0 ]; +dimensions [0 0 0 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/0/p b/tutorials/lagrangian/sprayFoam/aachenBomb/0/p index c13a0c26a..8366736d0 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/0/p +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/0/p @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 5e+06; diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties index 572195459..a1b5e037d 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/constant/transportProperties @@ -20,17 +20,17 @@ phases (phase1 phase2); phase1 { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 300; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 300; } phase2 { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-6; - rho rho [ 1 -3 0 0 0 0 0 ] 1027; + nu [0 2 -1 0 0 0 0] 1e-6; + rho [1 -3 0 0 0 0 0] 1027; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties index f6969a00e..91dd75102 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/constant/transportProperties @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -nu nu [0 2 -1 0 0 0 0] 0.01; +nu [0 2 -1 0 0 0 0] 0.01; // ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/thermodynamicProperties b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/thermodynamicProperties index fc5c6d921..69abb4a4b 100644 --- a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/thermodynamicProperties +++ b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/thermodynamicProperties @@ -17,15 +17,15 @@ FoamFile barotropicCompressibilityModel linear; -psiv psiv [ 0 -2 2 0 0 ] 2.5e-06; +psiv [0 -2 2 0 0] 2.5e-06; -rholSat rholSat [ 1 -3 0 0 0 ] 830; +rholSat [1 -3 0 0 0] 830; -psil psil [ 0 -2 2 0 0 ] 5e-07; +psil [0 -2 2 0 0] 5e-07; -pSat pSat [ 1 -1 -2 0 0 ] 4500; +pSat [1 -1 -2 0 0] 4500; -rhoMin rhoMin [ 1 -3 0 0 0 ] 0.001; +rhoMin [1 -3 0 0 0] 0.001; // ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/transportProperties b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/transportProperties index c5ea29f7a..2891ba9e2 100644 --- a/tutorials/multiphase/cavitatingFoam/les/throttle/constant/transportProperties +++ b/tutorials/multiphase/cavitatingFoam/les/throttle/constant/transportProperties @@ -15,54 +15,24 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -mul mul [ 1 -1 -1 0 0 ] 0.0065; +mul [1 -1 -1 0 0] 0.0065; -muv muv [ 1 -1 -1 0 0 ] 5.953e-06; +muv [1 -1 -1 0 0] 5.953e-06; phases (vapour water); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 7.831e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 830; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 7.831e-06; + rho [1 -3 0 0 0 0 0] 830; } vapour { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 4.252e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 0.14; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 4.252e-05; + rho [1 -3 0 0 0 0 0] 0.14; } diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/thermodynamicProperties b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/thermodynamicProperties index fc5c6d921..69abb4a4b 100644 --- a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/thermodynamicProperties +++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/thermodynamicProperties @@ -17,15 +17,15 @@ FoamFile barotropicCompressibilityModel linear; -psiv psiv [ 0 -2 2 0 0 ] 2.5e-06; +psiv [0 -2 2 0 0] 2.5e-06; -rholSat rholSat [ 1 -3 0 0 0 ] 830; +rholSat [1 -3 0 0 0] 830; -psil psil [ 0 -2 2 0 0 ] 5e-07; +psil [0 -2 2 0 0] 5e-07; -pSat pSat [ 1 -1 -2 0 0 ] 4500; +pSat [1 -1 -2 0 0] 4500; -rhoMin rhoMin [ 1 -3 0 0 0 ] 0.001; +rhoMin [1 -3 0 0 0] 0.001; // ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/transportProperties b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/transportProperties index c5ea29f7a..af76643fd 100644 --- a/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/transportProperties +++ b/tutorials/multiphase/cavitatingFoam/les/throttle3D/constant/transportProperties @@ -15,55 +15,24 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -mul mul [ 1 -1 -1 0 0 ] 0.0065; +mul [1 -1 -1 0 0] 0.0065; -muv muv [ 1 -1 -1 0 0 ] 5.953e-06; +muv [1 -1 -1 0 0] 5.953e-06; phases (vapour water); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 7.831e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 830; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 7.831e-06; + rho [1 -3 0 0 0 0 0] 830; } vapour { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 4.252e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 0.14; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 4.252e-05; + rho [1 -3 0 0 0 0 0] 0.14; } - // ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/thermodynamicProperties b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/thermodynamicProperties index fc5c6d921..ff3b88118 100644 --- a/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/thermodynamicProperties +++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/thermodynamicProperties @@ -17,15 +17,14 @@ FoamFile barotropicCompressibilityModel linear; -psiv psiv [ 0 -2 2 0 0 ] 2.5e-06; +psiv [0 -2 2 0 0] 2.5e-06; -rholSat rholSat [ 1 -3 0 0 0 ] 830; +rholSat [1 -3 0 0 0] 830; -psil psil [ 0 -2 2 0 0 ] 5e-07; +psil [0 -2 2 0 0] 5e-07; -pSat pSat [ 1 -1 -2 0 0 ] 4500; - -rhoMin rhoMin [ 1 -3 0 0 0 ] 0.001; +pSat [1 -1 -2 0 0] 4500; +rhoMin [1 -3 0 0 0] 0.001; // ************************************************************************* // diff --git a/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/transportProperties b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/transportProperties index c5ea29f7a..af76643fd 100644 --- a/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/transportProperties +++ b/tutorials/multiphase/cavitatingFoam/ras/throttle/constant/transportProperties @@ -15,55 +15,24 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -mul mul [ 1 -1 -1 0 0 ] 0.0065; +mul [1 -1 -1 0 0] 0.0065; -muv muv [ 1 -1 -1 0 0 ] 5.953e-06; +muv [1 -1 -1 0 0] 5.953e-06; phases (vapour water); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 7.831e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 830; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 7.831e-06; + rho [1 -3 0 0 0 0 0] 830; } vapour { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 4.252e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 0.14; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - m m [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] -999; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] -999; - k k [ 0 0 1 0 0 0 0 ] -999; - n n [ 0 0 0 0 0 0 0 ] -999; - } + nu [0 2 -1 0 0 0 0] 4.252e-05; + rho [1 -3 0 0 0 0 0] 0.14; } - // ************************************************************************* // diff --git a/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/thermophysicalProperties b/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/thermophysicalProperties index ad67959d0..eb43806c0 100644 --- a/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/thermophysicalProperties +++ b/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/thermophysicalProperties @@ -17,8 +17,8 @@ FoamFile phases (water air); -pMin pMin [ 1 -1 -2 0 0 0 0 ] 1000; +pMin [1 -1 -2 0 0 0 0] 1000; -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/transportProperties b/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/transportProperties index 3729fc764..f746c0679 100644 --- a/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/transportProperties +++ b/tutorials/multiphase/compressibleInterDyMFoam/ras/sloshingTank2D/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties index 9c1431441..8506bd51f 100644 --- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties +++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/constant/thermophysicalProperties @@ -17,8 +17,8 @@ FoamFile phases (water air); -pMin pMin [ 1 -1 -2 0 0 0 0 ] 10000; +pMin [1 -1 -2 0 0 0 0] 10000; -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/constant/thermophysicalProperties b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/constant/thermophysicalProperties index 9c1431441..8506bd51f 100644 --- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/constant/thermophysicalProperties +++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/constant/thermophysicalProperties @@ -17,8 +17,8 @@ FoamFile phases (water air); -pMin pMin [ 1 -1 -2 0 0 0 0 ] 10000; +pMin [1 -1 -2 0 0 0 0] 10000; -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary index 1b4dbb60a..79ef3a79e 100644 --- a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary +++ b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary @@ -20,18 +20,21 @@ FoamFile leftWall { type wall; + inGroups 1(wall); nFaces 50; startFace 4432; } rightWall { type wall; + inGroups 1(wall); nFaces 50; startFace 4482; } lowerWall { type wall; + inGroups 1(wall); nFaces 62; startFace 4532; } diff --git a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/thermophysicalProperties b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/thermophysicalProperties index 129c3a278..69dc3521d 100644 --- a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/thermophysicalProperties +++ b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/constant/thermophysicalProperties @@ -17,7 +17,7 @@ FoamFile phases (water oil mercury air); -pMin pMin [ 1 -1 -2 0 0 0 0 ] 10000; +pMin [1 -1 -2 0 0 0 0] 10000; sigmas ( diff --git a/tutorials/multiphase/interDyMFoam/ras/DTCHull/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/DTCHull/constant/transportProperties index 0bfa2f19b..7e4c459f6 100644 --- a/tutorials/multiphase/interDyMFoam/ras/DTCHull/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/DTCHull/constant/transportProperties @@ -20,17 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.09e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.8; + nu [0 2 -1 0 0 0 0] 1.09e-06; + rho [1 -3 0 0 0 0 0] 998.8; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/damBreakWithObstacle/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/floatingObject/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/floatingObject/constant/transportProperties index 3729fc764..f746c0679 100644 --- a/tutorials/multiphase/interDyMFoam/ras/floatingObject/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/floatingObject/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/constant/transportProperties index 0d7bbe9e6..35763b23e 100644 --- a/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/constant/transportProperties @@ -20,17 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 300; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 300; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-6; - rho rho [ 1 -3 0 0 0 0 0 ] 1027; + nu [0 2 -1 0 0 0 0] 1e-6; + rho [1 -3 0 0 0 0 0] 1027; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/constant/transportProperties index 3729fc764..e0fdefd56 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D/constant/transportProperties @@ -20,18 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; - +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/transportProperties index 3729fc764..f746c0679 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank2D3DoF/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/constant/transportProperties index 3729fc764..e0fdefd56 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D/constant/transportProperties @@ -20,18 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; - +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/constant/transportProperties index 3729fc764..f746c0679 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D3DoF/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/constant/transportProperties index 3729fc764..e0fdefd56 100644 --- a/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/sloshingTank3D6DoF/constant/transportProperties @@ -20,18 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; - +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interDyMFoam/ras/testTubeMixer/constant/transportProperties b/tutorials/multiphase/interDyMFoam/ras/testTubeMixer/constant/transportProperties index 3729fc764..f746c0679 100644 --- a/tutorials/multiphase/interDyMFoam/ras/testTubeMixer/constant/transportProperties +++ b/tutorials/multiphase/interDyMFoam/ras/testTubeMixer/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.2; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 998.2; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/laminar/capillaryRise/constant/transportProperties b/tutorials/multiphase/interFoam/laminar/capillaryRise/constant/transportProperties index 73d4778c9..5d5589105 100644 --- a/tutorials/multiphase/interFoam/laminar/capillaryRise/constant/transportProperties +++ b/tutorials/multiphase/interFoam/laminar/capillaryRise/constant/transportProperties @@ -20,46 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1e-06; - rho rho [1 -3 0 0 0 0 0] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [0 2 -1 0 0 0 0] 1e-06; - nuInf nuInf [0 2 -1 0 0 0 0] 1e-06; - m m [0 0 1 0 0 0 0] 1; - n n [0 0 0 0 0 0 0] 0; - } - BirdCarreauCoeffs - { - nu0 nu0 [0 2 -1 0 0 0 0] 0.0142515; - nuInf nuInf [0 2 -1 0 0 0 0] 1e-06; - k k [0 0 1 0 0 0 0] 99.6; - n n [0 0 0 0 0 0 0] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1.48e-05; - rho rho [1 -3 0 0 0 0 0] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [0 2 -1 0 0 0 0] 1e-06; - nuInf nuInf [0 2 -1 0 0 0 0] 1e-06; - m m [0 0 1 0 0 0 0] 1; - n n [0 0 0 0 0 0 0] 0; - } - BirdCarreauCoeffs - { - nu0 nu0 [0 2 -1 0 0 0 0] 0.0142515; - nuInf nuInf [0 2 -1 0 0 0 0] 1e-06; - k k [0 0 1 0 0 0 0] 99.6; - n n [0 0 0 0 0 0 0] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [1 0 -2 0 0 0 0] 0.0707106; +sigma [1 0 -2 0 0 0 0] 0.0707106; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/laminar/damBreak/constant/transportProperties b/tutorials/multiphase/interFoam/laminar/damBreak/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interFoam/laminar/damBreak/constant/transportProperties +++ b/tutorials/multiphase/interFoam/laminar/damBreak/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/laminar/mixerVessel2D/constant/transportProperties b/tutorials/multiphase/interFoam/laminar/mixerVessel2D/constant/transportProperties index 15e0e327a..63f9f40e9 100644 --- a/tutorials/multiphase/interFoam/laminar/mixerVessel2D/constant/transportProperties +++ b/tutorials/multiphase/interFoam/laminar/mixerVessel2D/constant/transportProperties @@ -20,18 +20,18 @@ phases (water oir); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-4; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-4; + rho [1 -3 0 0 0 0 0] 1000; } oir { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-4; - rho rho [ 1 -3 0 0 0 0 0 ] 500; + nu [0 2 -1 0 0 0 0] 1e-4; + rho [1 -3 0 0 0 0 0] 500; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.05; +sigma [1 0 -2 0 0 0 0] 0.05; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/les/nozzleFlow2D/constant/transportProperties b/tutorials/multiphase/interFoam/les/nozzleFlow2D/constant/transportProperties index c74376aa3..d3ee304bc 100644 --- a/tutorials/multiphase/interFoam/les/nozzleFlow2D/constant/transportProperties +++ b/tutorials/multiphase/interFoam/les/nozzleFlow2D/constant/transportProperties @@ -20,48 +20,17 @@ phases (fuel air); fuel { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 5.952e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 840; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 5.952e-06; + rho [1 -3 0 0 0 0 0] 840; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 8.5e-07; - rho rho [ 1 -3 0 0 0 0 0 ] 20; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 8.5e-07; + rho [1 -3 0 0 0 0 0] 20; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.0261; - +sigma [1 0 -2 0 0 0 0] 0.0261; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/DTCHull/constant/transportProperties b/tutorials/multiphase/interFoam/ras/DTCHull/constant/transportProperties index 0bfa2f19b..7e4c459f6 100644 --- a/tutorials/multiphase/interFoam/ras/DTCHull/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/DTCHull/constant/transportProperties @@ -20,17 +20,17 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.09e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 998.8; + nu [0 2 -1 0 0 0 0] 1.09e-06; + rho [1 -3 0 0 0 0 0] 998.8; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0; +sigma [1 0 -2 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/angledDuct/constant/transportProperties b/tutorials/multiphase/interFoam/ras/angledDuct/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interFoam/ras/angledDuct/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/angledDuct/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/damBreak/constant/transportProperties b/tutorials/multiphase/interFoam/ras/damBreak/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interFoam/ras/damBreak/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/damBreak/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/damBreakPorousBaffle/constant/transportProperties b/tutorials/multiphase/interFoam/ras/damBreakPorousBaffle/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interFoam/ras/damBreakPorousBaffle/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/damBreakPorousBaffle/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/waterChannel/constant/transportProperties b/tutorials/multiphase/interFoam/ras/waterChannel/constant/transportProperties index b86717bf8..4c569fe73 100644 --- a/tutorials/multiphase/interFoam/ras/waterChannel/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/waterChannel/constant/transportProperties @@ -20,18 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interFoam/ras/weirOverflow/constant/transportProperties b/tutorials/multiphase/interFoam/ras/weirOverflow/constant/transportProperties index 81106f5ea..577be61a9 100644 --- a/tutorials/multiphase/interFoam/ras/weirOverflow/constant/transportProperties +++ b/tutorials/multiphase/interFoam/ras/weirOverflow/constant/transportProperties @@ -20,48 +20,18 @@ phases (water air); water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; - CrossPowerLawCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 1e-06; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - m m [ 0 0 1 0 0 0 0 ] 1; - n n [ 0 0 0 0 0 0 0 ] 0; - } - - BirdCarreauCoeffs - { - nu0 nu0 [ 0 2 -1 0 0 0 0 ] 0.0142515; - nuInf nuInf [ 0 2 -1 0 0 0 0 ] 1e-06; - k k [ 0 0 1 0 0 0 0 ] 99.6; - n n [ 0 0 0 0 0 0 0 ] 0.1003; - } + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } -sigma sigma [ 1 0 -2 0 0 0 0 ] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; // ************************************************************************* // diff --git a/tutorials/multiphase/interMixingFoam/laminar/damBreak/constant/transportProperties b/tutorials/multiphase/interMixingFoam/laminar/damBreak/constant/transportProperties index 83c4643a5..307bc1aba 100644 --- a/tutorials/multiphase/interMixingFoam/laminar/damBreak/constant/transportProperties +++ b/tutorials/multiphase/interMixingFoam/laminar/damBreak/constant/transportProperties @@ -20,22 +20,22 @@ phases (air other water); air { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1.48e-05; - rho rho [1 -3 0 0 0 0 0] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } other { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1e-6; - rho rho [1 -3 0 0 0 0 0] 1010; + nu [0 2 -1 0 0 0 0] 1e-6; + rho [1 -3 0 0 0 0 0] 1010; } water { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1e-6; - rho rho [1 -3 0 0 0 0 0] 1000; + nu [0 2 -1 0 0 0 0] 1e-6; + rho [1 -3 0 0 0 0 0] 1000; } // Surface tension coefficients diff --git a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/constant/transportProperties b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/constant/transportProperties index be3d97f20..d3523579d 100644 --- a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/constant/transportProperties +++ b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/constant/transportProperties @@ -19,22 +19,22 @@ phases (water vapour); phaseChangeTwoPhaseMixture SchnerrSauer; -pSat pSat [1 -1 -2 0 0] 2300; // saturation pressure +pSat [1 -1 -2 0 0 0 0] 2300; // Saturation pressure -sigma sigma [1 0 -2 0 0 0 0] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; water { - transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 9e-07; - rho rho [1 -3 0 0 0 0 0] 1000; + transportModel Newtonian; + nu [0 2 -1 0 0 0 0] 9e-07; + rho [1 -3 0 0 0 0 0] 1000; } vapour { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 4.273e-04; - rho rho [1 -3 0 0 0 0 0] 0.02308; + nu [0 2 -1 0 0 0 0] 4.273e-04; + rho [1 -3 0 0 0 0 0] 0.02308; } KunzCoeffs diff --git a/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/constant/transportProperties b/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/constant/transportProperties index a9e6e6525..e5342b55c 100644 --- a/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/constant/transportProperties +++ b/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/constant/transportProperties @@ -18,22 +18,22 @@ phases (water vapour); phaseChangeTwoPhaseMixture SchnerrSauer; -pSat pSat [1 -1 -2 0 0] 2300; // saturation pressure +pSat [1 -1 -2 0 0 0 0] 2300; // Saturation pressure -sigma sigma [1 0 -2 0 0 0 0] 0.07; +sigma [1 0 -2 0 0 0 0] 0.07; water { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 9e-07; - rho rho [1 -3 0 0 0 0 0] 1000; + nu [0 2 -1 0 0 0 0] 9e-07; + rho [1 -3 0 0 0 0 0] 1000; } vapour { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 4.273e-04; - rho rho [1 -3 0 0 0 0 0] 0.02308; + nu [0 2 -1 0 0 0 0] 4.273e-04; + rho [1 -3 0 0 0 0 0] 0.02308; } KunzCoeffs diff --git a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/Theta b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/Theta +++ b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/p_rgh b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/p_rgh index 735100431..ade3f71b2 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/constant/transportProperties b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/constant/transportProperties index bb819c4d0..49a895f4e 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/constant/transportProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/constant/transportProperties @@ -88,7 +88,7 @@ drag // This is a dummy to support the Smagorinsky model transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 0; +nu [0 2 -1 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/constant/transportProperties b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/constant/transportProperties index 9ee595eb1..c74003969 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/constant/transportProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/constant/transportProperties @@ -230,7 +230,7 @@ drag // This is a dummy to support the Smagorinsky model transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 0; +nu [0 2 -1 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/constant/transportProperties b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/constant/transportProperties index 9ee595eb1..c74003969 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/constant/transportProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/constant/transportProperties @@ -230,7 +230,7 @@ drag // This is a dummy to support the Smagorinsky model transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 0; +nu [0 2 -1 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/epsilon b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/epsilon index 3f507afed..753f6303e 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/epsilon +++ b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/epsilon @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -3 0 0 0 0 ]; +dimensions [0 2 -3 0 0 0 0]; internalField uniform 20; diff --git a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/k b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/k index 4704b49c8..d611571ca 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/k +++ b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/0/k @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/constant/transportProperties b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/constant/transportProperties index 5cefec5d5..803698470 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/constant/transportProperties +++ b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/constant/transportProperties @@ -242,7 +242,7 @@ drag // This is a dummy to support the Smagorinsky model transportModel Newtonian; -nu nu [ 0 2 -1 0 0 0 0 ] 0; +nu [0 2 -1 0 0 0 0] 0; // ************************************************************************* // diff --git a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/constant/transportProperties b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/constant/transportProperties index 3cfdbabfa..fc103cc62 100644 --- a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/constant/transportProperties +++ b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/constant/transportProperties @@ -20,29 +20,29 @@ phases water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } oil { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 500; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 500; } mercury { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.125e-07; - rho rho [ 1 -3 0 0 0 0 0 ] 13529; + nu [0 2 -1 0 0 0 0] 1.125e-07; + rho [1 -3 0 0 0 0 0] 13529; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } ); diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary index 1b4dbb60a..79ef3a79e 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/polyMesh/boundary @@ -20,18 +20,21 @@ FoamFile leftWall { type wall; + inGroups 1(wall); nFaces 50; startFace 4432; } rightWall { type wall; + inGroups 1(wall); nFaces 50; startFace 4482; } lowerWall { type wall; + inGroups 1(wall); nFaces 62; startFace 4532; } diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/transportProperties b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/transportProperties index 3cfdbabfa..fc103cc62 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/transportProperties +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/constant/transportProperties @@ -20,29 +20,29 @@ phases water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } oil { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 500; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 500; } mercury { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.125e-07; - rho rho [ 1 -3 0 0 0 0 0 ] 13529; + nu [0 2 -1 0 0 0 0] 1.125e-07; + rho [1 -3 0 0 0 0 0] 13529; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } ); diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/constant/transportProperties b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/constant/transportProperties index 3cfdbabfa..fc103cc62 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/constant/transportProperties +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/constant/transportProperties @@ -20,29 +20,29 @@ phases water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } oil { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 500; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 500; } mercury { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.125e-07; - rho rho [ 1 -3 0 0 0 0 0 ] 13529; + nu [0 2 -1 0 0 0 0] 1.125e-07; + rho [1 -3 0 0 0 0 0] 13529; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } ); diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/constant/transportProperties b/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/constant/transportProperties index 3cfdbabfa..fc103cc62 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/constant/transportProperties +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/constant/transportProperties @@ -20,29 +20,29 @@ phases water { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } oil { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1e-06; - rho rho [ 1 -3 0 0 0 0 0 ] 500; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 500; } mercury { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.125e-07; - rho rho [ 1 -3 0 0 0 0 0 ] 13529; + nu [0 2 -1 0 0 0 0] 1.125e-07; + rho [1 -3 0 0 0 0 0] 13529; } air { transportModel Newtonian; - nu nu [ 0 2 -1 0 0 0 0 ] 1.48e-05; - rho rho [ 1 -3 0 0 0 0 0 ] 1; + nu [0 2 -1 0 0 0 0] 1.48e-05; + rho [1 -3 0 0 0 0 0] 1; } ); diff --git a/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/constant/transportProperties b/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/constant/transportProperties index cc69c6944..6455cd8df 100644 --- a/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/constant/transportProperties +++ b/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/constant/transportProperties @@ -16,7 +16,7 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1e-06; +nu [0 2 -1 0 0 0 0] 1e-06; // ************************************************************************* // diff --git a/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/constant/transportProperties b/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/constant/transportProperties index cc69c6944..6455cd8df 100644 --- a/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/constant/transportProperties +++ b/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/constant/transportProperties @@ -16,7 +16,7 @@ FoamFile transportModel Newtonian; -nu nu [0 2 -1 0 0 0 0] 1e-06; +nu [0 2 -1 0 0 0 0] 1e-06; // ************************************************************************* // diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/Theta b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/Theta +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/Theta b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/Theta +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p index b7dd1c386..ce57d6615 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 10e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p_rgh index 0efd9743e..4b8924f06 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 10e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles index c9b385ccd..f417c38e3 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/Theta b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/Theta +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh index 201275d82..de5ac9e43 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles index c9b385ccd..f417c38e3 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p index ae5863218..84126539d 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p_rgh b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p_rgh index 6723bb6a1..3659b453f 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p_rgh +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/constant/transportProperties b/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/constant/transportProperties index 5c4f2ad6c..38345834a 100644 --- a/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/constant/transportProperties +++ b/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/constant/transportProperties @@ -15,23 +15,23 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Dab Dab [0 2 -1 0 0 0 0] 1e-06; -alphatab alphatab [0 0 0 0 0 0 0] 1; +Dab [0 2 -1 0 0 0 0] 1e-06; +alphatab [0 0 0 0 0 0 0] 1; phases (sludge water); sludge { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1e-06; - rho rho [1 -3 0 0 0 0 0] 1000; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 1000; } water { transportModel Newtonian; - nu nu [0 2 -1 0 0 0 0] 1e-06; - rho rho [1 -3 0 0 0 0 0] 990; + nu [0 2 -1 0 0 0 0] 1e-06; + rho [1 -3 0 0 0 0 0] 990; } // ************************************************************************* // diff --git a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/Theta b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/Theta +++ b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p +++ b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh index 071e58a39..9b695bbaa 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/Theta b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/Theta +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh index 071e58a39..9b695bbaa 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles b/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles index c9b385ccd..f417c38e3 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/0/Theta.particles @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/Theta b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/Theta +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh index 071e58a39..9b695bbaa 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta index e45304b83..4cfbc0bbe 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/Theta @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0.0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p index 961771c72..0af317df7 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh index 071e58a39..9b695bbaa 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles b/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles index c9b385ccd..f417c38e3 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/0/Theta.particles @@ -14,7 +14,7 @@ FoamFile } // ************************************************************************* // -dimensions [ 0 2 -2 0 0 0 0 ]; +dimensions [0 2 -2 0 0 0 0]; internalField uniform 0; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p index ae5863218..84126539d 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p_rgh b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p_rgh index 6723bb6a1..3659b453f 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p_rgh +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/0/p_rgh @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 1e5; diff --git a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/D b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/D index f1de6620b..2faf71aca 100644 --- a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/D +++ b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/D @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 0 1 0 0 0 0 0 ]; +dimensions [0 1 0 0 0 0 0]; internalField uniform ( 0 0 0 ); diff --git a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/p b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/p index c7a6d901f..98c43c545 100644 --- a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/p +++ b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/0/p @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -dimensions [ 1 -1 -2 0 0 0 0 ]; +dimensions [1 -1 -2 0 0 0 0]; internalField uniform 0;