From 13baa50adcd1f3d0904e42a046a3f68ec504b590 Mon Sep 17 00:00:00 2001 From: Michael Wild Date: Sun, 12 Sep 2010 15:35:39 +0200 Subject: [PATCH] FIX: Missed renamings of K -> Kcond Signed-off-by: Michael Wild --- .../threePhaseInterfaceProperties/threePhaseInterfaceProperties.C | 2 +- .../postProcessing/dataConversion/foamToFieldview9/foamToFieldview9.C | 2 +- .../postProcessing/graphics/fieldview9Reader/readerDatabase.C | 2 +- src/transportModels/interfaceProperties/interfaceProperties.C | 4 ++-- .../turbulentTemperatureCoupledBaffleFvPatchScalarField.C | 4 ++-- .../turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C | 4 ++-- .../multiRegionHeater/system/bottomAir/changeDictionaryDict | 2 +- .../multiRegionHeater/system/heater/changeDictionaryDict | 2 +- .../multiRegionHeater/system/leftSolid/changeDictionaryDict | 2 +- .../multiRegionHeater/system/rightSolid/changeDictionaryDict | 2 +- .../multiRegionHeater/system/topAir/changeDictionaryDict | 2 +- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/applications/solvers/multiphase/interMixingFoam/threePhaseInterfaceProperties/threePhaseInterfaceProperties.C b/applications/solvers/multiphase/interMixingFoam/threePhaseInterfaceProperties/threePhaseInterfaceProperties.C index 0d2825ab9..3cef61229 100644 --- a/applications/solvers/multiphase/interMixingFoam/threePhaseInterfaceProperties/threePhaseInterfaceProperties.C +++ b/applications/solvers/multiphase/interMixingFoam/threePhaseInterfaceProperties/threePhaseInterfaceProperties.C @@ -195,7 +195,7 @@ Foam::threePhaseInterfaceProperties::threePhaseInterfaceProperties ( IOobject ( - "K", + "Kcond", mixture.alpha1().time().timeName(), mixture.alpha1().mesh() ), diff --git a/applications/utilities/postProcessing/dataConversion/foamToFieldview9/foamToFieldview9.C b/applications/utilities/postProcessing/dataConversion/foamToFieldview9/foamToFieldview9.C index 02ab8602d..51dac72e1 100644 --- a/applications/utilities/postProcessing/dataConversion/foamToFieldview9/foamToFieldview9.C +++ b/applications/utilities/postProcessing/dataConversion/foamToFieldview9/foamToFieldview9.C @@ -244,7 +244,7 @@ int main(int argc, char *argv[]) FieldviewNames.insert("rsphere", "rrsphere"); FieldviewNames.insert("Rsphere", "RRsphere"); FieldviewNames.insert("k", "kk"); - FieldviewNames.insert("K", "KK"); + FieldviewNames.insert("Kcond", "KKcond"); // Scan for all available fields, in all timesteps diff --git a/applications/utilities/postProcessing/graphics/fieldview9Reader/readerDatabase.C b/applications/utilities/postProcessing/graphics/fieldview9Reader/readerDatabase.C index 4cfc5930d..c620a3253 100644 --- a/applications/utilities/postProcessing/graphics/fieldview9Reader/readerDatabase.C +++ b/applications/utilities/postProcessing/graphics/fieldview9Reader/readerDatabase.C @@ -115,7 +115,7 @@ Foam::readerDatabase::readerDatabase() fieldviewNames_.insert("rsphere", "rrsphere"); fieldviewNames_.insert("Rsphere", "RRsphere"); fieldviewNames_.insert("k", "kk"); - fieldviewNames_.insert("K", "KK"); + fieldviewNames_.insert("Kcond", "KKcond"); } diff --git a/src/transportModels/interfaceProperties/interfaceProperties.C b/src/transportModels/interfaceProperties/interfaceProperties.C index 210a6f93f..f0c74a914 100644 --- a/src/transportModels/interfaceProperties/interfaceProperties.C +++ b/src/transportModels/interfaceProperties/interfaceProperties.C @@ -185,12 +185,12 @@ Foam::interfaceProperties::interfaceProperties ( IOobject ( - "K", + "Kcond", alpha1_.time().timeName(), alpha1_.mesh() ), alpha1_.mesh(), - dimensionedScalar("K", dimless/dimLength, 0.0) + dimensionedScalar("Kcond", dimless/dimLength, 0.0) ) { calculateK(); diff --git a/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffle/turbulentTemperatureCoupledBaffleFvPatchScalarField.C b/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffle/turbulentTemperatureCoupledBaffleFvPatchScalarField.C index 9c9fee5ec..8cf190651 100644 --- a/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffle/turbulentTemperatureCoupledBaffleFvPatchScalarField.C +++ b/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffle/turbulentTemperatureCoupledBaffleFvPatchScalarField.C @@ -141,7 +141,7 @@ turbulentTemperatureCoupledBaffleFvPatchScalarField : fixedValueFvPatchScalarField(p, iF, dict), neighbourFieldName_(dict.lookup("neighbourFieldName")), - KName_(dict.lookup("K")) + KName_(dict.lookup("Kcond")) { if (!isA(this->patch().patch())) { @@ -354,7 +354,7 @@ void Foam::turbulentTemperatureCoupledBaffleFvPatchScalarField::write fixedValueFvPatchScalarField::write(os); os.writeKeyword("neighbourFieldName")<< neighbourFieldName_ << token::END_STATEMENT << nl; - os.writeKeyword("K") << KName_ << token::END_STATEMENT << nl; + os.writeKeyword("Kcond") << KName_ << token::END_STATEMENT << nl; } diff --git a/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C b/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C index d1345281f..9d58f52ce 100644 --- a/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C +++ b/src/turbulenceModels/compressible/RAS/derivedFvPatchFields/turbulentTemperatureCoupledBaffleMixed/turbulentTemperatureCoupledBaffleMixedFvPatchScalarField.C @@ -86,7 +86,7 @@ turbulentTemperatureCoupledBaffleMixedFvPatchScalarField : mixedFvPatchScalarField(p, iF), neighbourFieldName_(dict.lookup("neighbourFieldName")), - KName_(dict.lookup("K")) + KName_(dict.lookup("Kcond")) { if (!isA(this->patch().patch())) { @@ -307,7 +307,7 @@ void turbulentTemperatureCoupledBaffleMixedFvPatchScalarField::write mixedFvPatchScalarField::write(os); os.writeKeyword("neighbourFieldName")<< neighbourFieldName_ << token::END_STATEMENT << nl; - os.writeKeyword("K") << KName_ << token::END_STATEMENT << nl; + os.writeKeyword("Kcond") << KName_ << token::END_STATEMENT << nl; } diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/bottomAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/bottomAir/changeDictionaryDict index c29457221..acd415ef5 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/bottomAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/bottomAir/changeDictionaryDict @@ -57,7 +57,7 @@ dictionaryReplacement { type compressible::turbulentTemperatureCoupledBaffle; neighbourFieldName T; - K Kcond; + Kcond Kcond; value uniform 300; } } diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/heater/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/heater/changeDictionaryDict index dd2538f3b..7d9d94121 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/heater/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/heater/changeDictionaryDict @@ -47,7 +47,7 @@ dictionaryReplacement { type compressible::turbulentTemperatureCoupledBaffle; neighbourFieldName T; - K Kcond; + Kcond Kcond; value uniform 300; } minY diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict index 393c43063..002e5dbef 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/leftSolid/changeDictionaryDict @@ -43,7 +43,7 @@ dictionaryReplacement { type compressible::turbulentTemperatureCoupledBaffle; neighbourFieldName T; - K Kcond; + Kcond Kcond; value uniform 300; } } diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict index 1f697d457..b5244b76f 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/rightSolid/changeDictionaryDict @@ -43,7 +43,7 @@ dictionaryReplacement { type compressible::turbulentTemperatureCoupledBaffle; neighbourFieldName T; - K Kcond; + Kcond Kcond; value uniform 300; } } diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/topAir/changeDictionaryDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/topAir/changeDictionaryDict index 03a542a22..666274ec2 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/topAir/changeDictionaryDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/system/topAir/changeDictionaryDict @@ -68,7 +68,7 @@ dictionaryReplacement { type compressible::turbulentTemperatureCoupledBaffle; neighbourFieldName T; - K Kcond; + Kcond Kcond; value uniform 300; } } -- 2.11.4.GIT