Correct me if I'm wrong but MSFS doesn't really do proper castering tail wheels does it?
From what I have searched in the last day or two I haven't found any solutions for proper castering tail wheels.
For example, the MSFS default aircraft which should have castering tail wheels actually use a workaround to fake it.
Here is the [CONTACT_POINTS] code from the flight_model.cfg for the Extra E330 (asobo-aircraft-e330):
The 90 in the point.0 limits the steering angle to 90 degrees either side. The max_speed_full_steering = 10 ft/sec and max_speed_decreasing_steering = 20 ft/sec means you only get the full 90 degree range at very low speeds and it is quickly reduced to 18 degrees by min_available_steering_angle_pct = 0.2 when you are above 20 ft/sec.
This does simulate full castering to an extent. You can still turn on the spot if you brake on one side only and once you start going faster it doesn't become an uncontrollable mess.
But it's not really castering is it?
And it also doesn't work for the aircraft I am working on. Like many vintage military aircraft the Winjeel has a free castering tail wheel which can be locked into a steerable tail wheel.
Here is an explanation of how the steering mechanism works on a T6:
www.t6harvard.com
The problem with the MSFS fake castering is when you apply the tail wheel lock it locks it into straight ahead position only. It no longer becomes steerable.
Now, you can make MSFS free caster by changing the steer angle of point.0 from 90 to 180. Just like you did in the FSX. You can't do this in the aircraft editor within MSFS apparently. From what I read you are limited to 90 degrees in the editor but you can change it to 180 manually (I never use the editors in game and do everything manually).
But this gives a new problem. The free castering in MSFS is makes the aircraft almost uncontrollable. Line a shopping trolley with all 4 wheels broken. For some reason whenever you stop the tail wheel gets an uncontrollable urge to move out to 90 degrees and when you start again you usually end up spinning. It requires massive amounts of differential braking and rudder movements to get it going straight again at which point it swings the other way. I imagine this is the reason Asobo use fake castering because it's uncontrollable without it.
But it does mean the tail wheel lock becomes steerable (controlled by the max_speed_full_steering, max_speed_decreasing_steering and min_available_steering_angle_pct parameters).
After many hours tinkering with the parameters I think I have come up with some settings that tames the worst of the castering tail wheel problems.
Here is what I have come up with so far:
Note the following:
1. point.0 set to 180 steering angle to activate free castering
2. The four castering parameters now become available (they do nothing if steering angle is set to 90 because that is fake castering).
3. max_speed_full_steering_castering is set to zero. If you increase this number then the aircraft will be uncontrollable until the speed exceeds the number.
4. max_speed_decreasing_steering_castering is set to 100 ft/sec. Above this speed the tail wheel will act like a steerable tail wheel. You may like to reduce this.
5. min_castering_angle is set to zero (otherwise your tail wheel will also steer one way or the other)
6. max_castering_angle = 0.018. This is the magic number. 0.018 radians is just above 1 degree. Below this and the tail wheel will act like a steerable tail wheel. Above this and it starts to become increasingly uncontrollable.
This still isn't perfect but it is the best that I can get MSFS to be if I want to simulate a castering tail wheel with steerable tail wheel lock. It's still easy to make the aircraft uncontrollable with castering active. I find a squirt of power to get the plane moving and then dropping the power back gets the airplane rolling with the minimum of random steering. Once the plane is rolling it steers quite well (a little too well perhaps but I'll take that over having to fight the plane to get going in a straight line).
The other issue is turning. Engaging the brake on one side and trying to turn the plane will rotate the tail wheel 90 degrees but as the rate of turn increases the tail wheel steering angle will reduce. Again, not perfect but it's such an outlier of a situation that I can live with it.
If you are making an aircraft with a free castering tail wheel you'd probably be better off using the MSFS fake castering method. It works well enough and does produce any control issues.
Likewise, if you are modeling a vintage aircraft with a steerable locking tail wheel you may choose to use the fake castering method or simply make the tail wheel fully steerable.
The only reason I have spent time on this is because I wanted the fully castering tail wheel with steerable locking.
From what I have searched in the last day or two I haven't found any solutions for proper castering tail wheels.
For example, the MSFS default aircraft which should have castering tail wheels actually use a workaround to fake it.
Here is the [CONTACT_POINTS] code from the flight_model.cfg for the Extra E330 (asobo-aircraft-e330):
Code:
max_speed_full_steering = 10 ; Defines the speed under which the full angle of steering is available (in feet/second).
max_speed_decreasing_steering = 20 ; Defines the speed above which the angle of steering stops decreasing (in feet/second).
min_available_steering_angle_pct = 0.2 ; Defines the percentage of steering which will always be available even above max_speed_decreasing_steering (in percent over 100).
max_speed_full_steering_castering = 20 ; Defines the speed under which the full angle of steering is available for free castering wheels (in feet/second).
max_speed_decreasing_steering_castering = 40 ; Defines the speed above which the angle of steering stops decreasing for free castering wheels (in feet/second).
min_castering_angle = 0.05236 ; Defines the minimum angle a free castering wheel can take (in radians).
max_castering_angle = 3.14159265358979 ; Defines the maximum angle a free castering wheel can take (in radians).
point.0 = 1, -14.9, 0, -1.725, 750, 0, 0.41, 90, 0.164, 2, 0.6, 0, 0, 0, 0, 0
The 90 in the point.0 limits the steering angle to 90 degrees either side. The max_speed_full_steering = 10 ft/sec and max_speed_decreasing_steering = 20 ft/sec means you only get the full 90 degree range at very low speeds and it is quickly reduced to 18 degrees by min_available_steering_angle_pct = 0.2 when you are above 20 ft/sec.
This does simulate full castering to an extent. You can still turn on the spot if you brake on one side only and once you start going faster it doesn't become an uncontrollable mess.
But it's not really castering is it?
And it also doesn't work for the aircraft I am working on. Like many vintage military aircraft the Winjeel has a free castering tail wheel which can be locked into a steerable tail wheel.
Here is an explanation of how the steering mechanism works on a T6:
T6 TAIL WHEEL LOCK OPERATION
Tail wheel lock T6 Harvard same as P-51 Mustang. T6 Harvard Taxi proceedure T6 Harvard Taxi Techniques, T6 Harvard Maintenance T6 Harvard Service
The problem with the MSFS fake castering is when you apply the tail wheel lock it locks it into straight ahead position only. It no longer becomes steerable.
Now, you can make MSFS free caster by changing the steer angle of point.0 from 90 to 180. Just like you did in the FSX. You can't do this in the aircraft editor within MSFS apparently. From what I read you are limited to 90 degrees in the editor but you can change it to 180 manually (I never use the editors in game and do everything manually).
But this gives a new problem. The free castering in MSFS is makes the aircraft almost uncontrollable. Line a shopping trolley with all 4 wheels broken. For some reason whenever you stop the tail wheel gets an uncontrollable urge to move out to 90 degrees and when you start again you usually end up spinning. It requires massive amounts of differential braking and rudder movements to get it going straight again at which point it swings the other way. I imagine this is the reason Asobo use fake castering because it's uncontrollable without it.
But it does mean the tail wheel lock becomes steerable (controlled by the max_speed_full_steering, max_speed_decreasing_steering and min_available_steering_angle_pct parameters).
After many hours tinkering with the parameters I think I have come up with some settings that tames the worst of the castering tail wheel problems.
Here is what I have come up with so far:
Note the following:
1. point.0 set to 180 steering angle to activate free castering
2. The four castering parameters now become available (they do nothing if steering angle is set to 90 because that is fake castering).
3. max_speed_full_steering_castering is set to zero. If you increase this number then the aircraft will be uncontrollable until the speed exceeds the number.
4. max_speed_decreasing_steering_castering is set to 100 ft/sec. Above this speed the tail wheel will act like a steerable tail wheel. You may like to reduce this.
5. min_castering_angle is set to zero (otherwise your tail wheel will also steer one way or the other)
6. max_castering_angle = 0.018. This is the magic number. 0.018 radians is just above 1 degree. Below this and the tail wheel will act like a steerable tail wheel. Above this and it starts to become increasingly uncontrollable.
Code:
gear_locked_on_ground = 0 ; Defines whether or not the landing gear handle is locked to down when the plane is on the ground.
gear_locked_above_speed = -1 ; Defines the speed at which the landing gear handle becomes locked in the up position. (-1 = Disabled)
locked_tailwheel_max_range = 0.3 ; radians
allow_stopped_steering = 1;
max_speed_full_steering = 20 ; Defines the speed under which the full angle of steering is available (in feet/second).
max_speed_decreasing_steering = 70 ; Defines the speed above which the angle of steering stops decreasing (in feet/second).
min_available_steering_angle_pct = 0.5 ; Defines the percentage of steering which will always be available even above max_speed_decreasing_steering (in percent over 100).
max_speed_full_steering_castering = 0 ; Defines the speed under which the full angle of steering is available for free castering wheels (in feet/second).
max_speed_decreasing_steering_castering = 100 ; Defines the speed above which the angle of steering stops decreasing for free castering wheels (in feet/second).
min_castering_angle = 0 ; Defines the minimum angle a free castering wheel can take (in radians).
max_castering_angle = 0.018 ; Defines the maximum angle a free castering wheel can take (in radians).
point.0= 1,-18.61, 0.00, -1.60, 1400, 0, 0.406, 180.0, 0.15, 2.5, 0.80, 0.0, 0.0, 0 ,200 ,200, 1
point.1= 1, 1.53, -5.00, -5.55, 2000, 1, 0.785, 0.0, 0.35, 2.5, 0.70, 0.0, 0.0, 2 ,200 ,200, 1
point.2= 1, 1.53, 5.00, -5.55, 2000, 2, 0.785, 0.0, 0.35, 2.5, 0.70, 0.0, 0.0, 3 ,200 ,200, 1
This still isn't perfect but it is the best that I can get MSFS to be if I want to simulate a castering tail wheel with steerable tail wheel lock. It's still easy to make the aircraft uncontrollable with castering active. I find a squirt of power to get the plane moving and then dropping the power back gets the airplane rolling with the minimum of random steering. Once the plane is rolling it steers quite well (a little too well perhaps but I'll take that over having to fight the plane to get going in a straight line).
The other issue is turning. Engaging the brake on one side and trying to turn the plane will rotate the tail wheel 90 degrees but as the rate of turn increases the tail wheel steering angle will reduce. Again, not perfect but it's such an outlier of a situation that I can live with it.
If you are making an aircraft with a free castering tail wheel you'd probably be better off using the MSFS fake castering method. It works well enough and does produce any control issues.
Likewise, if you are modeling a vintage aircraft with a steerable locking tail wheel you may choose to use the fake castering method or simply make the tail wheel fully steerable.
The only reason I have spent time on this is because I wanted the fully castering tail wheel with steerable locking.


