X

2024 TYM Tractors T754 Power Shuttle Tractor with Cab and Loader

# T754Series 4, Compact Utility Tractor

With engineering that enhances efficiency and deluxe features that you expect of a TYM Series 4 tractor, the T754 enables all-around productivity, for your operations.
LOADER TX75SL: TX75U00712

# Engine

Engine manufacturer: Deutz TCD2.9L4
Type: Turbo
Gross engine power: 74 hp | 55.4 kW
PTO power: 64.1 hp | 47.8 kW
Rated engine speed: 2200 rpm
No. of cylinders: 4
Displacement: 177 cu. in.
Air cleaner: Dual Dry
Alternator: 12V, 95A
Fuel system: CRDI

# Powertrain

Transmission type: Power Shuttle
No. of speeds: F16xR16 (creep interlock)
Max. traveling speed: 24.1 mph
Brakes: Wet Disc
Steering: Hydrostatic
Clutch: Dry Single Plate _ M, Wet Multi Plate _ PS
hydraulic system
Pump type: Dual Gear Pump
Implement flow: 10.3 gpm
Steering flow: 5.8 gpm
Total flow: 16.1 gpm
Category, 3-point hitch: II
Hitch lift capacity: 5154 lb
Hitch lift capacity at 24 inches behind link ends: 3481 lb
Lift control type: Position/Draft/Mech
No. of standard remote valves: 2

# PTO

PTO type: Independent
PTO control: Electric/Hydro
PTO rear 540/750, 540/1000 (Opt) rpm

# Capacities

Fuel tank: 23.8 gal
Coolant: 10.6 qt
Crankcase: 8.5 qt
Transmission/Hydraulics system: 18 qt
Front axle: 4.3 gal
dimensions & weights
Overall length with 3-point hitch: 157.5 in.
Overall width: 76.4 in.
Wheelbase: 86.1 in.
Height to top of ROPS: 103.3 in.
Min. ground clearance: 18.3 in.
Min. turn radius with brakes: 145.7 in.
Min. turn radius without brakes: 162.8 in.
Weight with cab: 6316 lb

# Tires

# R4 Industrial - Front: Trac Chief 15-19.5 NHS TL 6PR. R4 Industrial

Rear: Xtra Grip 18.4-24 NHS TL 8PR
2024 TYM Tractors T754 Power Shuttle Tractor with Cab and Loader
Price: $53,800 On Sale! $44,999
Red - Tractor
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: R75SC00148
VIN: R75SC00148
Condition: New
Year: 2024
Manufacturer: TYM Tractors
Model: T754 Power Shuttle
Length:
Width: 72"
Height: 96"
GVWR (lbs): 0
Weight (lbs): 0
Payload (lbs): 0
Features:

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });