• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Help with editing .asm files for P3D

Messages
2
Country
singapore
Hi everyone! I need some help digesting what is needed for my C-130 simulation and its .asm files.
Here's the background:

In a nutshell, I want to use CFD (ANSYS Fluent) to obtain aerodyanmic data to be used to build a .asm and eventually .air file for P3D.

I have a TurboPropSample.asm file which I got from online somewhere to edit
and the first block is the "required aerodynamics" section which is as below.
I would like to know what do the various terms in BOLD refer to and the numbers beside them mean?
I have a background in aeronautical engineering and am familiar with flight dynamics.

;******START OF AERODYNAMIC DATA ************************************************************************************
;********************************************************************************************************************

;**** BEGINNING OF REQUIRED AERODYNAMICS ************************

;The following 6 blocks define the base stability and control derivatives
;Lift, Drag, Pitch, Side Force, Roll, and Yaw.

TOKEN_BEGIN AIR_80_LIFT_PARAMS
REAL8 0.000000 ; CL spoiler
REAL8 0.673300 ; CL flaps
REAL8 0.000000 ; UNUSED
REAL8 -0.94800 ; CLih
REAL8 -0.38900 ; CLde
REAL8 0.000000 ; UNUSED
TOKEN_END

TOKEN_BEGIN AIR_80_DRAG_PARAMS
REAL8 0.023 ; CDo
REAL8 0.080000 ; CD flaps
REAL8 0.017000 ; CD gear
REAL8 0.000000 ; CD spoiler
TOKEN_END

TOKEN_BEGIN AIR_80_PITCH_PARAMS
REAL8 -3.21631 ; CMih
REAL8 -1.46480 ; CMde
REAL8 0.000000 ; CMde due to propwash
REAL8 -7.81250 ; CLq
REAL8 4.327600 ; CL adot
REAL8 9.765600 ; CM adot
REAL8 -35.1560 ; CMq
REAL8 0.000000 ; CMq due to propwash
REAL8 -0.02930 ; CMo
REAL8 -0.10000 ; CM flap
REAL8 -0.70000 ; CM delta trim
REAL8 0.000000 ; CM gear
REAL8 0.000000 ; CM spoiler
TOKEN_END

TOKEN_BEGIN AIR_80_SIDE_FORCE_PARAMS
REAL8 -0.57226 ; CyB
REAL8 0.000000 ; CyP
REAL8 0.346190 ; CyR
REAL8 -0.09131 ; Cy Delta Rudder
TOKEN_END

TOKEN_BEGIN AIR_80_ROLL_PARAMS
REAL8 0.0976000 ; ClB
REAL8 -1.465000 ; ClP
REAL8 -0.146480 ; ClR
REAL8 0.0000000 ; Cl Delta Spoiler
REAL8 -0.200200 ; Cl Delta Aileron
REAL8 0.0151360 ; Cl Delta Rudder
TOKEN_END

TOKEN_BEGIN AIR_80_YAW_PARAMS
REAL8 0.146480 ; CnB
REAL8 0.063476 ; CnP
REAL8 -0.97650 ; CnR
REAL8 0.000000 ; CnR due to propwash
REAL8 0.000000 ; UNUSED
REAL8 0.000000 ; UNUSED
REAL8 -0.03027 ; Cn Delta Aileron
REAL8 0.050290 ; Cn Delta Rudder
REAL8 0.000000 ; Cn Delta Rudder due to propwash
TOKEN_END


;CL vs. Alpha
;The first entry defines the number of data points (maximum 47 entries)
TOKEN_BEGIN AIR_CL_ALPHA

UINT32 13 ;NUMBER OF ENTRIES

REAL8 -3.142, 0.000
REAL8 -2.356, 0.500
REAL8 -1.571, 0.000
REAL8 -0.308, -1.085
REAL8 -0.029, 0.000
REAL8 0.000, 0.159
REAL8 0.244, 1.488
REAL8 0.279, 1.550
REAL8 0.314, 1.488
REAL8 0.349, 1.085
REAL8 1.571, 0.000
REAL8 2.356, -0.500
REAL8 3.142, 0.000

TOKEN_END

;CM vs. Alpha
;The first entry defines the number of data points (maximum 47 entries)
TOKEN_BEGIN AIR_CM_ALPHA

UINT32 13 ;NUMBER OF ENTRIES

REAL8 -3.142, 0.000
REAL8 -0.541, -0.603
REAL8 -0.367, -0.603
REAL8 -0.297, -0.302
REAL8 -0.279, -0.251
REAL8 -0.262, -0.209
REAL8 0.000, 0.000
REAL8 0.262, 0.209
REAL8 0.279, 0.251
REAL8 0.297, 0.302
REAL8 0.367, 0.603
REAL8 0.541, 0.603
REAL8 3.142, 0.000

TOKEN_END
;**** END OF REQUIRED AERODYNAMICS ************************************************

Thank you for taking the time to read this and help!
 

mgh

Messages
1,413
Country
unitedkingdom
ih = Due to horizontal tail incidence angle
de = Due to elevator deflection
adot = Due to rate of change of angle of attack
 
Top