patch.diff (3,821 bytes)
diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedInternalValue/mappedInternalValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedInternalValue/mappedInternalValueFvPatchField.H
index 6e93e847e..1dcb6978d 100644
--- a/src/finiteVolume/fields/fvPatchFields/derived/mappedInternalValue/mappedInternalValueFvPatchField.H
+++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedInternalValue/mappedInternalValueFvPatchField.H
@@ -31,7 +31,7 @@ Description
Usage
\table
Property | Description | Required | Default value
- fieldName | name of field to be mapped | no | this field name
+ field | name of field to be mapped | no | this field name
setAverage | set the average value? | no | yes if average \\
is specified, \\
no otherwise
@@ -43,8 +43,8 @@ Usage
\verbatim
<patchName>
{
- type mappedInternal;
- fieldName T;
+ type mappedInternalValue;
+ field T;
average 300;
interpolationScheme cellPoint;
value uniform 300;
diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedValue/mappedValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedValue/mappedValueFvPatchField.H
index 68137734f..56c93368b 100644
--- a/src/finiteVolume/fields/fvPatchFields/derived/mappedValue/mappedValueFvPatchField.H
+++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedValue/mappedValueFvPatchField.H
@@ -31,7 +31,7 @@ Description
Usage
\table
Property | Description | Required | Default value
- fieldName | name of field to be mapped | no | this field name
+ field | name of field to be mapped | no | this field name
setAverage | set the average value? | no | yes if average \\
is specified, \\
no otherwise
@@ -42,8 +42,8 @@ Usage
\verbatim
<patchName>
{
- type mapped;
- fieldName T;
+ type mappedValue;
+ field T;
average 300;
value uniform 300;
}
diff --git a/src/finiteVolume/fields/fvPatchFields/derived/mappedValueAndPatchInternalValue/mappedValueAndPatchInternalValueFvPatchField.H b/src/finiteVolume/fields/fvPatchFields/derived/mappedValueAndPatchInternalValue/mappedValueAndPatchInternalValueFvPatchField.H
index 4acd0959a..7bcd87657 100644
--- a/src/finiteVolume/fields/fvPatchFields/derived/mappedValueAndPatchInternalValue/mappedValueAndPatchInternalValueFvPatchField.H
+++ b/src/finiteVolume/fields/fvPatchFields/derived/mappedValueAndPatchInternalValue/mappedValueAndPatchInternalValueFvPatchField.H
@@ -31,7 +31,7 @@ Description
Usage
\table
Property | Description | Required | Default value
- fieldName | name of field to be mapped | no | this field name
+ field | name of field to be mapped | no | this field name
setAverage | set the average value? | no | yes if average \\
is specified, \\
no otherwise
@@ -43,7 +43,7 @@ Usage
<patchName>
{
type mappedValueAndPatchInternalValue;
- fieldName T;
+ field T;
average 300;
value uniform 300;
}