CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > CFX

CEL expession for Cp in CFX-Pre

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 28, 2008, 13:18
Default CEL expession for Cp in CFX-Pre
  #1
Farid
Guest
 
Posts: n/a
Is it possible to write a CEL function or create a variable in CFX- Pre to get Cp distribution on any suface or body?
  Reply With Quote

Old   February 28, 2008, 16:25
Default Re: CEL expession for Cp in CFX-Pre
  #2
Glenn Horrocks
Guest
 
Posts: n/a
Hi,

Yes. You can do it during the simulation by sending it to a additional variable or in post processing in CFX-Post. You would only do it in the simulation if you needed to use the variable in the simulation.

Glenn Horrocks
  Reply With Quote

Old   February 29, 2008, 08:54
Default Re: CEL expession for Cp in CFX-Pre
  #3
Farid
Guest
 
Posts: n/a
Thanks Glenn.

I am trying to write CEL expression as areaInt(p)@airfoil. but it will give me just one value of pressure on the surface. i need pressure on each point of the airfoil.
  Reply With Quote

Old   February 29, 2008, 09:48
Default Re: CEL expession for Cp in CFX-Pre
  #4
CycLone
Guest
 
Posts: n/a
areaInt(p)@airfoil returns the area integrated pressure over the entire airfoil region. If you want the local pressure, just use 'p' or 'Pressure'. Also keep in mind that this pressure is relative to the reference pressure you defined in your domain object.

-CycLone
  Reply With Quote

Old   February 29, 2008, 10:13
Default Re: CEL expession for Cp in CFX-Pre
  #5
Farid
Guest
 
Posts: n/a
Thanks Cyclone.

I tried to write an expression as "Pressure@AIRFOIL" but the following error message was shown:

"Deprecated syntax detected at position 9 of expression:

"Pressure@AIRFOIL" Missing function call parentheses. This will be an error in future releases of the software. Successfully read 8 characters:

Pressure then error detected at:

@AIRFOIL"

  Reply With Quote

Old   February 29, 2008, 11:39
Default Re: CEL expession for Cp in CFX-Pre
  #6
CycLone
Guest
 
Posts: n/a
When you write an expression, it is evaluated where it is used. Cp is the change in local pressure relative to the inlet dynamic pressure:

Cp = (p-p_inf)/(Dynamic_inf)

p_inf is the far field pressure and v_inf is the velocity of the wing. In CEL, just write:

Pinf = areaAve(p)@inlet Dynamic inf = massFlowAve(ptot-p)@inlet Cpres = (p-Pinf)/Dynamic inf

The above can be done in CFX-Post. To display Cp distribution on the airfoil, you first need to create a variable and set it equal to "Dynamic inf". Once you have your variable, plot it wherever you please.

-CycLone

  Reply With Quote

Old   February 29, 2008, 11:40
Default Re: CEL expession for Cp in CFX-Pre
  #7
CycLone
Guest
 
Posts: n/a
(sorry, forgot the line breaks)

When you write an expression, it is evaluated where it is used. Cp is the change in local pressure relative to the inlet dynamic pressure:

Cp = (p-p_inf)/(Dynamic_inf)

p_inf is the far field pressure and v_inf is the velocity of the wing. In CEL, just write:

Pinf = areaAve(p)@ Dynamic inf = massFlowAve(ptot-p)@inlet Cpres = (p-Pinf)/Dynamic inf

The above can be done in CFX-Post. To display Cp distribution on the airfoil, you first need to create a variable and set it equal to "Dynamic inf". Once you have your variable, plot it wherever you please.

-CycLone

  Reply With Quote

Old   February 29, 2008, 16:51
Default Re: CEL expession for Cp in CFX-Pre
  #8
marco
Guest
 
Posts: n/a
RANS modelling had its days and now LES is taking over. CFX is not a very good software for serious LES work. Considering the cost and limited features that CFX offers, is it still worth to work on such a software?

On the other hand OpenFOAM offers much more than CFX for both RANS and LES modelling and its absolutely free of charge. OpenFOAM results have proven to be much more accuarte than CFX results. When OpenFOAM is the future then why work on CFX. Why are you guys still using CFX and have you considered switching to OpenFOAM? comment please cyclone and Others.

  Reply With Quote

Old   February 29, 2008, 17:25
Default Re: CEL expession for Cp in CFX-Pre
  #9
Rogerio Fernandes Brito
Guest
 
Posts: n/a
Caro Marco, eu estou tendo problemas no cfx para a simulação da transferencia de calor por condução. Esse programa que voce citou é bom para a solução da equação da difusão de calor?

Dear Marco, I am having problems in cfx for the simulation of the conduction heating transfer . Is this program that you mentioned good for the solution of the equation of the heat diffusion?
  Reply With Quote

Old   February 29, 2008, 17:27
Default Re: CEL expession for Cp in CFX-Pre
  #10
Rogerio Fernandes Brito
Guest
 
Posts: n/a
Where is the link on the internet to make the download of OpenFOAM? Gracias!
  Reply With Quote

Old   February 29, 2008, 18:03
Default Re: CEL expession for Cp in CFX-Pre
  #11
marco
Guest
 
Posts: n/a
Yes its excellent. www.openfoam.org is the link. It works much better on Linux though. I would recommend you burn an ISO image on a CD and install Linux first and then you can install OpenFoam. You will be amazed how good its solvers and other features are! You will end up regretting the time you wasted on CFX.

marco
  Reply With Quote

Old   February 29, 2008, 20:37
Default Re: CEL expession for Cp in CFX-Pre
  #12
Rogerio Fernandes Brito
Guest
 
Posts: n/a
Are there the same features as cfx ???
  Reply With Quote

Old   March 1, 2008, 07:43
Default Re: CEL expession for Cp in CFX-Pre
  #13
marco
Guest
 
Posts: n/a
Much better features.

marco
  Reply With Quote

Old   March 1, 2008, 09:28
Default Re: CEL expession for Cp in CFX-Pre
  #14
Hekler
Guest
 
Posts: n/a
Because openfoam is a convoluted uninteligible piece of crap. Have you looked at the source code lately? Besides LES is not an industrial strength tool anyways.
  Reply With Quote

Old   March 1, 2008, 09:34
Default Re: CEL expession for Cp in CFX-Pre
  #15
Hekler
Guest
 
Posts: n/a
like what? It doesn't even have a decent GUI, and you have to compile it yourself, and it has zero testing, there is nothing positive about it.
  Reply With Quote

Old   March 1, 2008, 09:37
Default Re: CEL expession for Cp in CFX-Pre
  #16
Hekler
Guest
 
Posts: n/a
what problems do you have? I solve heat conduction problems in cfx all the time. It works great.
  Reply With Quote

Old   March 1, 2008, 15:13
Default Re: CEL expession for Cp in CFX-Pre
  #17
Rogerio Fernandes Brito
Guest
 
Posts: n/a
Could you show me your problem? Did u make a comparison with experimental data? what kind of mesh do u use?
  Reply With Quote

Old   March 1, 2008, 15:15
Default Re: CEL expession for Cp in CFX-Pre
  #18
Rogerio Fernandes Brito
Guest
 
Posts: n/a
There is no version of openfoam for Windows. What a shame!
  Reply With Quote

Old   March 5, 2008, 21:09
Default Re: CEL expession for Cp in CFX-Pre
  #19
HekLeR
Guest
 
Posts: n/a
Try 1d conduction in a solid box. The answer is analytic. Is that not what you solve? Hopefully you do not need my setup for this.
  Reply With Quote

Old   March 5, 2008, 21:13
Default Re: CEL expession for Cp in CFX-Pre
  #20
HekLeR
Guest
 
Posts: n/a
That's right.

Why don't you do it yourself. It's open source after all, therefore it must be the best thing ever.

If your lucky, someone may even pay you money to do it for them. To bad your income stream is gone when you merge your changes back to the central version.

  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
Setting Pressure Boundary Conditions in ANSYS CFX Pre saisanthoshm88 CFX 21 February 22, 2017 16:50
Defining a domain in CFX Pre ashtonJ CFX 1 June 13, 2011 02:34
Importing a project from ICEM to CFX pre faisal_durr CFX 2 February 9, 2011 10:20
Setting material properties - CFX Pre cavani CFX 6 January 27, 2011 19:52
How to set up a CFX Pre? winglet CFX 4 July 2, 2009 12:46


All times are GMT -4. The time now is 19:40.