Vom Fachmann für dein Motorrad
Zahnriemen Ducati Monster 1100 / 1100 EVO
Dayco Zahnriemen 72×18 – 941073 passend für folgende Ducati Motorräder:
Ducati Monster
- Ducati Monster 1100
- Ducati Monster 1100S
- Ducati 1100 EVO
- Ducati 1100s EVO
- Ducati Monster 1000
Ducati Scrambler
- Ducati Scrambler 1100
Ducati Multistrada
- Ducati Hypermotard 1100
- Ducati Hypermotard 1100 S
- Ducati Hypermotard S2R
- Ducati Hypermotard 1000
- Ducati Multistrada 1000
- Ducati Multistrada 1100
Ducati ST-Reihe
- Ducati ST3 SportTouring
Weitere Ducati Modelle
- Ducati GT 1000
- Ducati SC 1000 SportClassic
27,90€
Vorrätig
Dayco Zahnriemen 72×18 – 941073 für Ducati: Ducati Monster 1100/1100 Evo, Ducati Scrambler, Ducati Multistrada, Ducati ST3, Ducati GT 1000 u.v.m.
Produktbeschreibung:
Der Zahnriemen von Dayco, mit 72 Zähnen und einer Riemenbreite von 18mm, ist mit verschiedenen Ducati Modellen kompatibel. Er besteht aus einer Gewebe- / Gummimatte, welche mit einem spezifischen Zahnprofil aufgezogen wird.
Verschiede Schichten Gummimaterial werden zusammen mit dem Zugstrang vulkanisiert, um den Zahnriemen stabiler und widerstandsfähiger zu machen. Der Zugstrang (aus Glasfaser) überträgt die Hauptzuglast und gibt dem Zahnriemen zusätzliche Stabilität. Der Zahnriemen wird mit einem verstärkten Zugstrang für höhere Wechselintervalle ausgeliefert.
Auf der Innenseite des Zahnriemens ist eine weiße Teflon-Beschichtung aufgetragen, wodurch die Reibung der Zahnflanken minimiert wird. Dadurch sind das PTFE-Gewebe, sowie die Flanken des Zahnriemens besonders abriebfest und weisen nur einen geringen Verschleiß auf.
Es werden immer zwei Zahnriemen benötigt!
Technische Details:
- Hersteller: Dayco
- Kategorie: Zahnriemen
- Artikelnummer: 941073
- Typ: 72×18
- Anzahl Zähne: 72
- Riemenbreite: 18mm
- Alternative Bezeichnung: Ventiltriebriemen; Steuerriemen
- Anzahl: 1
- Empfohlene Menge: 2
- Wechselintervall: 2 Jahre / 12 tkm
- Referenznummer: 73740211A
- EAN: 8021787054682
Hersteller Information:
Dayco ist ein amerikanischer Hersteller für Zahnriemen, sowie anderen Motorkomponenten für Kfz. Antriebssysteme. Das Unternehmen ist führend im Erstausrüstermarkt (OEM), in den Bereichen Forschung, Konzeptionen und Herstellung von Motorkomponenten für Pkw, LKW und Motorräder bzw. zweirädrige Fahrzeuge.
Langjährige Erfahrung von mehr als 115 Jahren ermöglicht Dayco Kunden weltweit mit den effektivsten Antriebssystemen und Motorkomponenten auszustatten. Dayco steht für Innovation, Umweltbewusstsein, Fairness am Arbeitsplatz, sowie für maximale Qualitätssicherung.
Weitere Produkte von Dayco finden Sie in unserem Online-Shop.
Kurzbeschreibung:
Zahnriemen von Dayco, 72×18, PTFE-Gewebe mit spezifischem Zahnprofil, verstärkter Zugstrang aus Glasfaser, weiße Teflon-Beschichtung auf Innenseite
>>ähnliche Produkte<<
Dayco Zahnriemen 72×18 – 941073 passend für folgende Ducati Motorräder:
Ducati Monster
- Ducati Monster 1100
- Ducati Monster 1100S
- Ducati 1100 EVO
- Ducati 1100s EVO
- Ducati Monster 1000
Ducati Scrambler
- Ducati Scrambler 1100
Ducati Multistrada
- Ducati Hypermotard 1100
- Ducati Hypermotard 1100 S
- Ducati Hypermotard S2R
- Ducati Hypermotard 1000
- Ducati Multistrada 1000
- Ducati Multistrada 1100
Ducati ST-Reihe
- Ducati ST3 SportTouring
Weitere Ducati Modelle
- Ducati GT 1000
- Ducati SC 1000 SportClassic
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Original Zahnriemensatz Ducati Monster SS 600 620 695 750 800
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 Monster (400 ccm,…
119,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
Zahnriemenset mit Spannrollen für Ducati Monster 696 796 Scrambler 800 Hypermotard 796 #1
DUC Ducati 400 Scrambler Hashtag (400 ccm, 2018 - 2018) DUC Ducati 400 Scrambler Sixty2…
289,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
2x Zahnriemen Dayco für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800 #1
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620…
289,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?>
<?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>
2x Zahnriemen Dayco für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800 #1
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620…
64,90€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

Original Zahnriemensatz Ducati Monster SS 600 620 695 750 800
DUC Ducati 400 Monster (400 ccm, 1994 - 1997) DUC Ducati 400 Monster (400 ccm,...
119,00€

Zahnriemenset mit Spannrollen für Ducati Monster 696 796 Scrambler 800 Hypermotard 796 #1
DUC Ducati 400 Scrambler Hashtag (400 ccm, 2018 - 2018) DUC Ducati 400 Scrambler Sixty2...
289,00€

2x Zahnriemen Dayco für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800 #1
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620...
289,00€

2x Zahnriemen Dayco für Ducati Monster 600 620 695 750 800 S2R 800 SS i.e. 620 750 800 #1
Monster 600 (ab 1998) 750 (ab 1998) 620 695 800 S2R 800 Ducati SS i.e. 620...
64,90€
Bewertungen
Es gibt noch keine Bewertungen.