diff --git a/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H b/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H
index e39a9f43af0d32dc9a07b981d33c4ecd8b988e8f..855c8add6ce9dbffdfa2f330ea13f515395c4e9f 100644
--- a/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H
+++ b/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H
@@ -36,20 +36,11 @@ inline Foam::KinematicParcel<ParcelType>::constantProperties::constantProperties
 )
 :
     dict_(parentDict.subDict("constantProperties")),
-    rhoMin_(dimensionedScalar(dict_.lookup("rhoMin")).value()),
-    rho0_(dimensionedScalar(dict_.lookup("rho0")).value()),
-    minParticleMass_
-    (
-        dimensionedScalar(dict_.lookup("minParticleMass")).value()
-    ),
-    youngsModulus_
-    (
-        dimensionedScalar(dict_.lookup("youngsModulus")).value()
-    ),
-    poissonsRatio_
-    (
-        dimensionedScalar(dict_.lookup("poissonsRatio")).value()
-    )
+    rhoMin_(readScalar(dict_.lookup("rhoMin"))),
+    rho0_(readScalar(dict_.lookup("rho0"))),
+    minParticleMass_(readScalar(dict_.lookup("minParticleMass"))),
+    youngsModulus_(readScalar(dict_.lookup("youngsModulus"))),
+    poissonsRatio_(readScalar(dict_.lookup("poissonsRatio")))
 {}
 
 
diff --git a/src/lagrangian/intermediate/parcels/Templates/ReactingMultiphaseParcel/ReactingMultiphaseParcelI.H b/src/lagrangian/intermediate/parcels/Templates/ReactingMultiphaseParcel/ReactingMultiphaseParcelI.H
index 960a298ad7cdb1ce03f2bc9d0b133376b7dc76d4..cd18d3628ccc934efefd415c79d49912c2d48e39 100644
--- a/src/lagrangian/intermediate/parcels/Templates/ReactingMultiphaseParcel/ReactingMultiphaseParcelI.H
+++ b/src/lagrangian/intermediate/parcels/Templates/ReactingMultiphaseParcel/ReactingMultiphaseParcelI.H
@@ -33,11 +33,8 @@ constantProperties
 )
 :
     ReactingParcel<ParcelType>::constantProperties(parentDict),
-    LDevol_(dimensionedScalar(this->dict().lookup("LDevol")).value()),
-    hRetentionCoeff_
-    (
-        dimensionedScalar(this->dict().lookup("hRetentionCoeff")).value()
-    )
+    LDevol_(readScalar(this->dict().lookup("LDevol"))),
+    hRetentionCoeff_(readScalar(this->dict().lookup("hRetentionCoeff")))
 {
     if ((hRetentionCoeff_ < 0) || (hRetentionCoeff_ > 1))
     {
diff --git a/src/lagrangian/intermediate/parcels/Templates/ReactingParcel/ReactingParcelI.H b/src/lagrangian/intermediate/parcels/Templates/ReactingParcel/ReactingParcelI.H
index 60c1556b8f2fb641113a07e0293ac7c19f459798..ffc87eb6391fa16afc6d757b7872b8a195b4c7cf 100644
--- a/src/lagrangian/intermediate/parcels/Templates/ReactingParcel/ReactingParcelI.H
+++ b/src/lagrangian/intermediate/parcels/Templates/ReactingParcel/ReactingParcelI.H
@@ -32,10 +32,10 @@ inline Foam::ReactingParcel<ParcelType>::constantProperties::constantProperties
 )
 :
     ThermoParcel<ParcelType>::constantProperties(parentDict),
-    pMin_(dimensionedScalar(this->dict().lookup("pMin")).value()),
+    pMin_(readScalar(this->dict().lookup("pMin"))),
     constantVolume_(this->dict().lookup("constantVolume")),
-    Tvap_(dimensionedScalar(this->dict().lookup("Tvap")).value()),
-    Tbp_(dimensionedScalar(this->dict().lookup("Tbp")).value())
+    Tvap_(readScalar(this->dict().lookup("Tvap"))),
+    Tbp_(readScalar(this->dict().lookup("Tbp")))
 {}
 
 
diff --git a/src/lagrangian/intermediate/parcels/Templates/ThermoParcel/ThermoParcelI.H b/src/lagrangian/intermediate/parcels/Templates/ThermoParcel/ThermoParcelI.H
index b728ce65cbb40c4302ea1239562615d4feb9caec..9e69a46fd05206b4b76f3196484b77c9cbce08cf 100644
--- a/src/lagrangian/intermediate/parcels/Templates/ThermoParcel/ThermoParcelI.H
+++ b/src/lagrangian/intermediate/parcels/Templates/ThermoParcel/ThermoParcelI.H
@@ -32,12 +32,12 @@ inline Foam::ThermoParcel<ParcelType>::constantProperties::constantProperties
 )
 :
     KinematicParcel<ParcelType>::constantProperties(parentDict),
-    T0_(dimensionedScalar(this->dict().lookup("T0")).value()),
-    TMin_(dimensionedScalar(this->dict().lookup("TMin")).value()),
-    cp0_(dimensionedScalar(this->dict().lookup("cp0")).value()),
-    epsilon0_(dimensionedScalar(this->dict().lookup("epsilon0")).value()),
-    f0_(dimensionedScalar(this->dict().lookup("f0")).value()),
-    Pr_(dimensionedScalar(this->dict().lookup("Pr")).value())
+    T0_(readScalar(this->dict().lookup("T0"))),
+    TMin_(readScalar(this->dict().lookup("TMin"))),
+    cp0_(readScalar(this->dict().lookup("cp0"))),
+    epsilon0_(readScalar(this->dict().lookup("epsilon0"))),
+    f0_(readScalar(this->dict().lookup("f0"))),
+    Pr_(readScalar(this->dict().lookup("Pr")))
 {}
 
 
diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties
index cafc1da63fdc1f4324f373312e2d1a6f7ca08d5c..6ad5bec8889f9c24e14730a00b199b7546a72848 100644
--- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties
+++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/coalCloud1Properties
@@ -27,22 +27,22 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 2e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 400;
-    Tbp             Tvap [ 0 0 0 1 0 ] 400;
-    LDevol          LDevol [ 0 0 0 0 0 ] 0;
-    hRetentionCoeff hRetentionCoeff [ 0 0 0 0 0 ] 1;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    minParticleMass 1e-15;
+    rho0            1000;
+    youngsModulus   2e9;
+    poissonsRatio   0.35;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            400;
+    Tbp             400;
+    LDevol          0;
+    hRetentionCoeff 1;
     constantVolume  true;
 }
 
diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties
index 91e44fbaeeefff8d952dab704459ca5c883d9fec..8b4207b192896a81938a3403c4727498ccc4312c 100644
--- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties
+++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/constant/limestoneCloud1Properties
@@ -27,17 +27,17 @@ parcelTypeId    2;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    rho0            rho0 [ 1 -3 0 0 0 ] 2500;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 40e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.25;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 900;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
+    rhoMin          1e-15;
+    TMin            200;
+    minParticleMass 1e-15;
+    rho0            2500;
+    youngsModulus   40e9;
+    poissonsRatio   0.25;
+    T0              300;
+    cp0             900;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
 }
 
 interpolationSchemes
diff --git a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/filter/constant/reactingCloud1Properties b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/filter/constant/reactingCloud1Properties
index 94e51f9d762e6c000ad9e3b06d2da034b08fbad3..464ed8f5e57b1020b6ff3a47b0b7e7e1c004268d 100644
--- a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/filter/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/filter/constant/reactingCloud1Properties
@@ -27,22 +27,22 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4100;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
-    LDevol          LDevol [ 0 0 0 0 0 ] 0;
-    hRetentionCoeff hRetentionCoeff [ 0 0 0 0 0 ] 1;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4100;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
+    LDevol          0;
+    hRetentionCoeff 1;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/parcelInBox/constant/reactingCloud1Properties b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/parcelInBox/constant/reactingCloud1Properties
index 7243712aab85a4e1146fb5edaf704832b86880bd..82e218b5a23aeb3703be546b3bfe4ece2dc33ed2 100644
--- a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/parcelInBox/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/parcelInBox/constant/reactingCloud1Properties
@@ -27,22 +27,22 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 350;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4100;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Tvap            Tvap [ 0 0 0 1 0 ] 284;
-    Tbp             Tbp [ 0 0 0 1 0 ] 373;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    LDevol          LDevol [ 0 0 0 0 0 ] 0;
-    hRetentionCoeff hRetentionCoeff [ 0 0 0 0 0 ] 1;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              350;
+    cp0             4100;
+    epsilon0        1;
+    f0              0.5;
+    Tvap            284;
+    Tbp             373;
+    Pr              0.7;
+    LDevol          0;
+    hRetentionCoeff 1;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties
index c97747abb3af6352d27051e516a29e761049edf7..83dc18816a97caec8c27fc1bf0074c2aee842e03 100644
--- a/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/porousExplicitSourceReactingParcelFoam/verticalChannel/constant/reactingCloud1Properties
@@ -27,22 +27,22 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 350;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4100;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tbp [ 0 0 0 1 0 ] 373;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    LDevol          LDevol [ 0 0 0 0 0 ] 0;
-    hRetentionCoeff hRetentionCoeff [ 0 0 0 0 0 ] 1;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              350;
+    cp0             4100;
+    epsilon0        1;
+    f0              0.5;
+    Tvap            273;
+    Tbp             373;
+    Pr              0.7;
+    LDevol          0;
+    hRetentionCoeff 1;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
index 4f1233285c90be110b1f6cd99ae45218e76d2744..da06cb5025c383efda73975ecb85bece0ba82cf2 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/evaporationTest/constant/reactingCloud1Properties
@@ -27,21 +27,21 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
     constantVolume  false;
-    youngsModulus   youngsModulus [ 0 0 0 0 0 ] 0;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0;
+    youngsModulus   0;
+    poissonsRatio   0;
 }
 
 interpolationSchemes
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/constant/reactingCloud1Properties
index 861b7a0a2cf32a619f703e08b38d9f77cc707390..41d7d0ea06e3953cc058a5f794b5786f7e0ce88d 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/constant/reactingCloud1Properties
@@ -27,20 +27,20 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [0 0 0 0 0] 0;
-    poissonsRatio   poissonsRatio [0 0 0 0 0] 0;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   0;
+    poissonsRatio   0;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/multipleBoxes/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/multipleBoxes/constant/reactingCloud1Properties
index 87e5b789a9079645569357fb74935a620121eea9..c2f0120ecd47fa55e53dfba7b0ef8596b5e21dad 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/multipleBoxes/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/multipleBoxes/constant/reactingCloud1Properties
@@ -27,20 +27,20 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
     constantVolume  false;
 }
 
@@ -90,33 +90,6 @@ subModels
 
     SurfaceFilmModel ThermoSurfaceFilm; // none;
 
-    ConeInjectionCoeffs
-    {
-        SOI             0.000;
-        duration        10.000;
-        position        (0.5 0.8 1.45);
-        direction       (0 -0.5 -1);
-        massTotal       massTotal [ 1 0 0 0 0 ] 0.025; // 1e-3;
-        parcelsPerSecond 500;
-        parcelBasisType mass;
-        flowRateProfile constant 0.01;
-        Umag            constant 5;
-        thetaInner      constant 0;
-        thetaOuter      constant 30;
-
-        parcelPDF
-        {
-            pdfType         RosinRammler;
-            RosinRammlerPDF
-            {
-                minValue        5e-04;
-                maxValue        0.0012;
-                d               7.5e-05;
-                n               0.5;
-            }
-        }
-    }
-
     ConeInjectionMPCoeffs
     {
         SOI             0.000;
diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
index bbce9a45bb9da4fc519f2f62592c3ae04bfefca9..eeb34eafa1f6e004a655ab9d995b0e9347ae9c08 100644
--- a/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFilmFoam/panel/constant/reactingCloud1Properties
@@ -27,20 +27,20 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/reactingParcelFoam/evaporationTest/constant/reactingCloud1Properties b/tutorials/lagrangian/reactingParcelFoam/evaporationTest/constant/reactingCloud1Properties
index e783101066a2bbc9b75bfcd0c4838671bbb15305..7860f4896496062be9b4fece845917e17ce840dd 100644
--- a/tutorials/lagrangian/reactingParcelFoam/evaporationTest/constant/reactingCloud1Properties
+++ b/tutorials/lagrangian/reactingParcelFoam/evaporationTest/constant/reactingCloud1Properties
@@ -27,20 +27,20 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    pMin            pMin [ 1 -1 2 0 0 ] 1000;
-    rho0            rho0 [ 1 -3 0 0 0 ] 1000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 4187;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
-    Tvap            Tvap [ 0 0 0 1 0 ] 273;
-    Tbp             Tvap [ 0 0 0 1 0 ] 373;
+    rhoMin          1e-15;
+    TMin            200;
+    pMin            1000;
+    rho0            1000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    minParticleMass 1e-15;
+    T0              300;
+    cp0             4187;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
+    Tvap            273;
+    Tbp             373;
     constantVolume  false;
 }
 
diff --git a/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/kinematicCloud1Properties b/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/kinematicCloud1Properties
index e10e6a2c46331b23a5e3fbbd79739bd5ef96df16..0a2e6e40cc893d2c34d52707daa047cd08e64491 100644
--- a/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/kinematicCloud1Properties
+++ b/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/kinematicCloud1Properties
@@ -25,11 +25,11 @@ parcelTypeId    2;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    rho0            rho0 [ 1 -3 0 0 0 ] 5000;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
+    rhoMin          1e-15;
+    minParticleMass 1e-15;
+    rho0            5000;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
 }
 
 interpolationSchemes
diff --git a/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/thermoCloud1Properties b/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/thermoCloud1Properties
index 7817e80b7bec9ff40e6379adf3d8ac6ab3677cce..9f3b816eb3b3e20fca0e8667273e8d41435bc45b 100644
--- a/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/thermoCloud1Properties
+++ b/tutorials/lagrangian/rhoPisoTwinParcelFoam/simplifiedSiwek/constant/thermoCloud1Properties
@@ -27,17 +27,17 @@ parcelTypeId    1;
 
 constantProperties
 {
-    rhoMin          rhoMin [ 1 -3 0 0 0 ] 1e-15;
-    TMin            TMin [ 0 0 0 1 0 ] 200;
-    minParticleMass minParticleMass [ 1 0 0 0 0 ] 1e-15;
-    rho0            rho0 [ 1 -3 0 0 0 ] 2500;
-    youngsModulus   youngsModulus [1 -1 -2 0 0] 1e9;
-    poissonsRatio   poissonsRatio [ 0 0 0 0 0 ] 0.35;
-    T0              T0 [ 0 0 0 1 0 ] 300;
-    cp0             cp0 [ 0 2 -2 -1 0 ] 900;
-    epsilon0        epsilon0 [ 0 0 0 0 0 ] 1;
-    f0              f0 [ 0 0 0 0 0 ] 0.5;
-    Pr              Pr [ 0 0 0 0 0 ] 0.7;
+    rhoMin          1e-15;
+    TMin            200;
+    minParticleMass 1e-15;
+    rho0            2500;
+    youngsModulus   1e9;
+    poissonsRatio   0.35;
+    T0              300;
+    cp0             900;
+    epsilon0        1;
+    f0              0.5;
+    Pr              0.7;
 }
 
 interpolationSchemes