From 662e366afe266c2212792a285c8281aac0962cc3 Mon Sep 17 00:00:00 2001 From: mattijs Date: Tue, 26 Jan 2010 11:20:20 +0000 Subject: [PATCH] Added example of wildcard substitution --- .../changeDictionary/changeDictionaryDict | 55 ++++++++-------------- 1 file changed, 19 insertions(+), 36 deletions(-) diff --git a/applications/utilities/preProcessing/changeDictionary/changeDictionaryDict b/applications/utilities/preProcessing/changeDictionary/changeDictionaryDict index 05183586..164641cc 100644 --- a/applications/utilities/preProcessing/changeDictionary/changeDictionaryDict +++ b/applications/utilities/preProcessing/changeDictionary/changeDictionaryDict @@ -16,25 +16,29 @@ FoamFile dictionaryReplacement { + boundary + { + ".*" + { + type directMappedPatch; + } + } + T { internalField uniform 300; boundaryField { - minY - { - type fixedValue; - value uniform 500; - } - - minZ + ".*" { type zeroGradient; } - maxZ + + minY { - type zeroGradient; + type fixedValue; + value uniform 500; } } } @@ -45,18 +49,11 @@ dictionaryReplacement boundaryField { - minY - { - type zeroGradient; - } - minZ - { - type zeroGradient; - } - maxZ + ".*" { type zeroGradient; } + } } @@ -66,18 +63,11 @@ dictionaryReplacement boundaryField { - minY - { - type zeroGradient; - } - minZ - { - type zeroGradient; - } - maxZ + ".*" { type zeroGradient; } + } } @@ -87,18 +77,11 @@ dictionaryReplacement boundaryField { - minY - { - type zeroGradient; - } - minZ - { - type zeroGradient; - } - maxZ + ".*" { type zeroGradient; } + } } } -- 2.11.4.GIT