CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Visualization & Post-Processing Software > Tecplot

vorticity from tecplot

Register Blogs Community New Posts Updated Threads Search

Like Tree2Likes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   December 3, 2009, 12:15
Default vorticity from tecplot
  #1
Senior Member
 
Hassan
Join Date: Apr 2009
Posts: 106
Rep Power: 17
HaKu is on a distinguished road
hey

i have the data for velocities ..

i want to know tht whether tecplot can give me the vorticity contours as well or do i need to calculate it first from my code and thn i cn see it in tecplot??

if its the second case wht is formula to calculate vorticity so i cn use it in my finite diffeerence code..

regards
HaKu is offline   Reply With Quote

Old   December 3, 2009, 13:25
Default vorticity plt
  #2
Senior Member
 
CFDtoy
Join Date: Mar 2009
Location: United States
Posts: 145
Blog Entries: 2
Rep Power: 17
CFDtoy is on a distinguished road
use the calculator available in tecplot - compute the cross product of gradient and velocity vector and get a vector. Remember - vorticity is a vector..not a scalar...

Quote:
Originally Posted by HaKu View Post
hey

i have the data for velocities ..

i want to know tht whether tecplot can give me the vorticity contours as well or do i need to calculate it first from my code and thn i cn see it in tecplot??

if its the second case wht is formula to calculate vorticity so i cn use it in my finite diffeerence code..

regards
CFDtoy is offline   Reply With Quote

Old   December 3, 2009, 15:01
Default
  #3
Senior Member
 
Hassan
Join Date: Apr 2009
Posts: 106
Rep Power: 17
HaKu is on a distinguished road
any idea to get it directly from the code???
HaKu is offline   Reply With Quote

Old   December 3, 2009, 15:05
Default
  #4
ski
New Member
 
AS
Join Date: Jul 2009
Posts: 16
Rep Power: 16
ski is on a distinguished road
In the version of tecplot I'm using (tecplot 360 2008, linux) I click on the `analyze' menu and select `calculate variables'. I can then select vorticity and can then plot contours of the x-vorticity, y-vorticity etc. I'm sure other versions of Tecplot will have similar options.
Светлана likes this.
ski is offline   Reply With Quote

Old   December 3, 2009, 15:34
Default
  #5
Senior Member
 
Hassan
Join Date: Apr 2009
Posts: 106
Rep Power: 17
HaKu is on a distinguished road
hey ski

does it work even if u r not calucating vorticity seperatly in the code??
HaKu is offline   Reply With Quote

Old   December 3, 2009, 15:45
Default
  #6
ski
New Member
 
AS
Join Date: Jul 2009
Posts: 16
Rep Power: 16
ski is on a distinguished road
I believe Tecplot calculates the vorticity from your velocity field so there is no need for you to calculate vorticity in your code.
Светлана likes this.
ski is offline   Reply With Quote

Old   December 3, 2009, 22:45
Default
  #7
Senior Member
 
Hassan
Join Date: Apr 2009
Posts: 106
Rep Power: 17
HaKu is on a distinguished road
thanks .. i will try and see how it goes..
HaKu is offline   Reply With Quote

Old   December 4, 2009, 09:27
Default in code
  #8
Senior Member
 
CFDtoy
Join Date: Mar 2009
Location: United States
Posts: 145
Blog Entries: 2
Rep Power: 17
CFDtoy is on a distinguished road
Just use the vector cross product of grad and u. You have u - u1, u2, u3, grad operator along gradx,grady,gradz (d/dx,d/dy,d/dz) - just take any test book and you will have grad X v = vorticity vector array. Read them and plot in tec or fieldview or any other.


Quote:
Originally Posted by HaKu View Post
thanks .. i will try and see how it goes..
CFDtoy is offline   Reply With Quote

Old   December 4, 2009, 11:13
Default
  #9
Senior Member
 
Hassan
Join Date: Apr 2009
Posts: 106
Rep Power: 17
HaKu is on a distinguished road
yes sir i got it now
HaKu is offline   Reply With Quote

Old   September 4, 2011, 01:06
Default time vs velocity grpah
  #10
Member
 
Nirav
Join Date: Jul 2011
Posts: 43
Rep Power: 14
niravtm007 is on a distinguished road
Send a message via Skype™ to niravtm007
i have used a udf to get a sinusoidal velocity input. can any one please show how can i use this data files from fluent to tec plot to get a time vs velocity graph so i can see if its varying sinusoidally or not.
niravtm007 is offline   Reply With Quote

Old   September 4, 2011, 06:33
Default
  #11
Senior Member
 
cfdnewbie
Join Date: Mar 2010
Posts: 557
Rep Power: 20
cfdnewbie is on a distinguished road
I would advise you against using the tecplot build in function. We have found that its vorticity calculation is far inferior to the one done within the code! Your best approach is to compute it from the velocity field yourself, and have tecplot just display it!
cfdnewbie is offline   Reply With Quote

Old   May 25, 2012, 12:18
Default
  #12
Senior Member
 
Scott Rumage
Join Date: May 2009
Location: Seattle, WA
Posts: 152
Rep Power: 16
scott_rumage is on a distinguished road
Cfdnewbie’s comment above is correct -- older versions of Tecplot 360 were not as accurate as they should have been in the calculation of vorticity.

However, the release of Tecplot 360 2012 reworked the calculations at the boundary nodes resulting in an improvement in the accuracy of the vorticity result.

Scott

http://www.tecplot.com/Solutions/Pro...ecplot360.aspx
scott_rumage is offline   Reply With Quote

Old   September 3, 2012, 11:34
Smile A real problem in techpolt
  #13
Senior Member
 
mohammad
Join Date: Dec 2010
Location: UK
Posts: 245
Rep Power: 16
mohammad is on a distinguished road
Hey everybody....
I have got a big problem with Techplot.
I have the results of vorticity in in my domain in CFX. However, when i export to it to *.CSV and then convert it to *.DAT the Techplot gives me connectivity error.
Amazingly, the velocity of the same domain (or plane) can be shown in techplot without any problem...

can anyone tell me why?
Does the Techplot have some problem with vorticity data....PLZ note that every bit of the files of the vorticity and velocity are the same, except the velocity is replaced vorticity.

thanks in advance
mohammad is offline   Reply With Quote

Old   May 18, 2013, 05:51
Default vorticity in a cylindrical coordinate
  #14
New Member
 
J.G.Wang
Join Date: May 2011
Posts: 14
Rep Power: 14
W.T.S is on a distinguished road
Quote:
Originally Posted by cfdnewbie View Post
I would advise you against using the tecplot build in function. We have found that its vorticity calculation is far inferior to the one done within the code! Your best approach is to compute it from the velocity field yourself, and have tecplot just display it!
Do you know how to calculate tangential vorticity, maybe it's not called tangential vorticity, i mean the vorticity in a cylindrical coordinate.Thank you!!!
W.T.S is offline   Reply With Quote

Old   May 18, 2013, 16:38
Smile
  #15
Senior Member
 
Join Date: Nov 2010
Posts: 139
Rep Power: 15
taxalian is on a distinguished road
Send a message via Skype™ to taxalian
Hi Wang,

I would try the coordinate transformation from cylindrical to rectangular and then calculate the vorticity. Alternate way is to calculate the vorticity directly in the cylindrical coordinates.
taxalian is offline   Reply With Quote

Old   May 18, 2013, 23:58
Default Thankyou very much!
  #16
New Member
 
J.G.Wang
Join Date: May 2011
Posts: 14
Rep Power: 14
W.T.S is on a distinguished road
Quote:
Originally Posted by taxalian View Post
Hi Wang,

I would try the coordinate transformation from cylindrical to rectangular and then calculate the vorticity. Alternate way is to calculate the vorticity directly in the cylindrical coordinates.
Thank you for your help! If calculate the vorticity in the cylindrical coordinate, we can only get the x,y,z vorticity. But since I need the Vtheta,Vr,Vz, to display my data in a cylindrical coordinate, I think the cyclindrical coordinate is better. Infact, the only problem for me now is how to calculate the first order derivative ddr, but the calculation of ddr is only works in polar line 2D, while need a 3d solution.Could you help me with this? Thank you very much! By the way, how can I define a "if" statement in tecplot?
W.T.S is offline   Reply With Quote

Old   October 1, 2013, 10:45
Default
  #17
New Member
 
JAY
Join Date: Jul 2013
Posts: 10
Rep Power: 12
JAY ADHVARYU is on a distinguished road
How i get the streamline plot and total pressure plot in techplot? pls help me i am beginer, i have portable techplot 360 2009 R1 12.0.0.4231.

I also go to anlyze then calculate variable but there is no option for total pressure and stream line plot.
JAY ADHVARYU is offline   Reply With Quote

Old   January 14, 2018, 13:54
Default
  #18
New Member
 
Chayanit Nigaltia
Join Date: Jan 2018
Posts: 29
Rep Power: 8
CHAYANIT is on a distinguished road
How to convert .csv data into .dat one?
CHAYANIT is offline   Reply With Quote

Old   January 15, 2018, 03:00
Default
  #19
Senior Member
 
mohammad
Join Date: Dec 2010
Location: UK
Posts: 245
Rep Power: 16
mohammad is on a distinguished road
Quote:
Originally Posted by CHAYANIT View Post
How to convert .csv data into .dat one?
You can find it online or send me an email to mohammad.moshfeghi@mail.com. I will send you the software
mohammad is offline   Reply With Quote

Old   March 22, 2021, 04:03
Default how to increase lines around vortices
  #20
Member
 
Join Date: Aug 2018
Posts: 85
Rep Power: 7
esha is on a distinguished road
Hi, I have calculated vorticity and want to show the contour lines on a slice. But it just display the lines outside of contours. How may I increase the number of lines inside vortices representing the vortices? I am using Tecplot. I am failed to upload a picture here.
esha is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Importing contour maps into Tecplot jcostex Tecplot 1 May 20, 2009 12:48
Vorticity Iso-Surface John Main CFD Forum 0 April 4, 2009 23:10
How to read tecplot file witout tecplot ? Pol Tecplot 11 March 2, 2007 06:26
Using Tecplot for contours display david FLUENT 2 August 23, 2005 22:37
Tecplot can't read data file from Fluent. stephen FLUENT 8 November 21, 2001 20:27


All times are GMT -4. The time now is 15:08.