Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
5c98e0b6
Commit
5c98e0b6
authored
15 years ago
by
mattijs
Browse files
Options
Downloads
Patches
Plain Diff
Tecplot360 writer
parent
ba1422df
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
applications/utilities/postProcessing/dataConversion/foamToTecplot360/foamToTecplot360.C
+41
-4
41 additions, 4 deletions
...essing/dataConversion/foamToTecplot360/foamToTecplot360.C
with
41 additions
and
4 deletions
applications/utilities/postProcessing/dataConversion/foamToTecplot360/foamToTecplot360.C
+
41
−
4
View file @
5c98e0b6
...
...
@@ -23,14 +23,47 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Application
foamToTecplot
-bin
foamToTecplot
360
Description
Tecplot binary file format writer.
Usage
- foamToTecplot-bin [OPTION]
- foamToTecplot360 [OPTION]
@param -fields \<fields\>\n
Convert selected fields only. For example,
@verbatim
-fields '( p T U )'
@endverbatim
The quoting is required to avoid shell expansions and to pass the
information as a single argument.
@param -cellSet \<name\>\n
@param -faceSet \<name\>\n
Restrict conversion to the cellSet, faceSet.
@param -nearCellValue \n
Output cell value on patches instead of patch value itself
@param -noInternal \n
Do not generate file for mesh, only for patches
@param -noPointValues \n
No pointFields
@param -noFaceZones \n
No faceZones
@param -excludePatches \<patchNames\>\n
Specify patches (wildcards) to exclude. For example,
@verbatim
-excludePatches '( inlet_1 inlet_2 "proc.*")'
@endverbatim
The quoting is required to avoid shell expansions and to pass the
information as a single argument. The double quotes denote a regular
expression.
\*---------------------------------------------------------------------------*/
...
...
@@ -107,8 +140,12 @@ labelList getSelectedPatches
Info
<<
" discarding empty/processor patch "
<<
patchI
<<
" "
<<
pp
.
name
()
<<
endl
;
}
//else if (!excludePatches.found(pp.name()))
else
if
(
!
findStrings
(
excludePatches
,
pp
.
name
()))
else
if
(
findStrings
(
excludePatches
,
pp
.
name
()))
{
Info
<<
" excluding patch "
<<
patchI
<<
" "
<<
pp
.
name
()
<<
endl
;
}
else
{
patchIDs
.
append
(
patchI
);
Info
<<
" patch "
<<
patchI
<<
" "
<<
pp
.
name
()
<<
endl
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment