From 2ae6047ac0cc24aeb11ed70b8ee59f2c01b9c36a Mon Sep 17 00:00:00 2001 From: andy <a.heather@opencfd.co.uk> Date: Mon, 18 Oct 2010 16:11:01 +0100 Subject: [PATCH] ENH: Removed dimensions from cloud constant props (not used) --- .../KinematicParcel/KinematicParcelI.H | 19 ++----- .../ReactingMultiphaseParcelI.H | 7 +-- .../ReactingParcel/ReactingParcelI.H | 6 +- .../Templates/ThermoParcel/ThermoParcelI.H | 12 ++-- .../constant/coalCloud1Properties | 32 +++++------ .../constant/limestoneCloud1Properties | 22 ++++---- .../filter/constant/reactingCloud1Properties | 32 +++++------ .../constant/reactingCloud1Properties | 32 +++++------ .../constant/reactingCloud1Properties | 32 +++++------ .../constant/reactingCloud1Properties | 28 +++++----- .../constant/reactingCloud1Properties | 28 +++++----- .../constant/reactingCloud1Properties | 55 +++++-------------- .../panel/constant/reactingCloud1Properties | 28 +++++----- .../constant/reactingCloud1Properties | 28 +++++----- .../constant/kinematicCloud1Properties | 10 ++-- .../constant/thermoCloud1Properties | 22 ++++---- 16 files changed, 177 insertions(+), 216 deletions(-) diff --git a/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H b/src/lagrangian/intermediate/parcels/Templates/KinematicParcel/KinematicParcelI.H index e39a9f43af0..855c8add6ce 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 960a298ad7c..cd18d3628cc 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 60c1556b8f2..ffc87eb6391 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 b728ce65cbb..9e69a46fd05 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 cafc1da63fd..6ad5bec8889 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 91e44fbaeee..8b4207b1928 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 94e51f9d762..464ed8f5e57 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 7243712aab8..82e218b5a23 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 c97747abb3a..83dc18816a9 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 4f1233285c9..da06cb5025c 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 861b7a0a2cf..41d7d0ea06e 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 87e5b789a90..c2f0120ecd4 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 bbce9a45bb9..eeb34eafa1f 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 e783101066a..7860f489649 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 e10e6a2c463..0a2e6e40cc8 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 7817e80b7be..9f3b816eb3b 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 -- GitLab