How to get the PLOT3D functions in AcuFieldView for post processing????

Altair Forum User
Altair Forum User
Altair Employee
edited October 2020 in Community Q&A

Dear Altair-Engineering-Team,
 
I am writing my bachelor thesis in the area of fluid mechanics. Here, I examine various models with the help of AcuConsole (AcuSolve). To evaluate my calculations, I'm using the additional software 'AcuFieldView'.
 
My problem:
 
I would like to use the 'PLOT3D' functions in AcuFieldview but I don't know how to get them. I read already the reference guide and there is mentioned that you can write own functions and register them afterwards but that was too superficial for me.

 

My question:

 

Do you have already created files for these 'User Functions' (PLOT3D) and can you tell me in brief how to register these in AcuFieldView. Maybe a short tutorial which explains step by step to do that?

 

Thank you very much

 

Ayrix

Tagged:

Answers

  • ydigit
    ydigit
    Altair Employee
    edited October 2014

    AcuFieldView is special version of FieldView that is meant to read only AcuSolve results. Hence you can read only .Log files from AcuSolve or convert AcuSolve results to .fv format using AcuTrans.

     

    What function are you looking for ? If you could describe that, it might be possible to help you with a .frm file.

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited October 2014

    thank you for your reply...

     

    i need to visualize (in acufieldview) the following functions

     

    - mach number

    - density

    - pressure coefficient cp

    - lift coefficient ca

    - aerodynamic drag coefficient cd/cw

    - volume fraction

     

    thanks

  • ydigit
    ydigit
    Altair Employee
    edited October 2014

    Density should be generally visible as a scalar in AcuFieldView.

     

    For Lift and Drag I would recommend you to create a case in Virtual Wind Tunnel and check out Lift and Drag Coefficient files in the run directory.

    ---------------------

    Cp would be similar to :

     

    formula_restart_version: 1
    vwtVel
    50.00000
    vwtRho
     1.22500
    vwtCp
    ('pressure'-0)/(0.5*'vwtRho'*('velocity_magnitude'+'vwtVel')^2)

     

    --------------------------------

    Mach number

     

    ************* MACH NUMBER - AIR ******************************
    'temperature'
    speed_of_sound
    20.05*sqrt('temperature')
    mach_number
    'velocity-magnitude'/'speed_of_sound'
    running_ave_speed_of_sound
    20.05*sqrt('running_ave_temperature')
    running_ave_mach_number
    'running_ave_velocity-magnitude'/'running_ave_speed_of_sound'
    ********************************************************************

     

  • ydigit
    ydigit
    Altair Employee
    edited October 2014

    I am not sure what you meant by volume fraction.

    AcuSolve is single phase solver. Not sure if volume fraction makes sense for single phase flows.

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited November 2014

    hi

     

    density is not availible as a scalar function. because of that, i can't write functions which contains the density in the equation.

    i don't think acusolve single phase solver. altair has tutorials for multiple phase problems on their website.

     

    i don't know to use wind tunnel. do you know where i can get tutorials therefor?

     

    thanks

  • cfdguru
    cfdguru New Altair Community Member
    edited November 2014

    Density is available if you have DERIVED_QUANTITY _OUTPUT turned on in the AcuSolve input file.

  • ydigit
    ydigit
    Altair Employee
    edited November 2014

    The tutorials you might have seen are related to multispecies using scalar transport equation.

     

    For VWT Tutorial, Help manual of has detailed information.

    Additionally this video tutorial : http://training.altairuniversity.com/analysis/cfd/virtual-wind-tunnel/virtual-wind-tunnel-analysis-of-a-student-race-car/

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited December 2014

    as you can see at the pic below, you can use the mach number in acufieldview.

    my question is, how can i make that visible? because this options are not avalible in my version (13.2)

     

     

     

     

    <?xml version="1.0" encoding="UTF-8"?>post-33616-0-84353500-1417532019_thumb.p

  • ydigit
    ydigit
    Altair Employee
    edited December 2014

    It is possible to create a formula for Mach number.

     

    Please refer to page 90 of FVReference_Manual.pdf in your AcuSolve/FV installation.

    'How do I Create a new formula?'

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited December 2014

    thank you sir.

     

    i've got it!!!