Fixing Incorrectly Spaced Dashed Lines in EPS Format Export

Problem: When I export an image of my dashed XY plot as a .EPS file, the dash spacing is altered and irregular. Detailed Example Case: When I export the plot to eps file and open it, the patterns of the dashed and dash-dotted lines are inaccurate. The pattern interval is not uniform and sometimes the dot in the dash-dotted line vanishes. These are highlighted in red: Plot before exporting (correct […]

» Read More


Calling a Macro from Another Macro

Problem: I have a few macros that I use often and want to call them from within another macro. Solution: Tecplot 360 allows for macros and macro functions to be called from other macro files via the $!INCLUDEMACRO command. For example, if you have a macro function to post an equation in a file called add_text.mcr: #!MC 1410 $!MACROFUNCTION NAME = “Equation” $!AttachText   AnchorPos     {     X = […]

» Read More


Calculate Delta Criterion

Problem: How do I calculate Delta Criterion? Solution: The easiest way to do this is to use a Tecplot Macro to automate the calculation. Calculations are derived from https://www.ctr.maths.lu.se/media/thesis/2013/FMA820.pdf First, make sure Tecplot has established the velocity variables via the Field Variables dialog (Analyze -> Field Variables). Then, play the macro via the Scripting menu. The macro commands are as follows: Calculate the Velocity Gradient tensor. (Can also be calculated […]

» Read More


Use Raw Strings to Load Multiple Files Using Multiple Lines

In 2018 R2 we’ve added the capability for raw strings to be used in Macros. This added the capability to space the files out on multiple lines for readability. Before raw strings, all of the files had to be placed on one line which made for terrible readability when loading more than a couple of data files. Here is the syntax for loading multiple files: $!ReadDataSet R”INPUTFILES(“/this/is/a/somewhat/long/file/name/File1.dat”                                                                 “/this/is/a/somewhat/long/file/name/File2.dat”                                                                 […]

» Read More


Calculating Average Normal Velocity to Iso-Surface

Problem: How do I calculate the average normal fluid velocity (or any vector variable) going through an iso-surface? Details: Or stated another way, “I am trying to use a vector dot product with unit normal integration to get the average normal velocity through an extracted iso-surface.”  This question originally relates to this scenario, but it can be used for calculating the average flux though a surface for various cases. Solution: […]

» Read More


Creating Streamtraces on a No-slip Boundary Surface with Multiple Surrounding Volume Zones

Problem: How do I create streamtraces on a no-slip boundary surface with multiple surrounding volume zones? In more detail: In the User’s Manual in the section titled “Surface Streamtraces on No-slip Boundaries”, it describes how to create these surface streamtraces in the context of an ASCII file with one parent (volume) zone. However, if other data file types are used or multiple parent zones, these instructions do not apply. Solution: […]

» Read More


Use of $!BASICSIZE to customize the size selections in Tecplot 360

Problem: The default sizes and line thicknesses are too varied and some are too large. Is there a way to customize the size selections? Solution: Using $!BASICSIZE from the configuration file, users can customize the default sizes in the user interface. For example, these commands will update the Line Thickness options and the Symbol Sizes: $!BASICSIZE LINETHICKNESSES { MEDIUM = 0.2 LARGE = 0.3 HUGE = 0.4 } SYMBOLSIZES { […]

» Read More


Calculate Lambda-2 Criterion

Problem: How do I calculate the Lambda-2 criterion? Solution: Use a Tecplot Macro to automate the calculation. Make sure Tecplot is aware of the variables representing your velocity field (Analyze->Field Variables menu).   The commands are as follow: Calculate the tensor of velocity gradients. This command can be obtained by recording the Analyze->Calculate Variables…->Velocity Gradient (tensor) action in Tecplot’s graphical user interface (GUI). $!EXTENDEDCOMMAND COMMANDPROCESSORID = ‘CFDAnalyzer4’ COMMAND = ‘Calculate […]

» Read More


Animation Export Size and Format Limitations

Problem: Windows Media Player (WMP) and PowerPoint cannot handle large .mp4 export files (image widths greater than 3000 pixels). Details: MP4 video animation export in Tecplot 360 (as of 2018.2.1) will display properly on Linux (using VLC), MacOS (QuickTime Player), and Windows (Windows Media Player, PowerPoint, and Web Viewer) with one exception: Windows Media Player and PowerPoint cannot handle MP4 image widths greater than 3000 pixels.   Solution: Exporting large WMV […]

» Read More


Invalid Connectivity Error Message when Slicing

Problem: I receive the following error when trying to create slices in my data: “Invalid Connectivity found when slicing cell ### from source zone #…” Solution: With the new option of Polygonal Slice mesh, which is meant to preserve the original mesh structure, invalid meshes create a bad cell in a slice. This is why the error is appearing. In many cases, the slices can be generated when switching to […]

» Read More