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

STYLE: corrected file vs fileName for CSV files

parent 206914ce
Branches
Tags
No related merge requests found
......@@ -90,7 +90,7 @@ pointNoiseCoeffs
{
csvFileData
{
fileName "pressureData";
file "pressureData";
nHeaderLine 1;
refColumn 0;
componentColumns (1);
......
......@@ -39,7 +39,7 @@ Description
componentColumns (1 2 3); // component column indices
separator ","; // optional (defaults to ",")
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
interpolationScheme linear; // optional interpolation scheme
}
......
......@@ -59,7 +59,7 @@ Usage
componentColumns 1(1);
separator ",";
mergeSeparators no;
fileName "$FOAM_CASE/constant/pressureVsU";
file "$FOAM_CASE/constant/pressureVsU";
}
value uniform 0;
}
......
......@@ -42,7 +42,7 @@ Usage
\verbatim
<patchName>
{
type fixedProfile;
type fixedProfile;
profile csvFile;
profileCoeffs
......@@ -52,7 +52,7 @@ Usage
componentColumns (1 2 3); // Component column indices
separator ","; // Optional (defaults to ",")
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
interpolationScheme linear; // Optional interpolation scheme
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment