Skip to content
Snippets Groups Projects
Commit aa961c22 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: corrected file vs fileName for CSV files

parent a922d679
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ pointNoiseCoeffs ...@@ -90,7 +90,7 @@ pointNoiseCoeffs
{ {
csvFileData csvFileData
{ {
fileName "pressureData"; file "pressureData";
nHeaderLine 1; nHeaderLine 1;
refColumn 0; refColumn 0;
componentColumns (1); componentColumns (1);
......
...@@ -39,7 +39,7 @@ Description ...@@ -39,7 +39,7 @@ Description
componentColumns (1 2 3); // component column indices componentColumns (1 2 3); // component column indices
separator ","; // optional (defaults to ",") separator ","; // optional (defaults to ",")
mergeSeparators no; // merge multiple separators mergeSeparators no; // merge multiple separators
fileName "fileXYZ"; // name of csv data file file "fileXYZ"; // name of csv data file
outOfBounds clamp; // optional out-of-bounds handling outOfBounds clamp; // optional out-of-bounds handling
interpolationScheme linear; // optional interpolation scheme interpolationScheme linear; // optional interpolation scheme
} }
......
...@@ -59,7 +59,7 @@ Usage ...@@ -59,7 +59,7 @@ Usage
componentColumns 1(1); componentColumns 1(1);
separator ","; separator ",";
mergeSeparators no; mergeSeparators no;
fileName "$FOAM_CASE/constant/pressureVsU"; file "$FOAM_CASE/constant/pressureVsU";
} }
value uniform 0; value uniform 0;
} }
......
...@@ -42,7 +42,7 @@ Usage ...@@ -42,7 +42,7 @@ Usage
\verbatim \verbatim
<patchName> <patchName>
{ {
type fixedProfile; type fixedProfile;
profile csvFile; profile csvFile;
profileCoeffs profileCoeffs
...@@ -52,7 +52,7 @@ Usage ...@@ -52,7 +52,7 @@ Usage
componentColumns (1 2 3); // Component column indices componentColumns (1 2 3); // Component column indices
separator ","; // Optional (defaults to ",") separator ","; // Optional (defaults to ",")
mergeSeparators no; // Merge multiple separators mergeSeparators no; // Merge multiple separators
fileName "Uprofile.csv"; // name of csv data file file "Uprofile.csv"; // name of csv data file
outOfBounds clamp; // Optional out-of-bounds handling outOfBounds clamp; // Optional out-of-bounds handling
interpolationScheme linear; // Optional interpolation scheme interpolationScheme linear; // Optional interpolation scheme
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment