how to make lift with a .config file

joshua01793

New member
Joined
Aug 4, 2008
Messages
36
Reaction score
0
Points
0
i am using the normal .config files not .ddl's and i dont no how to make the ship have lift.

can someone help its a little funny having to pot my new ship at a pitch of like 30 degrees gust to keep it off the ground
 

joshua01793

New member
Joined
Aug 4, 2008
Messages
36
Reaction score
0
Points
0
lol that is a little bit of cheating i need to make the lift work like on the DG or a plane
 

Black dog

New member
Joined
Jun 12, 2008
Messages
45
Reaction score
0
Points
0
Greetings young master,

I have only done one myself, and that is for SC3.dll, but the config file stuff is all based on the OAPI anyway. I found that you have to do it by trial and error, by adjusting the parameters until you get something that flies. I couldn't find anything on the web that I could understand, not being an aerodynamicist myself. You could start by looking at config files for other addons. I got the thrust values, ISP, cross section, PMI, rotational drag and all the rest sorted out first, and then messed with the aerodynamics, and then messed with the thrust values and rotational drag again. My ship is a big mother and not at all realistic, so I ended up with these sorts of values (note the attitude thrusters are as powerful as the main thrusters);

[CONFIG]
MESHNAME="CAT"
SIZE=86.2
EMPTY_MASS=2e5
FUEL_MASS=18e5
MAIN_THRUST=49e6
RETRO_THRUST=14e6
HOVER_THRUST=21e6
ATTITUDE_THRUST=49e6
ISP=9e5
TRIM=0.00
PMI=(1627,1784,388)
CW_Z_POS=0.005
CW_Z_NEG=0.010
CW_X=0.005
CW_Y=0.005
CROSS_SECTION=(5760,9221,2230)
COG=0
PITCH_MOMENT_SCALE=1
BANK_MOMENT_SCALE=1
ROT_DRAG=(8.5,4.5,6.5)
LAND_PT1=(0,-28.5,43)
LAND_PT2=(-17.5,-28.5,-40)
LAND_PT3=(17.5,-28.5,-40)
FOCUS=0
ATT_TEX=Exhaust_atrcs
MAIN_PSTREAM1=DGContrail
MAIN_PSTREAM2=DGMain
HOVER_PSTREAM1=DGContrail
HOVER_PSTREAM2=DGHover
RETRO_PSTREAM1=DGContrail
RETRO_PSTREAM2=DGMain
ATT_PSTREAM1=LLRVex
[AERODYNAMICS]
; lift/drag attack point of the vertical airfoil
VAIRFOIL_ATTACK=(0,0,-58)
; wing chord length of the vertical airfoil
VAIRFOIL_CHORD=800
; wing area of the vertical airfoil
VAIRFOIL_AREA=16000
; wing aspect ratio of the vertical airfoil
VAIRFOIL_ASPECT=0.5
; lift/drag attack point of the horizontal airfoil
HAIRFOIL_ATTACK=(0,0,-58)
; wing chord length of the horizontal airfoil
HAIRFOIL_CHORD=800
; wing area of the horizontal airfoil
HAIRFOIL_AREA=8000
; wing aspect ratio of the horizontal airfoil
HAIRFOIL_ASPECT=0.5
; surface area of aileron
AILERON_AREA=200
; lift change of aileron
AILERON_LIFT=5
; lift/drag attack point of left aileron (right aileron deduced by x -> -x
AILERON_ATTACK=(-37,0,-69)
; surface area of elevator
ELEVATOR_AREA=500
; lift change of elevator
ELEVATOR_LIFT=5
; lift/drag attack point of elevator
ELEVATOR_ATTACK=(0,32,-69)
; surface area of rudder
RUDDER_AREA=100
; lift change of rudder
RUDDER_LIFT=5
; lift/drag attack point of rudder
RUDDER_ATTACK=(0,18,-69)

I hope you get SOMETHING out of my reply. Real addon developers are probably having fits looking at this. Good luck.
 
Top