diff --git a/applications/solvers/financial/financialFoam/createFields.H b/applications/solvers/financial/financialFoam/createFields.H
index dc0da4d2a3ed8656c291a702e4a50113cfdc5082..d9a8769d77a0b7e4b3486fca54955d7876defe2c 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
-    (
-        financialProperties.lookup("strike")
-    );
+dimensionedScalar strike
+(
+    "strike",
+    dimLength,
+    financialProperties.lookup("strike")
+);
 
-    dimensionedScalar r
-    (
-        financialProperties.lookup("r")
-    );
+dimensionedScalar r
+(
+    "r",
+    dimless/dimTime,
+    financialProperties.lookup("r")
+);
 
-    dimensionedScalar sigma
-    (
-        financialProperties.lookup("sigma")
-    );
+dimensionedScalar sigma
+(
+    "sigma",
+    dimensionSet(0, 0, -0.5, 0, 0),
+    financialProperties.lookup("sigma")
+);
 
-    dimensionedScalar sigmaSqr = sqr(sigma);
+dimensionedScalar sigmaSqr = sqr(sigma);
 
 
-    Info<< nl << "Reading field V" << endl;
+Info<< nl << "Reading field V" << endl;
 
-    volScalarField V
+volScalarField V
+(
+    IOobject
     (
-        IOobject
-        (
-            "V",
-            runTime.timeName(),
-            mesh,
-            IOobject::MUST_READ,
-            IOobject::AUTO_WRITE
-        ),
-        mesh
-    );
+        "V",
+        runTime.timeName(),
+        mesh,
+        IOobject::MUST_READ,
+        IOobject::AUTO_WRITE
+    ),
+    mesh
+);
 
 
-    surfaceVectorField Pf
+surfaceVectorField Pf
+(
+    IOobject
     (
-        IOobject
-        (
-            "Pf",
-            runTime.timeName(),
-            mesh,
-            IOobject::NO_READ,
-            IOobject::NO_WRITE
-        ),
-        mesh.Cf()
-    );
+        "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
+volVectorField P
+(
+    IOobject
     (
-        P.component(Foam::vector::X) - strike,
-        dimensionedScalar("0", V.dimensions(), 0.0)
-    );
+        "P",
+        runTime.timeName(),
+        mesh,
+        IOobject::NO_READ,
+        IOobject::NO_WRITE
+    ),
+    mesh.C()
+);
 
+V == max
+(
+    P.component(Foam::vector::X) - strike,
+    dimensionedScalar("0", V.dimensions(), 0.0)
+);
 
-    volScalarField delta
+volScalarField delta
+(
+    IOobject
     (
-        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 82d101d8c1b18d88c41af9ffd0f7e4d10fa89cd2..f3809377b76459bd49ec14f6c09c92e2d2ddfc4e 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 f170e212a177ae396733ce3060274500fb508a04..0554d9268aa83e167bea638bc908b35e4091d22d 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
+        "U",
+        runTime.timeName(),
+        mesh,
+        IOobject::MUST_READ,
+        IOobject::AUTO_WRITE
+    ),
+    mesh
+);
+
+
+Info<< "Creating face flux\n" << endl;
+surfaceScalarField phi
+(
+    IOobject
     (
-        IOobject
-        (
-            "phi",
-            runTime.timeName(),
-            mesh,
-            IOobject::NO_READ,
-            IOobject::NO_WRITE
-        ),
+        "phi",
+        runTime.timeName(),
         mesh,
-        dimensionedScalar("zero", mesh.Sf().dimensions()*U.dimensions(), 0.0)
-    );
+        IOobject::NO_READ,
+        IOobject::NO_WRITE
+    ),
+    mesh,
+    dimensionedScalar("zero", mesh.Sf().dimensions()*U.dimensions(), 0.0)
+);
 
 
-    singlePhaseTransportModel laminarTransport(U, phi);
+singlePhaseTransportModel laminarTransport(U, phi);
 
-    autoPtr<incompressible::RASModel> turbulence
-    (
-        incompressible::RASModel::New(U, phi, laminarTransport)
-    );
+autoPtr<incompressible::RASModel> turbulence
+(
+    incompressible::RASModel::New(U, phi, laminarTransport)
+);
 
-    dimensionedVector Ubar(laminarTransport.lookup("Ubar"));
+dimensionedVector Ubar("Ubar", dimVelocity, laminarTransport.lookup("Ubar"));
 
-    vector flowDirection = (Ubar/mag(Ubar)).value();
-    tensor flowMask = sqr(flowDirection);
+vector flowDirection = (Ubar/mag(Ubar)).value();
+tensor flowMask = sqr(flowDirection);
 
-    dimensionedVector gradP
-    (
-        "gradP",
-        dimensionSet(0, 1, -2, 0, 0),
-        vector::zero
-    );
+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 8c954b6a6164f25378c22c77b6604ddf2c5942ea..56b934d58aeb5f5c7fba4d7b8f0387678f5786dd 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 3740f1056330f92ca9f6b16a615c996f9676b60c..e4e0f7b8a9132393e593dd616cb53960f7eafde2 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
-        )
-    );
-
-    dimensionedScalar psil(thermodynamicProperties.lookup("psil"));
-
-    dimensionedScalar rholSat(thermodynamicProperties.lookup("rholSat"));
-
-    dimensionedScalar psiv(thermodynamicProperties.lookup("psiv"));
-
-    dimensionedScalar pSat(thermodynamicProperties.lookup("pSat"));
-
-    dimensionedScalar rhovSat("rhovSat", psiv*pSat);
-
-    dimensionedScalar rhol0("rhol0", rholSat - pSat*psil);
-
-    dimensionedScalar rhoMin(thermodynamicProperties.lookup("rhoMin"));
+        "thermodynamicProperties",
+        runTime.constant(),
+        mesh,
+        IOobject::MUST_READ_IF_MODIFIED,
+        IOobject::NO_WRITE
+    )
+);
+
+dimensionedScalar psil
+(
+    "psil",
+    dimCompressibility,
+    thermodynamicProperties.lookup("psil")
+);
+
+dimensionedScalar rholSat
+(
+    "rholSat",
+    dimDensity,
+    thermodynamicProperties.lookup("rholSat")
+);
+
+dimensionedScalar psiv
+(
+    "psiv",
+    dimCompressibility,
+    thermodynamicProperties.lookup("psiv")
+);
+
+dimensionedScalar pSat
+(
+    "pSat",
+    dimPressure,
+    thermodynamicProperties.lookup("pSat")
+);
+
+dimensionedScalar rhovSat("rhovSat", psiv*pSat);
+
+dimensionedScalar rhol0("rhol0", rholSat - pSat*psil);
+
+dimensionedScalar rhoMin
+(
+    "rhoMin",
+    dimDensity,
+    thermodynamicProperties.lookup("rhoMin")
+);
diff --git a/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H b/applications/solvers/multiphase/compressibleMultiphaseInterFoam/createFields.H
index ce0faac571f5925ab029a36d0ebb7948c45670cb..4110b86e7f6241294c3bf6e1f6b7e30ab9b90f47 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 0894f3c6f36cad642f7fd5abac6e7911151f15e8..352c85694edce924008f6ae3c9d37d5b60d323e3 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 d25fbdfec9c248140be271dd5568e2977475e20f..5575253888798e8453f2be77799434dfd4872af0 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 08e7c0b04302b93c3e5b5831ae186fb351648061..85954554f70a8caa89d3011ac88bbdbbc8197de3 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 9fc3bcbbbe52456b95df5a9f38555b19659a9fcc..c52c897b3feeeab48570978c35c1054facbf37fe 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 9671f7a865f29d8f9eaef14e3ed9c40486ff5ebb..455ea9b0bfb25b077cb8aee2342180ee2dddfe85 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 9671f7a865f29d8f9eaef14e3ed9c40486ff5ebb..455ea9b0bfb25b077cb8aee2342180ee2dddfe85 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 9671f7a865f29d8f9eaef14e3ed9c40486ff5ebb..455ea9b0bfb25b077cb8aee2342180ee2dddfe85 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 9671f7a865f29d8f9eaef14e3ed9c40486ff5ebb..455ea9b0bfb25b077cb8aee2342180ee2dddfe85 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 a858f4cb29194b5744fe54a9571f388aa41bcdfe..dde9d1708276343f6603dc8cef505062cd4406e7 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 a2273176ae276b2385adc1c5aeef905dbe19ca2e..cf74ae85b402d6db71075ae9d98029557e7d1b6b 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 3e5e056ecbab312d64e1de315a3f20c80079e9c1..46a3eb55a7b12561ad9a1eee5e56042a4ee2e3dd 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 586070a2fb2a3a193f9be766fde66a7b3f7936cf..3c626b94ec414ec8fd7ca02741fde001bb1f2603 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 3aa468840cf71f795f99f14cd355f38d2c7d695a..4717c5b0a7d1cb1b52b8a7aa09230d343b3353ae 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 ad7dccef0aaf2fde528f2832e2734e7308f7abcf..6edaad6ebdc66dfdc4b312c3d56bc534fd9d24af 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 0f2213b686b665a9e8ae8e09331e1c3129f895c8..3deb2a66c99397cd00d49ae9c7590650bd192103 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 3e87a3b8f6b150b6edaf4e904dd1770a0794d10a..1201dbb4aaa369e5ab203437a7040bf145103f0f 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 019b549e6b2659381821eb56f7afefcd0faab1a8..eb41da76fdd7cb4cdc3d672629df5b106bc1a6fd 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<volScalarField> 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 071ac622310edf52e64fedee843dd7f0ddcbf2d9..afd5b000a9c87eb6b10ac05d9f7c626846840449 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 0091aeee8f1b25cb29be7bfb428b0f7513097bc0..81718a32d7a67f60ebf4e8a71d58a305ae1be6a6 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 c794185b34979dcaa6715fed2d74a02692c0bfb4..9d7f24f8de6a4aeeb0b28994b221f235a49e4e58 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 504a5e1e47365e0fe341428c00d46211a82c7f4e..1a7e14495a36de16a4dff4ee89ccdb28f0e61ff9 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 c0acc95e58f0ab1433d29fd2375f028f022b1926..2a2806fb24322b4b63e82f37c49fd0ded06989ca 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 62bcc46028f08693b8560fb838d9e04357ab07fe..ee7c5e45e7012d3e0d7c2ff2609e38d9a8c7ad70 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 ebfddffa10ceb7db0d72b8b0ec33109f5071f600..9e587306db3ea4e3860628d72e4cf437bca523eb 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<scalar>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/B
index 035bd2bac10770e415bc536ca518ff0d34a2e8ba..8a430bb0565e701a116ffd690ad2b4528d40f44f 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<symmTensor>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CR
index 61ebec7a6ea20809bad8410dcc639cf9893f94c6..9076af2173db95caa175826910f6b09d5ba8249e 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<symmTensor>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/CT
index 51505ae127b69c619809a9d8514078b8e448e38f..fcb9f43e114f255723afc551953fecd1e9810dc8 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<symmTensor>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Lobs
index b33c7bd7ec0e07f3ed9073aae5aa9b1b6ac2a73e..82ef44f36b26b61143246854506f30be2ea1827a 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<scalar>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Nv
index d7a0451e7e9fa32fb561627c65d29121cff2934b..d1b228459a10cb672d261ac50f80d6b58e50ba3a 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<scalar>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/Su
index 2776c4cd1fde71f8569232fa94284926c818678b..e7ac33c7fe90eece0bf114a5afbbaf4d2952ce56 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 9280aeafb23ee050fbbc9e836291c9d8fc44c67d..a508662b3fec00c248de630bf38728708138b0f8 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 802612268cd6ec1920f54608d31c3f6611ca524c..c72df6e214d9c228399d17dcec9cf91e63438c51 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 c13c56c121b47f69f747a09cdb3fac631364b05a..d80165816ac897dbec1fbfab831c7755af8b2ef7 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 0ba04cf8fae7ee12fbb7c7014db8f671bdbaedea..53d36f4c5b66ed298564491c74d1f7594d372d4c 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 9a4f7880ffd35827842ed36f5254a18f1216b85d..43ad33228e6138c13f9f4835def2f1ad04e8e6c2 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 8c1e73d089c936f30555b12ec35e50c249c6738d..4a719759e633e43a8c907ddfd3ad6a3761b21b66 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<scalar>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/epsilon
index 26ca09c49a4e23474361b5820d143111ea232c76..b5c06f18c3d5d0d6fe15274aea9fe5fad44f87af 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 634eeeb1e1d1653d0e8baee4bfd82518ecfec8fc..af3c6a8bb59975e2c4f31de4e66b7b26f99cace7 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 a9ff01787fbca262cf592b0e145c796f05d38f02..e6c8fe0ee9f05a60cc6616303250b1204e52662c 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 a9ff01787fbca262cf592b0e145c796f05d38f02..e6c8fe0ee9f05a60cc6616303250b1204e52662c 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 9bd26827fee4d8bc7c6e0fba66586af885cc53dc..f46f287c673fa763e14dcd01f3e1a70d926595d8 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<symmTensor>
 8025
diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/0.org/p
index 39eec312887a779704a7e951a047172dc1a97168..5d0efb0b2c4adf13080d1948fb3bffb27fb315da 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 57a9ae537217d5a8376bf2ad89092674b0b12aa1..18300060a6e995e456ba91f2f4b096e22e844748 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 603093e6e38418cd498fe3fe0485fce0bcb1a4fc..f5f843e597311304fe1b8bc1ef521cb61d1d7177 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 113acd86c3edf4a57d45336553a49ee7dc425bea..e39fcccf879eedcde07a7003b895968c8f994fca 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 ca17b8af4e6b06ddb853f141329a932417148368..b1a20cd21f49b0ec96b473b0d17e98903a35fc44 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 83a5890120720a9fc49b2ab616d20cd74ca1359e..e6e3ab3a222946484662b5ab20e075b7db18a042 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 8d4aff1e1609cf81945ca89b2820b4375e0045a6..397d6345d016090fb69c6398783db336edb2cd5b 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 27f323c02e5940027c77b74a5db773486d5fd965..c0de6fda5d33dcede2ce21fe7c235509fb76ce5e 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 246934deb59923ea8d9c926cb299210fce7fc08b..1c21d87a307a4e96604c508cf8c588f5d27bd40f 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 b7c4847d5b5d29d37d180d40d0c0367630da590d..863152a970a6b8e3f91a98b5df5f25207e356634 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 6ce48dc3fe1bb4248bccf9f4c539737053d731c6..242c5aace453ff7621aeca2c2cc7e4e12643db20 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 8c37c14734721e9f6515512ba2f1b5e13b67d002..0c23675f65f8dc91d44e80efe23afaa0f7c3fb0d 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 3558155d0969e9596963f06b0abfe7a42ae843cf..587f6acbd923a4a66f6cb2822d2e9a8174022cc4 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 cfc9a229b5600365095bb9c87b65383ac793f0a3..fdcaf9c13701a8949bbb9167e745a5996a316089 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 07e4effd34477ef7ca3540c51a879f8f622b4a94..3b5704561a04c8f3b4ef8791fbf63d188333d5fe 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 60208ba1315b9f30cb3dbcfc013eaf2118504c1a..74be565a854239ace90b2425a397507cb8c36b3d 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 21b1e98ef916e45e087b197e36c0e1d1e8190105..dc27e2fcffbe8e5a9ff97de65d0e600b76f97d76 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 cd7aa31096656069b0dd238accfc2160b6efb306..2b39c9a2cd8a06efb376e35527a0bf6b2f192cc4 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 4362a65a8dc56d908eea3ae8f3a9a5702dea1a96..fcb2bc9b0086d3236de4cfe6d5891b3035585ce9 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 21b1e98ef916e45e087b197e36c0e1d1e8190105..dc27e2fcffbe8e5a9ff97de65d0e600b76f97d76 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 cd7aa31096656069b0dd238accfc2160b6efb306..2b39c9a2cd8a06efb376e35527a0bf6b2f192cc4 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 bb5efe789707d74951c20b26871d819be9d79071..93c3dbbd464b36af1d92921b2e1c9c4cd18adf0c 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 21ee6987d63fa523538dfd0405390e6f530383c8..ae4876ed069eee4a952525a870fe084ac9ac5aa2 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 ece1ab678bf98765b9167650337a833cdc6662bd..3a1827546e0966faf4670985a042614a857f8ed1 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 c75e5506a6ffcc4f0e74d4f75805144e7183260d..4fca314b2491e65508b0d65181093e7650efe24f 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 2494f1643f1b6d201b7a9ff35e6e4b07de66fe35..b3de99a728dafc0c6defcca9c6541b35665192d7 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 bcc188d7b5a790a122ed4667767c6eeb45d6f929..fd5ad5452da1db0c7390972a520f242bf5af528a 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 1dd93605f14168df6fea5446e1fe7fdf01c9052e..4c20820399c8b9b98809abe107322c66b0d20d84 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 b5e11bb73855edbfea417b5ce73b338d433d2fcc..c3647d56f6d07919923986d519d8b28719e12388 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 4edb0c49dcbad0d7f929b94aca49811d361999f0..b7c7278bb3a930b382a5f437253e0cbb693996ef 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 1b17cb300b1101ba9193c0976630601dadcfc5af..72e71e8c2c47bd7edbaed7ed0eb05bf29b8b6b36 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 e4cb992d829e294268b4721d21cf028bf7eac1ac..efc71c530a4fa8ff4742b5fabee0655737f1041b 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 2eb277f9c6aac08e1175469ed8856cf23d8fa8c0..527596874ec56e1a42f55e59c8332d6a2ad526b5 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 7d6a69919866eba37b88df23e2b8131f0002db76..688e05647f94ddceb42e50c8ac63d8e4d55f72ee 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 59bf5a53e3351470f7caf666fcaf4af91ee25fa8..5a6fca1d9ff876b60d828f7066e9faf5b2141c10 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 59bf5a53e3351470f7caf666fcaf4af91ee25fa8..5a6fca1d9ff876b60d828f7066e9faf5b2141c10 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 4f5f33d8dcbd4c245621ae11efab2d83855cd33e..db3d16a1048868f6d24d721542222efb45097a87 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 94e7bd079472dc4572e2d24030e1b13af0ef95db..703d83b4dce14f80cb5464159862af3c7d89da6b 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 5d7b3ac78fa70b4ad5ccc746e3405b09f364b4a0..98fdad00a98626a9bb33fa12d6d1e71d93e7370f 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 b2d00fdb820fba3ffb9e9e58cbfc13951557cbc4..a4b4e1137218768ec6ae769a202f12737e2758df 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 674b7e0d4e4a274851433bd78737401d0bb72a33..ce09e521083bf681983ad9fad94b762e959519c8 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 674b7e0d4e4a274851433bd78737401d0bb72a33..ce09e521083bf681983ad9fad94b762e959519c8 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 674b7e0d4e4a274851433bd78737401d0bb72a33..ce09e521083bf681983ad9fad94b762e959519c8 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 656062e8a95733adcfc4337933ebf94fe4277cb7..ea17f0ac0becc588b329465ee2768d12ba8a4203 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 38b557127938567b2df7599f54cab3741b5849fb..7db4668cb7b7e4ee068f84a78c95856a3fa08491 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 2ec1a436d0b6b5d2385ffcfd11e4f88b9b32ee0d..406d2199d55cbc2ef150a1e20291a74249346f18 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 6f84aac5bcbe2ec8e3bf99126d3c6d84705c0079..7ac310e54235e132ae53590bdc56d22567de044d 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 995ea65f2e0d5f23d22c3df1dd30ac0d6d7e457b..95a8ab241931ed280d6d27cedd3cffa19a46fe42 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 4fac31365501be10892c2f751e29e4b764c9912e..a8271081ed455ec64ad86ab0f962bab22b0954d7 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 f8b893353b76f57d6ae12e26155222de3fb11916..d411f9233d11563c03630c02f145ea5da2694a59 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 2558d1e2e9d4b39746087c89a625c847af9eca80..c5017c9401d4caf5add94f250cc2c852f7be1932 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 2f81b33af445a55a96e72c47a3cdeecef5adbb2f..a3a5ab714283d5c28889916784beba0278f2421e 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 9c7030303907f926511c4ac892805a51d90eb019..104dee8a6abb6119ed764beb934ec0dd556fbe42 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 67ab26120bad0c07675149ebbc4845e4bdf15428..09c45f4749df345662e42bfaac13dc6ffbecc88c 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 504cce231e59244c19df82a79ea3d62537659d49..79034a694b674fda4f9f6f681a59337b94fbf131 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 25123622269471dad7f82400d51592d798c34c4b..90c8ed58286fb8a6d275f209dc04a7578d983279 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 3ce2f9e22e087e620c1cbc7ca1ed749ec10dd4b7..0c718a497405164857365dd63eb249fcaf2fe027 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 5269b3150e47fd504cf2e97c2691417193392c67..4136dc3807263cb8289a3e1edf3cd953e22971fd 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 fa5d09d4f63ee36cdb79712858a08b47ecfec113..3db0d49a1aded6a6fadea0283e0052f9b592b398 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 0353535f09cc05d977c8a9004e87a216029bbb8b..f2fe72f4ecb1ca7a9b5a952526fa4df9a9b2d67e 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 047ac1cbcd1d2d0dc18059ce91c969dbb9e501a9..c86f27af06ed4a94f8383bfdb68396fdc4dc6ca3 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 1055f405ba72b06b3e41ca4c6ca0bbd682041ff4..1abbc25b7188bf70cc60237ebbfff50b020967f9 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 7ed2af3079a0d82fb35ea799efb218752d18442f..07b4439977d1104f9f974e217732dd31609244c4 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 0d3adc0859ce868e38ebb100c6b16d952e1892a4..21dc2662dfdbf9cd4838df83dfb337d6f5d36d19 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 207b4528ee50e4d76eb59be50cee04f021b4e6cb..32fe7135fd36f6599ba83f359a5e26c0029e323e 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 489cefb1d1ed79f1585b740594963a63f5f36aa4..ee68cad641cbd213f6177ab056196ed0b9451b32 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 53fd54c2ff0154ed9d4aedbea434dd519ff35fc1..f2c42dfc29f40aa100339ee290d3f12c61dd4603 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 0a2b3b58a7bc3147d30119888a8496cafde0ba8d..572ecdcc48dd6ee94d4f845b45f75a7072821874 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 50a0eef121facb750917ee81fa476791f3246a61..11e676bc081c2daae3b2385b5e655509df77b3ae 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 751ffd13b845d512dd1c1ecaac448c8cbf6d8459..4579dd76ff08d9755030eede1b5e5be08a720e57 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 34964aa06528ab0d935cfe028b67d6930faea0cb..5048e273ad76bac9b5fbed4a7e3399565efdb2b8 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 483ab3301283856fe8b10b1f1334a9b2f5d4959c..b5b39c129784e9dcfafcc569cc7495250ae31ee8 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 9bd552a68a7207d5a63796cc2fd3c243aff4837b..e896e89992093b63b4ab3eec4462214f12fd2648 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 d2d9900782a24e2181e23836d7828820a1de8e28..e03063b0fec8f762fe745408afe89ce0ea9d4719 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 6c8f70a789d509abaf1cc75b36eaf877049cbfa2..5bac915cad49a165e23342492fac8124e25d0a83 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 3650a0ba269cf31faf63494013e57fabf668b624..7068537e931025e4d4f59044077cf1b1dd5ac8ce 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 ecdb3d27330cb39968e9c4cb144f3163df68c553..357138e2849cf56f28cdd0df65918401b2199cc2 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 483ab3301283856fe8b10b1f1334a9b2f5d4959c..72455ddff403aaf847d676c7534692740a17d901 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 1607a6113fa208e9b896c37a6fffc8029485bb5e..377a03ac51044410a52009c7e70097ade7683b3d 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 ac692bb7f2b0ed6680969f4477a21b008de32e46..316b143c19989f225cbe433137cb6b5d8c3b500a 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 1c9826aebd4b14149824fc4dc7cc540d28b6a931..55761ee96d6969771ca5993dd35950f16c4e5ccc 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 3650a0ba269cf31faf63494013e57fabf668b624..7068537e931025e4d4f59044077cf1b1dd5ac8ce 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 c9cc1c5b79ca5260ab5daed2b5b0991408a0c84a..348b9ed37d7bd81f78581db526f9c299415a68ed 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 7d7ba9f720146176f2ca5d9f7d6056a43c040a2a..21c2ddb4e8266c6a86f8a619eed964ce5aa0f74c 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 4b988ac9abb2a469ae09e9566733551257c56bc3..762b0ac7ee9c1967122a6ed89399c3b5e725cb38 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 8cc512ab34135083b1958acc8a3db5e43e7d8588..b540b6d446ed3cb5dd8433948b22340b162e727b 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 f4e64506c6ccd3dc0bf4f255d1e9eda3b57c496d..9b3fd54ef6a076681576acc60256900300c5a1e9 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 03d9dabacf1a9ccaf4ec03b3b25ad3ace833358b..a9a119b1fbc914bc7900df430d7e7450323195b0 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 fa1c1ca0b14b50fa06f4c8577b4998addd44b1f3..91dd7510249a360c19703397cd674b31f25163c3 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 fa1c1ca0b14b50fa06f4c8577b4998addd44b1f3..91dd7510249a360c19703397cd674b31f25163c3 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 fa1c1ca0b14b50fa06f4c8577b4998addd44b1f3..91dd7510249a360c19703397cd674b31f25163c3 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 fa1c1ca0b14b50fa06f4c8577b4998addd44b1f3..91dd7510249a360c19703397cd674b31f25163c3 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 6ec6cffa1c6a305dc336c63a1ea287d7ad8504c2..c1222a182cf00254b4b53b86902cc607b2f0d110 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 7413e6a02ecff85d2e947660a36f84fb5a0ba914..20f7d6d66999937b83f20d9647c0b2a2fe0015c4 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 722a31a7502050f36176069664ac0c487ae3dcc6..1414ac92082ed557d11b9152f4ab9461f5d35061 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 7976d3f70ea47e2c39f5d7aa8d0660e56633d001..cfb43ebe076e0b09673832b11c2e1013690f8964 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..f572eff81115b9c4cb31edadbdb6c0d8fbb5ecb0 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 5f2e87ebefb9f23138b331d9088e3af55931eaa9..96b2b749ad9ceeb8b8248bfcd0dc9cbf76cd036c 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 5f2e87ebefb9f23138b331d9088e3af55931eaa9..96b2b749ad9ceeb8b8248bfcd0dc9cbf76cd036c 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 d4e4b455f6b264d117b78f0e72317c0e090dafed..7cdb62d172facda104a16d5891dbf01d1a89c940 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 d4e4b455f6b264d117b78f0e72317c0e090dafed..7cdb62d172facda104a16d5891dbf01d1a89c940 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 00cbd4d30bf13b699f9ca66861bb5b18359742b0..1d8307f461e68d76d0388576b3c700a8c5ab3f8a 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 125a20e930d3df818e3ea00092ec8a041f668412..12fc09d659ab2313e94758a9bc91ba8dd70da143 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 e360ed60a2d2fea6a59069d0d560ce110a27901c..9f68c55f67d679cd80a5055c779376c954857f88 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 1b416b9fc2345865698a5e29775717171f33381e..10436b9976608183ea9e1ff828df4321d0fa5818 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 2ca4ff44c6811cba4f3fb464677dd14a4cb14ae1..1246beed0932aa7f1fdccdbe02122afea2e17d20 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 5e43346c50543c62d5ab7094e2b268231117c8a5..6d172d79d1b87db3f4cd07d72bc6edec84254f39 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 df3efc1518b4fbcf6c705f2cacca7a833afea8cf..5c2f99d6ec3e0a02274eb2b11e6a08166bc3858c 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 8ea4b30350443bd7d83f0d104da5688700a1200a..fb4ce87850df1d058c48419eef7b830528f43412 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 1c959d2fb0dd1e542735d8ebd166538dcacb5aaf..fa0218b01aea2712744c41b2755b208fafadc12f 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 435c96ce84a9229d930170318d84c25ad313369a..ed303c8e962c7f64d6a4debe3ffbbd8a4702c00d 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 8b877028016d5451022c1dadd19f26ea1bb11309..610a08bc7debeca027d3c5fbcb3fb58be5c3d721 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 cee307a730f64dcc1f2b1b96970ff69e9868aadd..ce0679c53ec74feda7d220ebdcd28b95a578f979 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 b4cd87638c3a29462792abf6ee257c83ae3b1199..8e61ee9e54d89a7a03c1d3a37e8adcf85801bb7a 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 41461e671110c3338e2b919e10057e1cc97ceaec..7b24b274738648b6ec7c3e5c344b9f138de2acb5 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 915f16d2257f63a89179082c09d9d26735f511fe..38155ce79c3d3be8bb9da056bf53c4fa53ceac5b 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 f85ce77a8ce2b3741bf182ed4e13b478200f415f..ac663ce37e7c871f3512ae4e5185fec393c3201a 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 9b4179188642faea47f9600747f3c6604a272fe7..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 21b1e98ef916e45e087b197e36c0e1d1e8190105..dc27e2fcffbe8e5a9ff97de65d0e600b76f97d76 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 cd7aa31096656069b0dd238accfc2160b6efb306..2b39c9a2cd8a06efb376e35527a0bf6b2f192cc4 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 9b4179188642faea47f9600747f3c6604a272fe7..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 044bd80abe023c5c4095f3c09d2d16cc34465305..8eac570f52b6a302686627567ff5effe360f1145 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 9b5e379a4cbb9d46c9fa5371557d67e5bede879e..7b491926d0635f4a2139ed0281fdcfaed3168aea 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 9b4179188642faea47f9600747f3c6604a272fe7..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 e0405ef2f0d2690df1932773b8736ab12ddb642f..7fcac0b62d122731490dc8d46be00906886a3b41 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 84f822890eac7bc4374cbdf8ed0ab2a82bb34152..8adf5680877f32c6a1c551fb2c03ae7b3f43ad71 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 60208ba1315b9f30cb3dbcfc013eaf2118504c1a..74be565a854239ace90b2425a397507cb8c36b3d 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 309360d6a96197b90e1b2639a62087273205bf29..6ca6d3aef64b62b03fe24851002176f4f8797cdc 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 9b4179188642faea47f9600747f3c6604a272fe7..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 ea5df05656ab0bd931e7a9d415593a34b3dadfb0..73f9d7fa510f1f2852861c317e813d401251cad8 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 dd90e1e55a7f89b4f44ebe36c7b3aeea172b697f..777c1a96c0d05ca639e32e72468c9983d7282e60 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 d397953c1d206a9e9d054a275d3d530c8a672ecb..d749dfae0b4da58708aadc621b905d7be110e7d1 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 ab12b49567ee043def264706acc4edcbd7a6d17d..af89ac5fe9cb9cf1469bc80a41bd4ddd65972667 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 b40b7d66cd884b7a54d4c7a61b50b1e39a466150..401efe908356074f35a8cecfa627addc12575f51 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 59110123306e837e161ada3825e09b04df84353c..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 9b4179188642faea47f9600747f3c6604a272fe7..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 59110123306e837e161ada3825e09b04df84353c..9acbd4a5074a68a6be5617b47d8e3c54055a0dc2 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 1776b357e9459ef07fa190e7352640a6e46e8331..979d92116cc41651559e6fe81bab0332fc61f129 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 f223c6abbb401ce647e3d453d12610ac5e6cb814..dbbab9e9f0a37e238aae89ea3025bf9c5f8948fa 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 f223c6abbb401ce647e3d453d12610ac5e6cb814..dbbab9e9f0a37e238aae89ea3025bf9c5f8948fa 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 e184c4dbb5774e0575bf48c4551b8dae7c1f67ca..e375202c3bb6e3a47679aa1ca87b401cf268e730 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 5bfc6d009169bcf47ec4627addf938527f2ddeb5..6fea304048863acd6ba17c42fc3c4cb47095ab30 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 615f83b6225e89e95cbda96c0882224294300325..6cee312c8b38d8ca144e3209ff093f4ae2222cc1 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 46857fe937b85940dce3dbe1e61f8a508e05dee1..e0b994958ae5de2d0b3523596d9202a6b25deece 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 20654933447eedc5f993d6a76ab69ea339cc1244..afd5664eeea6a20da6b6527cc0258374e33c5e70 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 3fb56a7a7b05636dbdeb12ee10a2710414543d99..9aa18b3fcb1527c2c625ec6c8721d87a059b4a01 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 bac859d6245a39f21773407fbb28d1a548729426..8cd60750d472950ed16c45729b04d6a8d86d5dd5 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 62d54f2cbeba274399df6c4a53d16dbb93b58ee9..edaab89a8bf15d9576745705522b8922aa299491 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 448a7a0858360aab277ccd6a63ade402fd2e8dab..92a339181e386b1e75da4a3ea6eb6f26c2a768a0 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 7d79256b2a21ea0c1b3d0bf7b1208da1b312a7f8..e81f9772af29f1c5e833506c1c215165888d12f1 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 c0334a14120c1db180af96be7e72ba62e92dbe19..5f9535f8816dd5dbbe030e4b68793a47b67bf4a3 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 3ebd756ac38e80ec9f7d8e4c63069dc7e5ffa0ed..ab56d7d4fbc3c70eac2f12a627d8712063e19415 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 5bfc6d009169bcf47ec4627addf938527f2ddeb5..6fea304048863acd6ba17c42fc3c4cb47095ab30 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 615f83b6225e89e95cbda96c0882224294300325..6cee312c8b38d8ca144e3209ff093f4ae2222cc1 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 46857fe937b85940dce3dbe1e61f8a508e05dee1..e0b994958ae5de2d0b3523596d9202a6b25deece 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 20654933447eedc5f993d6a76ab69ea339cc1244..afd5664eeea6a20da6b6527cc0258374e33c5e70 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 3fb56a7a7b05636dbdeb12ee10a2710414543d99..9aa18b3fcb1527c2c625ec6c8721d87a059b4a01 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 bac859d6245a39f21773407fbb28d1a548729426..8cd60750d472950ed16c45729b04d6a8d86d5dd5 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 62d54f2cbeba274399df6c4a53d16dbb93b58ee9..edaab89a8bf15d9576745705522b8922aa299491 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 448a7a0858360aab277ccd6a63ade402fd2e8dab..92a339181e386b1e75da4a3ea6eb6f26c2a768a0 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 7d79256b2a21ea0c1b3d0bf7b1208da1b312a7f8..e81f9772af29f1c5e833506c1c215165888d12f1 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 c0334a14120c1db180af96be7e72ba62e92dbe19..5f9535f8816dd5dbbe030e4b68793a47b67bf4a3 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 3ebd756ac38e80ec9f7d8e4c63069dc7e5ffa0ed..ab56d7d4fbc3c70eac2f12a627d8712063e19415 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 d312f16988c6ec183fd97466bc183968e8d56058..41c2e092906db7a9a28a1466c6ee0a981bf6bbaf 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 e085980998ef70c221c2788387053ac5b88f3c49..b8e040eeb52c180a557d089cb6f468e9a461404e 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 da07d97019b0df00f9fa4df7c4ae0cc87a3804be..b2849112d5ef6bb51c1a36c36d494ef498da333c 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 8abc3ee9fa3349a7594893030d23a21ccdaf1404..ea7d4e0e91aacc593c88372be0203936fc1ecdb9 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 97d3b3fc77c9f4146837bd518c6f20d8db592a85..6d98e56617ac24d8253e0d272985ebbc32f1750d 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 c13a0c26af8ee72d161b813eeeb137d9f7238049..8366736d089d06d284a58e4b6daba2e1bbcd42a7 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 572195459a624d4d96c8a6bd544b365d1152d51b..a1b5e037da4ebd24113a63278815928e2975b517 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 f6969a00e615d0dea988062530293619783b0d40..91dd7510249a360c19703397cd674b31f25163c3 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 fc5c6d92116a83f6e63354b2da53f8ca729afbab..69abb4a4ba3fd4dcbbeeb6315aa3c5b8a042d452 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 c5ea29f7a5d43a3f5d9e5e5917da98c736994460..2891ba9e2cf98d34e0b46500e17e02bef3788004 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 fc5c6d92116a83f6e63354b2da53f8ca729afbab..69abb4a4ba3fd4dcbbeeb6315aa3c5b8a042d452 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 c5ea29f7a5d43a3f5d9e5e5917da98c736994460..af76643fd0b104078662b69751102975f57ed53c 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 fc5c6d92116a83f6e63354b2da53f8ca729afbab..ff3b881184ad6781cdb0c1cf30bed6ccbbac3549 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 c5ea29f7a5d43a3f5d9e5e5917da98c736994460..af76643fd0b104078662b69751102975f57ed53c 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 ad67959d02f43287554544a0f4f34f975eba3441..eb43806c0740063daf96dd0902fbf8ace374fc64 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..f746c06799895859b24017172245daee63f6b2a2 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 9c14314414d80ca417142445651da9b4b1b5ce69..8506bd51f34bec094e941bb16d4344a21b3eeda8 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 9c14314414d80ca417142445651da9b4b1b5ce69..8506bd51f34bec094e941bb16d4344a21b3eeda8 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 1b4dbb60aaeaec2d5cfe40e3d4a35843d35b44a2..79ef3a79e11a08b76b27179d917e8348d8ae5065 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 129c3a278ec17aca791224cde4c213984bc7ef22..69dc3521df632905c613f95fab295dadf7de60d0 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 0bfa2f19b9600efc74db20acb85406cdc6344bcb..7e4c459f6a226764477fff600f37b008e7b8451d 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..f746c06799895859b24017172245daee63f6b2a2 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 0d7bbe9e603245b7f70fbfe67c89ca2132e03492..35763b23e72c87220b8d0f892d5b09660d625d5e 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..e0fdefd56e43e498b875e3bc60e7a87d9f7aa595 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..f746c06799895859b24017172245daee63f6b2a2 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..e0fdefd56e43e498b875e3bc60e7a87d9f7aa595 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..f746c06799895859b24017172245daee63f6b2a2 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..e0fdefd56e43e498b875e3bc60e7a87d9f7aa595 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 3729fc7648bb9d76cae6c48139d4b359b92e526c..f746c06799895859b24017172245daee63f6b2a2 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 73d4778c9717901cdd274f26700c156444ae46ef..5d5589105092dca82d7821ab140d0209b085bfa0 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 15e0e327a49d7997cbcad52745d29b00992d3eb0..63f9f40e967d649d3a5b03ea7c165087f0c91cf6 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 c74376aa3f2e38f16849ad34f969ed0a26cc33ee..d3ee304bc3ddfd8e2e33fa37a9a86611348efebf 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 0bfa2f19b9600efc74db20acb85406cdc6344bcb..7e4c459f6a226764477fff600f37b008e7b8451d 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 b86717bf8d7626ddae4c4d841f3498ab01367977..4c569fe731c90f9c32619683b8ff27ce9373dcf0 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 81106f5ea4c8d3fc9ef41f563aca1199b62e00f1..577be61a90eaf2a5ace9736704b629691989518a 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 83c4643a5ae1cab0cef1768471f0de65e056df1c..307bc1aba9455bf0da774c565e0dea364e0fef59 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 be3d97f20ac90d7a044e387c1a3ab4a9949bdf06..d3523579d45e9ef95bcee497d81aee3ba083c51b 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 a9e6e6525d13817a8cee2469d5dae342b7718c1c..e5342b55c6616e61170a8e90f1f12cf4a5f25c5b 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 73510043119421e384e1427b59f6ea3cacdd6e66..ade3f71b27e7005a8b2a77e72eb41078e4cc103b 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 bb819c4d0aa066dc4e908d183a24fed243af7f57..49a895f4e927ff8e01f61636c2d1959fe176a744 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 9ee595eb1341b3f939761f65d603ba1ca5679e2c..c74003969a95056261266c11df8050ca7d097738 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 9ee595eb1341b3f939761f65d603ba1ca5679e2c..c74003969a95056261266c11df8050ca7d097738 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 3f507afed8ea6ba738e2fc7772a1fe96b57609de..753f6303ef63265e1cd81c276ed6a8f6181de3f8 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 4704b49c838eb9f1f6c32dad5d2440ad7e7989f6..d611571ca1de373e4ff76ff0345e2dc09ac609ac 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 5cefec5d5a97ba1e6c183aca80a0f9e2c3986b4e..803698470296ca44b9d89733e3468159c6147fbf 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 3cfdbabfaf95f76e6036cf589e0ed5a6a859532b..fc103cc620d45f6b405e7616a91aa50a7554f425 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 1b4dbb60aaeaec2d5cfe40e3d4a35843d35b44a2..79ef3a79e11a08b76b27179d917e8348d8ae5065 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 3cfdbabfaf95f76e6036cf589e0ed5a6a859532b..fc103cc620d45f6b405e7616a91aa50a7554f425 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 3cfdbabfaf95f76e6036cf589e0ed5a6a859532b..fc103cc620d45f6b405e7616a91aa50a7554f425 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 3cfdbabfaf95f76e6036cf589e0ed5a6a859532b..fc103cc620d45f6b405e7616a91aa50a7554f425 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 cc69c6944b4624a8012d799b9d6bf40aa751d1dc..6455cd8dfdd65e85a810626367c1dc1fd30925ba 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 cc69c6944b4624a8012d799b9d6bf40aa751d1dc..6455cd8dfdd65e85a810626367c1dc1fd30925ba 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 b7dd1c38648e6aa20a9cb59dcfe6831b5eb02f57..ce57d6615354f3960bc2cafbbcd49a1531baa26b 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 0efd9743e0c5735a078af777eb7325e311161097..4b8924f06fac2d11db479db3586162cbdf561f3f 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 c9b385ccd8b7ceba80aa3332b0c25b85d8328566..f417c38e3adf033204495dfe003befc9022f66a1 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 201275d82736ab3534a13f52650c261dff2f18bb..de5ac9e4379285e390239add1bd4e2ac6fe8c51e 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 c9b385ccd8b7ceba80aa3332b0c25b85d8328566..f417c38e3adf033204495dfe003befc9022f66a1 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 ae586321875e3dc411075af2f1dbcc32e24e10c3..84126539db91cfc227a1c3b0d93504021c511561 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 6723bb6a1e7bd8ba3a956b2d227e831d085f0420..3659b453ff85a2b2b6b288a08426317da908a13f 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 5c4f2ad6c66fd5f3987a6a7ffda136f3c647c3a3..38345834ae9109d5d6ff4077b95e5a84e98bf404 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 071e58a3951d6f5f55027c112f391d5fb6354fa6..9b695bbaa0526d315f76cbeea2fcc8c49602d75f 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 071e58a3951d6f5f55027c112f391d5fb6354fa6..9b695bbaa0526d315f76cbeea2fcc8c49602d75f 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 c9b385ccd8b7ceba80aa3332b0c25b85d8328566..f417c38e3adf033204495dfe003befc9022f66a1 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 071e58a3951d6f5f55027c112f391d5fb6354fa6..9b695bbaa0526d315f76cbeea2fcc8c49602d75f 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 e45304b83464ea6a9568531b35b570abae0d768f..4cfbc0bbea6c52a5519b248519971e310d8fce96 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 961771c727970e5d5259b913d2531a44f025a70f..0af317df79295b2d0ec3fbd7e89f1ecdc122119f 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 071e58a3951d6f5f55027c112f391d5fb6354fa6..9b695bbaa0526d315f76cbeea2fcc8c49602d75f 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 c9b385ccd8b7ceba80aa3332b0c25b85d8328566..f417c38e3adf033204495dfe003befc9022f66a1 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 ae586321875e3dc411075af2f1dbcc32e24e10c3..84126539db91cfc227a1c3b0d93504021c511561 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 6723bb6a1e7bd8ba3a956b2d227e831d085f0420..3659b453ff85a2b2b6b288a08426317da908a13f 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 f1de6620b35516fac020ff72ba6bac4187c4b924..2faf71aca74fe8aa4938a8e15d80e3972e505c28 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 c7a6d901f6f065c440d94617f457c97706bd1dae..98c43c545002871580bfc9bf7d3eb2d5a2c0cf36 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;