MV Agusta F4 1000 S - 2008 Specifications and Reviews
The 2008 MV Agusta F4 1000 S is a premium Italian superbike designed for experienced riders seeking exotic styling and raw performance. Its 166 hp inline-four engine delivers aggressive acceleration and sharp handling, making it best known for combining race-track capability with distinctive Italian craftsmanship and aggressive aesthetics.
|
| Category | Sport |
| Year | 2008 |
| Model | MV Agusta F4 1000 S |
Engine and Transmission Specifications |
| Clutch | Multiplate in oil bath |
| Transmission typefinal drive | Chain |
| Gearbox | 6-speed |
| Cooling system | Liquid |
| Fuel control | DOHC |
| Valves per cylinder | 4 |
| Fuel system | Injection |
| Bore x stroke | 76.0 x 55.0 mm (3.0 x 2.2 inches) |
| Compression | 13.0:1 |
| Max RPM | 13000 |
| Torque | 109.00 |
| Power | 166.00 |
| Stroke | 4 |
| Engine type | In-line four |
| Capacity: | 998.00 ccm (60.90 cubic inches) |
|
|
Physical measures and capacities |
| Wheelbase | 1,408 mm (55.4 inches) |
| Overall width | 685 mm (27.0 inches) |
| Overall length | 2,007 mm (79.0 inches) |
| Dry weight | 190.0 kg (418.8 pounds) |
MV Agusta F4 1000 S dimensions and frame |
| Rear brakes diameter | 210 mm (8.3 inches) |
| Rear brakes | Single disc |
| Front brakes diameter | 320 mm (12.6 inches) |
| Front brakes | Double disc |
| Rear tyre dimensions | 190/50-ZR17 |
| Front tyre dimensions | 120/70-ZR17 |
| Rear suspension | Progressive, single shock absorber with rebound compression damping and spring preload |
| Front suspension | Upside-down telescopic hydraulic fork with rebound-compression damping and spring preload adjustment |
| Frame type | CrMo Steel tubular trellis and aluminium alloy |
Speed and acceleration |
| Power/weight ratio | 0.8739 HP/kg |
| Top speed | 300.9 km/h (187.0 mph) |
Other specs |
| Maintenance | Find parts, fluids, filters, maintenance tools and service items on eBay. |
| Color options | Blue/gray |
| Fuel capacity | 17.41 litres (4.60 gallons) |
Related Motorcycle Specifications
include("sidebar.php");
echo "
";
// Schema.org structured data
if (!empty($car_name)) {
$rstmt = $con->prepare("SELECT AVG(VOTE) AS avg_v, COUNT(*) AS cnt FROM car_voting WHERE car_id=?");
$rstmt->bind_param("i", $car_id);
$rstmt->execute();
$rstmt->bind_result($avg_v, $cnt);
$rstmt->fetch();
$rstmt->close();
$schema = [
'@context' => 'https://schema.org',
'@type' => 'Product',
'name' => $car_year . ' ' . $car_name,
'description' => $details,
'image' => $thumburl,
'url' => $page,
'brand' => ['@type' => 'Brand', 'name' => $company_name],
];
if ($cnt > 0) {
$schema['aggregateRating'] = [
'@type' => 'AggregateRating',
'ratingValue' => number_format((float)$avg_v, 1),
'bestRating' => '5',
'ratingCount' => (int)$cnt,
];
}
echo '' . "\n";
// FAQ schema — pull key specs and turn them into Q&A pairs
$faq_map = [
'Power' => 'What is the engine power of the %s %s?',
'Torque' => 'What is the torque of the %s %s?',
'Capacity:' => 'What is the engine size of the %s %s?',
'Displacement' => 'What is the engine displacement of the %s %s?',
'Top speed' => 'What is the top speed of the %s %s?',
'Fuel consumption' => 'What is the fuel consumption of the %s %s?',
'Dry weight' => 'How much does the %s %s weigh?',
'Weight incl. oil, gas, etc' => 'How much does the %s %s weigh?',
'Seat height' => 'What is the seat height of the %s %s?',
'Gearbox' => 'How many gears does the %s %s have?',
'Engine type' => 'What type of engine does the %s %s have?',
'Cooling system' => 'Is the %s %s air cooled or liquid cooled?',
'Category' => 'What category is the %s %s?',
];
$fstmt = $con->prepare("SELECT NAME, VALUE FROM car_details WHERE CAR_ID = ? AND VALUE != '' AND VALUE != '0'");
$fstmt->bind_param("i", $car_id);
$fstmt->execute();
$fres = $fstmt->get_result();
$faq_items = [];
$faq_used = [];
while ($frow = $fres->fetch_assoc()) {
$spec_name = trim($frow['NAME']);
if (isset($faq_map[$spec_name]) && !in_array($spec_name, $faq_used)) {
$q = sprintf($faq_map[$spec_name], $car_year, $car_name);
$a = 'The ' . $car_year . ' ' . $car_name . ' has a ' . $spec_name . ' of ' . $frow['VALUE'] . '.';
$faq_items[] = ['@type' => 'Question', 'name' => $q, 'acceptedAnswer' => ['@type' => 'Answer', 'text' => $a]];
$faq_used[] = $spec_name;
}
}
$fstmt->close();
if (!empty($faq_items)) {
$faq_schema = ['@context' => 'https://schema.org', '@type' => 'FAQPage', 'mainEntity' => $faq_items];
echo '' . "\n";
}
// BreadcrumbList
$breadcrumb = [
'@context' => 'https://schema.org',
'@type' => 'BreadcrumbList',
'itemListElement' => [
['@type'=>'ListItem','position'=>1,'name'=>'Home','item'=>'https://www.motorcycledb.com/'],
['@type'=>'ListItem','position'=>2,'name'=>$company_name,'item'=>'https://www.motorcycledb.com/Motorcycle_Manufacturer/'.rawurlencode($company_name).'/'.$company_id],
['@type'=>'ListItem','position'=>3,'name'=>$car_year.' '.$car_name,'item'=>$page],
],
];
echo '' . "\n";
}
include("footer.php");
?>
Please Login or Register if you would like to leave a comment.