lab9 |
|||||||||||||||||||||||||||
MAIN TECPLOT PAGE![]()
In
$HOME/
|
alias tec10="/usr/local/tecplot10/bin/tecplot -c $HOME/tecplot/tecplot.cfg" |
| <bash> tec10
-qm[path]/stencil.mcr |
WARNING:Avoid printing flooded contors for reports. Reports with flooded contours will back up the printer queue for a long time. This is not what you want on the day a report is due. And it will kill your social life! It will also bloat your disk usage and before you know it you will be out of space! Here is the remedy
|
| Download the
following files into your tecplot directory |
|||||||||
| Download the
specialized multicolumn files into the tecplot directory |
SPECIAL AIRFOILS use the special
options button on the load data menu These two airfoils have their directions opposite to what you have been taught in class. They are also in a data file with many more columns. The special options button in the load data file menu will be required. Load only the "x" and "y" columns |
||||||||
| Download the coarse
mesh and the kutta results for aoa=0 and 5. Using a V=10 m/s and
rho=0.00238 |
|
||||||||
| Download the data
sets for a circle |
|
||||||||
| Select the link Getting
started |
This link will step
through the various steps required to create a tecplot plot, save the
layout and export the file as an .eps for Latex. |
GETTING STARTED IN
TECPLOT
|
|||
BASIC REQUIREMENTS FOR GOOD PLOTS
|
READING THE NUMBER OF ENTRIES IN A FILE OF UNKNOWN ENTRIESRef: Chapman's F90 book! |
|
| PROGRAM
read INTEGER :: nvals = 0 ! Number of values read in INTEGER :: status ! I/O status REAL(kind=8):: value ! The real value read in OPEN (UNIT=3, FILE=filename, STATUS='OLD', ACTION='READ', IOSTAT=status ) readloop: DO READ (3,*,IOSTAT=status) value ! Get next value IF ( status /= 0 ) EXIT ! EXIT if not valid. nvals = nvals + 1 ! Valid: increase count WRITE (*,1010) nvals, value ! Echo to screen 1010 FORMAT (' ','Line ', I6, ': Value = ',F10.4 ) END DO readloop rewind(3) allocate (x(1:nval) allocate (y(1:nval) ! Read the file again and store the x and y coordinates. May want to check which column is the x and y columns in the file before reading the values in. readloop2:do i = 1,nvals read(3,*) x(i),y(i) enddo readloop2 |