class reakce extends objekt { function reakce(&$smarty) { parent :: objekt($smarty); $this->table = "reakce"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "id"; $this->order = "ORDER BY reakce.idreakce,reakce.uroven,reakce.id"; $this->tepmlate_prefix = "reakce"; } function get($id, $field = NULL) { $dt = parent::get($id, $field); $dt['sirka'] = 20 * ($dt['uroven'] - 1); $dt['urovenP'] = ($dt['uroven'] + 1); return $dt; } function new_id($old, $add) { $add = "$add" . "_"; while (strlen("$add") < 7) { $add = "0" . "$add"; } return "$old" . "$add"; } function insert_post($POST) { $id = parent::insert_post($POST); $query_upd = "UPDATE reakce SET idreakce='" . $this->new_id($POST['row_idreakce'], $id) . "' WHERE id='$id'"; query($query_upd); return $id; } } ?> class reakcen extends objekt { function reakcen(&$smarty) { parent :: objekt($smarty); $this->table = "reakcen"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "id"; $this->order = "ORDER BY reakcen.idreakce,reakcen.uroven,reakcen.id"; $this->tepmlate_prefix = "reakcen"; } function get($id, $field = NULL) { $dt = parent::get($id, $field); $dt['sirka'] = 20 * ($dt['uroven'] - 1); $dt['urovenP'] = ($dt['uroven'] + 1); return $dt; } function new_id($old, $add) { $add = "$add" . "_"; while (strlen("$add") < 7) { $add = "0" . "$add"; } return "$old" . "$add"; } function insert_post($POST) { $id = parent::insert_post($POST); $query_upd = "UPDATE reakcen SET idreakce='" . $this->new_id($POST['row_idreakce'], $id) . "' WHERE id='$id'"; query($query_upd); return $id; } } ?> class countries extends objekt { var $lang; function countries(&$smarty, $lang) { parent :: objekt($smarty); $this->table = "countries"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "IDCntr"; $this->order = "ORDER BY IDCntr<>55, Name_$lang DESC"; $this->tepmlate_prefix = "countries"; $this->lang = $lang; } function get($id, $field = NULL) { $dt = parent::get($id, $field); $dt['nazev'] = $dt["Name_$this->lang"]; return $dt; } } ?> class objednavky extends objekt { var $IDC; function objednavky(&$smarty,$IDC) { parent :: objekt($smarty); $this->table = "objednavky"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "IDO"; $this->order = "ORDER BY Objednano DESC, IDO DESC"; $this->tepmlate_prefix = "objednavky"; $this->IDC=$IDC; $this->where = " WHERE IDC='$this->IDC' "; } } ?> class admins extends objekt { function admins(& $smarty) { parent :: objekt($smarty); $this->table = "admins"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "id"; $this->tepmlate_prefix = "admins"; } function get($id, $field = NULL) { $dt = parent::get($id, $field); $dt['admin_menu'] = array(); $res = query("SELECT admin_menu.*,admin2menu.AMID FROM admin_menu LEFT JOIN admin2menu ON admin_menu.MID=admin2menu.MID AND admin2menu.id='$id' order by admin_menu.radek, admin_menu.poradi,admin_menu.MID"); while ($row = mysqli_fetch_assoc($res)) { $dt['admin_menu'][] = $row; } return $dt; } function save_prava($POST, $id) { //echo "pracuji: "; query("DELETE FROM admin2menu WHERE id='$id'"); /* foreach ($POST as $key => $value) { echo $key." ".$value.""; } */ reset($POST); while (list($k, $v) = each($POST)) { if (strstr($k, "oprav_")) { $mid = substr($k, 6, 3); //echo $k." "; query("INSERT INTO admin2menu SET MID='$mid', id='$id'"); } } } function save_post($POST) { parent::save_post($POST); $this->save_prava($POST, $POST['row_id']); } function set_vazby() { $menu = new admin_menu($this->smarty, -1); $this->smarty->assign("admin_menu", $menu->getall()); } function insert_post($POST) { $id = parent::insert_post($POST); $this->save_prava($POST, $id); return $id; } function process_post($POST) { if ((strlen($POST['heslo1']) > 1)) $POST['row_passwd'] = md5($POST['heslo1']); $dt = parent::process_post($POST); return $dt; } } ?> class poh_admins extends objekt { function poh_admins(& $smarty) { parent :: objekt($smarty); $this->table = "poh_admins"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "id"; $this->tepmlate_prefix = "poh_admins"; } function get($id, $field = NULL) { $dt = parent::get($id, $field); $dt['admin_menu'] = array(); $res = query("SELECT poh_admin_menu.*,poh_admin2menu.AMID FROM poh_admin_menu LEFT JOIN poh_admin2menu ON poh_admin_menu.MID=poh_admin2menu.MID AND poh_admin2menu.id='$id' order by poh_admin_menu.radek, poh_admin_menu.poradi,poh_admin_menu.MID"); while ($row = mysqli_fetch_assoc($res)) { $dt['admin_menu'][] = $row; } return $dt; } function save_prava($POST, $id) { query("DELETE FROM poh_admin2menu WHERE id='$id'"); reset($POST); while (list($k, $v) = each($POST)) { if (strstr($k, "oprav_")) { $mid = substr($k, 6, 3); query("INSERT INTO poh_admin2menu SET MID='$mid', id='$id'"); } } } function save_post($POST) { parent::save_post($POST); $this->save_prava($POST, $POST['row_id']); } function set_vazby() { $menu = new poh_admin_menu($this->smarty, -1); $this->smarty->assign("admin_menu", $menu->getall()); } function insert_post($POST) { $id = parent::insert_post($POST); $this->save_prava($POST, $id); return $id; } function process_post($POST) { if ((strlen($POST['heslo1']) > 1)) $POST['row_passwd'] = md5($POST['heslo1']); $dt = parent::process_post($POST); return $dt; } } ?> class admin_menu extends objekt { var $user; function admin_menu(&$smarty, $user) { parent :: objekt($smarty); $this->user = $user; $this->table = "admin_menu"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "MID"; $this->join = " JOIN admin2menu ON admin2menu.MID=admin_menu.MID "; $this->order = "ORDER BY radek, poradi,MID"; $this->tepmlate_prefix = "admin_menu"; if ($user != -1) $this->where = "WHERE admin2menu.id='$user'"; } function get($id, $field = '') { $dt = parent::get($id, $field); $id = $dt['MID']; $res = query("SELECT * FROM admin2menu WHERE MID='$id' AND id='$this->user'"); if ($row = mysqli_fetch_assoc($res)) $dt['allowed'] = true; return $dt; } } ?> class poh_admin_menu extends objekt { var $user; function poh_admin_menu(&$smarty,$user) { parent :: objekt($smarty); $this->user=$user; $this->table = "poh_admin_menu"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "MID"; $this->join=" JOIN poh_admin2menu ON poh_admin2menu.MID=poh_admin_menu.MID "; $this->order = "ORDER BY radek, poradi,MID"; $this->tepmlate_prefix = "admin_menu"; if ($user!=-1) $this->where="WHERE poh_admin2menu.id='$user'"; } function get($id,$field='') { $dt=parent::get($id,$field); $id=$dt['MID']; $res=query("SELECT * FROM poh_admin2menu WHERE MID='$id' AND id='$this->user'"); if ($row=mysqli_fetch_assoc($res)) $dt['allowed']=true; return $dt; } } ?> class poh_pohledavky extends objekt { function poh_pohledavky(& $smarty) { parent :: objekt($smarty); $this->table = "poh_pohledavky"; $this->filtr = true; $this->insert = true; $this->delete = true; $this->edit = true; $this->dataid = "IDPO"; $this->join = " LEFT JOIN poh_admins ON poh_admins.id=poh_pohledavky.ida "; $this->fields = " ,poh_admins.login as predat,poh_admins.email as email "; $this->tepmlate_prefix = "poh_pohledavky"; } function save_post($POST) { global $_COOKIE; $old = serialize($this->get($POST["row_" . $this->dataid])); parent :: save_post($POST); $new = serialize($this->get($POST["row_" . $this->dataid])); if ($old != $new) { $user = mysqli_result(query("SELECT login FROM poh_admins WHERE id=" . $_COOKIE['auth_validuser']), 0); query("UPDATE poh_pohledavky SET zmeneno=now(),zmenil='$user' WHERE $this->dataid='" . $POST["row_" . $this->dataid] . "' LIMIT 1"); $new = $this->get($POST["row_" . $this->dataid]); $old = unserialize($old); $this->smarty->assign("old", $old); $this->smarty->assign("new", $new); if ($new['ida'] != $old['ida']) mail_attach($new['email'], $old['email'], "Předání pohledávky " . $new['protistrana'], $this->smarty->fetch("../modules/poh_pohledavky/poh_pohledavky.email.tpl")); } } function insert_post($POST) { global $_COOKIE, $db; $id = parent :: insert_post($POST); mysqli_query($db, "update poh_files set poh = $id where poh = 0"); $user = mysqli_result(query("SELECT login FROM poh_admins WHERE id=" . $_COOKIE['auth_validuser']), 0); $from = mysqli_result(query("SELECT email FROM poh_admins WHERE id=" . $_COOKIE['auth_validuser']), 0); query("UPDATE poh_pohledavky SET zmeneno=now(),zmenil='$user' WHERE $this->dataid='$id' LIMIT 1"); $new = $this->get($id); $this->smarty->assign("new", $new); if ($new['predat'] != $new['zmenil']) mail_attach($new['email'], $from, "Předání pohledávky " . $new['protistrana'], $this->smarty->fetch("../modules/poh_pohledavky/poh_pohledavky.email.tpl")); return $id; } function set_vazby() { $admins = new poh_admins($this->smarty); $this->smarty->assign("admins", $admins->getall()); } } ?> class changes { var $table; var $dataid; var $order; function changes() { $this->table = "zmeny"; $this->dataid = "id"; $this->order = "ORDER BY cas"; //$this->tepmlate_prefix = "customers"; } function insert($table, $columnId, $columnIdValue) { global $db; mysqli_query($db, "INSERT INTO $this->table (cas,tabulka,typupravy,sloupecId,hodnotaId,uzivatel) VALUES ( '" . date("Y-m-d H:i:s") . "','$table','INSERT','$columnId','$columnIdValue','shop' )"); } function delete($table, $columnId, $columnIdValue) { global $db; mysqli_query($db, "INSERT INTO $this->table (cas,tabulka,typupravy,sloupecId,hodnotaId,uzivatel) VALUES ( '" . date("Y-m-d H:i:s") . "','$table','DELETE','$columnId','$columnIdValue','shop' )"); } function updateColumn($table, $columnId, $columnIdValue, $data) { global $db; $res = mysqli_query($db, "SELECT * FROM $table WHERE $columnId='$columnIdValue' LIMIT 1"); $oldData = mysqli_fetch_array($res); foreach ($data as $key => $value) { if (substr($key, 0, 4) == "row_") { if (substr($key, 4) == $columnId) { if ($value != $oldData[substr($key, 4)]) { mysqli_query($db, "INSERT INTO $this->table (cas,tabulka,typupravy,sloupecId,hodnotaId,data1,uzivatel) VALUES ( '" . date("Y-m-d H:i:s") . "','$table','IDCHANGE','" . substr($key, 4) . "','" . $oldData[substr($key, 4)] . "','$value','shop' )"); } } else { if ($value != $oldData[substr($key, 4)]) { mysqli_query($db, "INSERT INTO $this->table (cas,tabulka,typupravy,sloupecId,hodnotaId,data1,data2,data3,uzivatel) VALUES ( '" . date("Y-m-d H:i:s") . "','$table','UPDATECOLUMN','$columnId','$columnIdValue','" . substr($key, 4) . "','" . $oldData[substr($key, 4)] . "','$value','shop' )"); } } } } } } ?> /** * transparentWatermark class * Put watermark in image with transparent and randomize effect * * Last change: 2004-04-16 * * author Lionel Micault * version 1.01 * * constructor transparentWatermark( $stampFile="") * public function markImageFile ( $imageFile, $resultImageFile="") * public function markImage ( $imageResource) * public function setStampPosition ( $Xposition, $Yposition) * public function setStamp( $stampFile) * public function getLastErrror() */ error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE & ~E_STRICT & ~E_WARNING); ini_set("display_errors", 1); // position constants define ("transparentWatermarkOnTop", -1); define ("transparentWatermarkOnMiddle", 0); define ("transparentWatermarkOnBottom", 1); define ("transparentWatermarkOnLeft", -1); define ("transparentWatermarkOnCenter", 0); define ("transparentWatermarkOnRight", 1); // randomize level constants define ("transparentWatermarkRandPixelLightLevel", 7); define ("transparentWatermarkRandPixelPositionLevel", 2); class transparentWatermark { var $stampImage=0; var $stampWidth; var $margin=5; var $alpha=140; var $stampHeight; var $stampPositionX= transparentWatermarkOnRight; var $stampPositionY= transparentWatermarkOnBottom; var $errorMsg=""; /** * Constructor * * @param string $stampFile filename of stamp image * @return boolean * @access public * @uses setStamp() */ function transparentWatermark( $stampFile="",$alpha=140) { $this->alpha=$alpha; return( $this->setStamp( $stampFile)); } /** * mark an image file and display/save it * * @param int $imageFile image file (JPEG or PNG format) * @param int $resultImageFile new image file (same format) * @return boolean * @access public * @uses readImage() * @uses markImage() * @uses writeImage() * @uses readImage() * @uses errorMsg */ function markImageFile ( $imageFile, $resultImageFile="") { if (!$this->stampImage) { $this->errorMsg="Stamp image is not set."; return(false); } $imageinfos = @getimagesize($imageFile); $type = $imageinfos[2]; $image=$this->readImage($imageFile, $type); if (!$image) { $this->errorMsg="Error on loading '$imageFile', image must be a valid PNG or JPEG file."; return(false); } $this->markImage ( $image); if ($resultImageFile!="") { $this->writeImage( $image, $resultImageFile, $type); } else { $this->displayImage( $image, $type); } return( true); } /** * mark an image * * @param int $imageResource resource of image * @return boolean * @access public * @uses stampWidth * @uses stampHeight * @uses stampImage * @uses stampPositionX * @uses stampPositionY */ function markImage ( &$imageResource) { if (!$this->stampImage) { $this->errorMsg="Stamp image is not set."; return(false); } $imageWidth = imagesx( $imageResource); $imageHeight = imagesy( $imageResource); //set position of logo switch ($this->stampPositionX) { case transparentWatermarkOnLeft: $leftStamp=$this->margin; break; case transparentWatermarkOnCenter: $leftStamp=($imageWidth - $this->stampWidth)/2; break; case transparentWatermarkOnRight: $leftStamp=$imageWidth - $this->stampWidth-$this->margin; break; default : $leftStamp=$this->margin; } switch ($this->stampPositionY) { case transparentWatermarkOnTop: $topStamp=$this->margin; break; case transparentWatermarkOnMiddle: $topStamp=($imageHeight - $this->stampHeight)/2; break; case transparentWatermarkOnBottom: $topStamp=$imageHeight - $this->stampHeight-$this->margin; break; default: $topStamp=$this->margin; } // randomize position $leftStamp+=rand(-transparentWatermarkRandPixelPositionLevel, +transparentWatermarkRandPixelPositionLevel); $topStamp+=rand(-transparentWatermarkRandPixelPositionLevel, +transparentWatermarkRandPixelPositionLevel); // for each pixel of stamp for ($x=0; $x<$this->stampWidth; $x++) { if (($x+$leftStamp<0)||($x+$leftStamp>=$imageWidth)) continue; for ($y=0; $y<$this->stampHeight; $y++) { if (($y+$topStamp<0)||($y+$topStamp>=$imageHeight)) continue; // search RGB values of stamp image pixel $indexStamp=ImageColorAt($this->stampImage, $x, $y); $rgbStamp=imagecolorsforindex ( $this->stampImage, $indexStamp); // search RGB values of image pixel $indexImage=ImageColorAt( $imageResource, $x+$leftStamp, $y+$topStamp); $rgbImage=imagecolorsforindex ( $imageResource, $indexImage); if ($rgbStamp[alpha]==0) { //Alpha-Blending $r=($rgbImage["red"]*$this->alpha+$rgbStamp["red"]*(256-$this->alpha))/256; $g=($rgbImage["green"]*$this->alpha+$rgbStamp["green"]*(256-$this->alpha))/256; $b=($rgbImage["blue"]*$this->alpha+$rgbStamp["blue"]*(256-$this->alpha))/256; /* Additive-Blending // randomize light shift $stampAverage=($rgbStamp["red"]+$rgbStamp["green"]+$rgbStamp["blue"])/3; if ($stampAverage>10) $randomizer=rand(-transparentWatermarkRandPixelLightLevel, +transparentWatermarkRandPixelLightLevel); else $randomizer=0; // compute new values of colors pixel $r=max( min($rgbImage["red"]+$rgbStamp["red"]+$randomizer-0x80, 0xFF), 0x00); $g=max( min($rgbImage["green"]+$rgbStamp["green"]+$randomizer-0x80, 0xFF), 0x00); $b=max( min($rgbImage["blue"]+$rgbStamp["blue"]+$randomizer-0x80, 0xFF), 0x00); */ // change image pixel imagesetpixel ( $imageResource, $x+$leftStamp, $y+$topStamp, ($r<<16)+($g<<8)+$b); } } } return( true); } /** * set stamp position on image * * @param int $Xposition x position * @param int $Yposition y position * @return void * @access public * $this->stampPositionX * $this->stampPositionY * @uses errorMsg */ function setStampPosition ( $Xposition, $Yposition) { // set X position switch ($Xposition) { case transparentWatermarkOnLeft: case transparentWatermarkOnCenter: case transparentWatermarkOnRight: $this->stampPositionX=$Xposition; break; } // set Y position switch ($Yposition) { case transparentWatermarkOnTop: case transparentWatermarkOnMiddle: case transparentWatermarkOnBottom: $this->stampPositionY=$Yposition; break; } } /** * set stamp image for watermak * * @param string $stampFile image file (JPEG or PNG) * @return boolean * @access public * @uses readImage() * @uses stampImage * @uses stampWidth * @uses stampHeight * @uses errorMsg */ function setStamp( $stampFile) { $imageinfos = @getimagesize($stampFile); $width = $imageinfos[0]; $height = $imageinfos[1]; $type = $imageinfos[2]; if ($this->stampImage) imagedestroy( $this->stampImage); $this->stampImage=$this->readImage($stampFile, $type); if (!$this->stampImage) { $this->errorMsg="Error on loading '$stampFile', stamp image must be a valid PNG or JPEG file."; return(false); } else { $this->stampWidth=$width; $this->stampHeight=$height; return(true); } } /** * retrieve last error message * * @return string * @access public * @uses errorMsg */ function getLastErrror() { return($this->errorMsg); } /** * read image from file * * @param string $file image file (JPEG or PNG) * @param int $type file type (2:JPEG or 3:PNG) * @return resource * @access protected * @uses errorMsg */ function readImage( $file, $type) { switch ($type) { case 1: //GIF return(ImageCreateFromGIF($file)); case 2: //JPEG return(ImageCreateFromJPEG($file)); case 3: //PNG return(ImageCreateFromPNG($file)); default: $this->errorMsg="File format not supported."; return(false); } } /** * write image to file * * @param resource $image image * @param string $file image file (JPEG or PNG) * @param int $type file type (2:JPEG or 3:PNG) * @return void * @access protected * @uses errorMsg */ function writeImage( $image, $file, $type) { switch ($type) { case 2: //JPEG Imagejpeg( $image, $file); break; case 3: //PNG Imagepng( $image, $file); break; default: $this->errorMsg="File format not supported."; } } /** * send image to stdout * * @param resource $image image * @param int $type image type (2:JPEG or 3:PNG) * @return void * @access protected * @uses errorMsg */ function displayImage( $image, $type) { switch ($type) { case 2: //JPEG header("Content-Type: image/jpeg"); Imagejpeg( $image); break; case 3: //PNG header("Content-Type: image/png"); Imagepng( $image); break; default: $this->errorMsg="File format not supported."; } } } ?> //function seo_down($sekce, $i) { // global $lang; // // if ($_GET['sekce' . $i] == '') // return ''; //// print_p($sekce, $i); //// die($sekce); // reset($sekce); // while (list ($k, $v) = each($sekce)) { //// print_p($v["Alt_$lang"], "0 => Alt_$lang"); //// print_p(strtolower(iso2_to_seo(stripslashes($v["Alt_$lang"]))), "1"); //// print_p(strtolower($_GET['sekce' . $i]), "2"); // if (strtolower(iso2_to_seo(stripslashes($v["Alt_$lang"]))) == strtolower($_GET['sekce' . $i])) { //// print_p($v["Alt_$lang"]); // if (count($v['subsections']) && ($sec = seo_down($v['subsections'], $i + 1))) { // return $sec; // } else { // return $v['id']; // } // } // } // return ""; //} // print_p($secs); //if ($sek = seo_down($secs, 1)) { // $sec = $sek; // $main = "shop"; //} $last = ""; //print_p($_GET); foreach ($_GET AS $key => $value) { if (strpos($key, "sekce") !== FALSE) { // print_p($key); $last = $value; } } //print_p($value, $value); if ($last) { $sec = dbSection::getBySeoName($last)->id; if ($sec) { $main = "shop"; } } ?> Mechanické prvky | Tlumiče chvění | GMcentrum s.r.o. Vyhledávání v obchodu [ rozšířené vyhledávání ] Baterie a akumulátory Napájecí zdroje Kabely a konektory Solární technika Redukce a konvertory Nářadí, nástroje Zesilovače GSM Bezpečnostní technika Mobilní příslušenství Příslušenství počítačů Elektronické součástky Elektroinstalační materiál Mining Chemie DPS Hračky, stavebnice Měřící přístroje Osvětlovací technika Domov, Kancelář Ochranné pomůcky Mechanické prvky Šrouby Lícované šrouby Vruty Matice Závitové vložky Podložky Nýty Příslušenství k lankům Ochranné, upevňovací součástky Distanční prvky kovové Distanční prvky plastové Kloubové hlavice Vodící lišty pro plošné spoje Otočné knoflíky Hydraulické komponenty Páky Zámky a západky Panty Záslepky a čepičky Polohovací nohy a kolečka Profily a držáky Tlumiče chvění Ložiska profily pro LED Technická těsnění Rychloupínače a uzávěry Magnety Nastavitelná kolečka Lineární vodicí systémy Automatizační technika Robotika Ostatní Výprodej O nás Obchodní podmínky O nás Prohlášení o zpracování osobních údajů Kontakty Bankovní účty Kontakty Servis Registrace Registrace Výhody registrace Zapomenuté heslo Jak nakupovat Reklamace Vrácení zboží a peněz Poštovné Základní informace Sledování zásilek Nákupní košík Přihlášení do obchodu Jméno Heslo [ registrovat ] Tlumiče chvění katalog seznam Seřadit podle názvu ceny indetifikátoru Skladem GSMCentrum.CZ » Mechanické prvky » Tlumiče chvění Typ montážní součástky --- spring vibration damper wire rope vibration damper tlumič chvění Materiál tělesa --- ocel nerezavějící ocel pryž Závit --- M8 M16 M3 M10 M4 M12 M6 Průměr --- 8mm 10mm 15mm 20mm 21mm 25mm 30mm 35mm 40mm 45mm 50mm 55mm 57mm 60mm 70mm 72mm 75mm 95mm 100mm Tvrdost podle Shorea --- 40±5 55±5 70±5 Statická únosnost --- 24N 27N 37N 38N 43N 49N 56N 60N 61N 69N 70N 73N 75N 77N 80N 81N 82N 89N 90N 94N 95N 98N 105N 109N 113N 121N 125N 126N 130N 132N 135N 142N 145N 147N 150N 152N 154N 155N 163N 166N 172N 175N 180N 186N 191N 193N 194N 196N 198N 200N 202N 204N 205N 207N 211N 217N 221N 223N 224N 226N 227N 230N 231N 236N 238N 240N 247N 260N 261N 264N 265N 266N 267N 268N 270N 272N 273N 277N 278N 281N 289N 300N 301N 302N 303N 310N 314N 315N 316N 319N 325N 326N 328N 340N 352N 355N 367N 374N 383N 390N 408N 420N 436N 455N 469N 475N 490N 498N 510N 521N 530N 534N 535N 539N 544N 556N 560N 562N 570N 575N 583N 593N 597N 602N 605N 610N 623N 631N 643N 650N 655N 671N 675N 682N 684N 687N 690N 694N 700N 705N 713N 738N 748N 757N 767N 770N 780N 785N 795N 816N 825N 840N 843N 850N 855N 863N 884N 902N 909N 911N 919N 930N 937N 952N 965N 966N 1007N 1010N 1027N 1038N 1055N 1066N 1073N 1087N 1088N 1095N 1096N 1120N 1123N 1178N 1214N 1222N 1235N 1247N 1250N 1255N 1272N 1281N 1283N 1300N 1310N 1321N 1328N 1332N 1342N 1378N 1380N 1397N 1430N 1469N 1488N 1496N 1499N 1500N 1510N 1523N 1527N 1530N 1535N 1540N 1554N 1564N 1600N 1620N 1621N 1630N 1635N 1673N 1680N 1690N 1700N 1765N 1782N 1818N 1820N 1823N 1830N 1873N 1897N 1974N 2005N 2050N 2080N 2085N 2097N 2114N 2130N 2133N 2141N 2188N 2191N 2198N 2200N 2219N 2225N 2246N 2265N 2271N 2400N 2409N 2415N 2423N 2430N 2436N 2440N 2453N 2473N 2496N 2560N 2564N 2570N 2575N 2590N 2597N 2819N 2843N 2871N 2875N 2880N 2894N 2995N 3080N 3215N 3220N 3228N 3298N 3300N 3326N 3330N 3364N 3378N 3385N 3400N 3500N 3589N 3600N 3610N 3785N 3936N 4000N 4170N 4224N 4325N 4400N 4428N 4500N 4510N 4600N 4750N 4820N 4879N 4940N 4942N 5181N 5708N 6620N 6988N 7000N 7315N 7584N 8873N 10382N 10865N 11240N 11250N 11640N 12712N 13263N 14873N 16500N 24060N Distanční délka --- 8mm 10mm 15mm 19mm 20mm 22mm 24mm 25mm 30mm 33.5mm 34mm 36mm 40mm 45mm 48mm 50mm 53mm 55mm 60mm 61mm 75mm Tuhost --- 10N/mm 11N/mm 12N/mm 15N/mm 16N/mm 17N/mm 19N/mm 20N/mm 22N/mm 23N/mm 25N/mm 26N/mm 27N/mm 28N/mm 28.5N/mm 29N/mm 30N/mm 32N/mm 35N/mm 36N/mm 37N/mm 37.5N/mm 38N/mm 39N/mm 40N/mm 41N/mm 42N/mm 42.5N/mm 43N/mm 44N/mm 45N/mm 46N/mm 47N/mm 48N/mm 49N/mm 50N/mm 51N/mm 52N/mm 53N/mm 54N/mm 55N/mm 56N/mm 57N/mm 59N/mm 60N/mm 63N/mm 64N/mm 65N/mm 66N/mm 67N/mm 69N/mm 70N/mm 73N/mm 74N/mm 75N/mm 76N/mm 77N/mm 79N/mm 80N/mm 81N/mm 82N/mm 85N/mm 87N/mm 88N/mm 89N/mm 90N/mm 91N/mm 92N/mm 94N/mm 95N/mm 100N/mm 105N/mm 106N/mm 107N/mm 108N/mm 109N/mm 110N/mm 111N/mm 112N/mm 113N/mm 114N/mm 117N/mm 118N/mm 119N/mm 120N/mm 121N/mm 125N/mm 126N/mm 127N/mm 131N/mm 133N/mm 134N/mm 138N/mm 139N/mm 140N/mm 142N/mm 143N/mm 145N/mm 146N/mm 147N/mm 148N/mm 149N/mm 150N/mm 153N/mm 156N/mm 157N/mm 158N/mm 160N/mm 162N/mm 163N/mm 164N/mm 165N/mm 168N/mm 170N/mm 171N/mm 173N/mm 175N/mm 176N/mm 178N/mm 180N/mm 183N/mm 184N/mm 185N/mm 187N/mm 190N/mm 196N/mm 200N/mm 201N/mm 202N/mm 203N/mm 204N/mm 205N/mm 208N/mm 209N/mm 211N/mm 213N/mm 215N/mm 216N/mm 217N/mm 218N/mm 220N/mm 225N/mm 230N/mm 238N/mm 240N/mm 241N/mm 243N/mm 244N/mm 247N/mm 250N/mm 252N/mm 253N/mm 254N/mm 257.5N/mm 260N/mm 264N/mm 266N/mm 267N/mm 274N/mm 276N/mm 278N/mm 280N/mm 282N/mm 284N/mm 288N/mm 289N/mm 292N/mm 293N/mm 295N/mm 296N/mm 298N/mm 299N/mm 300N/mm 302N/mm 303N/mm 320N/mm 323N/mm 325N/mm 328N/mm 330N/mm 333N/mm 334N/mm 338N/mm 340N/mm 341N/mm 342N/mm 343N/mm 345N/mm 346N/mm 349N/mm 356N/mm 361N/mm 379N/mm 380N/mm 389N/mm 391N/mm 399N/mm 400N/mm 401N/mm 402N/mm 404N/mm 410N/mm 422N/mm 423N/mm 440N/mm 444N/mm 445N/mm 450N/mm 453N/mm 455N/mm 460N/mm 470N/mm 473N/mm 480N/mm 488N/mm 494N/mm 498N/mm 532N/mm 540N/mm 554N/mm 555N/mm 559N/mm 571N/mm 579N/mm 580N/mm 583N/mm 600N/mm 640N/mm 648N/mm 650N/mm 654N/mm 678N/mm 682N/mm 699N/mm 707N/mm 718N/mm 720N/mm 785N/mm 793N/mm 803N/mm 810N/mm 817N/mm 857N/mm 860N/mm 873N/mm 903N/mm 960N/mm 1030N/mm 1100N/mm 1200N/mm 1324N/mm 1350N/mm 1600N/mm 1750N/mm 2330N/mm 2335N/mm 2600N/mm 3140N/mm 3600N/mm 5400N/mm Materiál trnu --- pozinkovaná ocel nerezavějící ocel ocel Délka závitu --- 6mm 10mm 18mm 20mm 23mm 28mm 37mm 41mm Rozměr H --- 3mm 4mm 6mm 8mm 10mm 12mm 16mm 35mm 45mm 51mm 53mm 60mm 62mm 65mm 68mm 79mm 80mm 89mm 92mm 95mm 110mm Rozměr D1 --- 4.5mm 8mm 8.5mm 12mm 14mm 16mm 18mm 20mm 22mm 25mm 30mm 31mm 32mm 33mm 42mm 44mm 45mm 46mm 49mm 60mm 64mm 80mm Vlastnosti mechanických prvků --- s vnitřním a vnějším závitem s vnitřním závitem na obou stranách s oboustranným vnějším závitem Zatížitelnost --- 1.05...2.15kN 50...130N 80...150N 80...250N 120...350N 150...350N 180...500N 270...550N 270...800N 400...800N 400...1150N 450...1350N 500...1000N 600...1550N 700...1400N 850...2000N 900...1750N 1750...3500N 3400...5100N Výrobci: všichni všichni BOSSARD (1) ELESA+GANTER (489) Nářadí pro montáž M3 Použití pro závitové vložky BOSSARD 1412574 - Tlumiče chvění skladem cena s DPH2 020 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-13 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-25 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-35 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-50 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-80 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-115 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-135 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-155 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 62mm Base dim 55x105mm ELESA+GANTER AVM-50-200 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 92mm Base dim 55x105mm ELESA+GANTER AVM-80-15 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč Spring vibration damper steel H 92mm Base dim 55x105mm ELESA+GANTER AVM-80-35 - Tlumiče chvění Jen na objednávku cena s DPH1 062 Kč 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... 41 » Zobrazit produktů Cookie Consent by Free Privacy Policy website Produkt Počet Email Vyčkejte na SMS zprávu, informuje Vás, až bude zboží připraveno k odběru. Pro Vaše dotazy se musíte registrovat
Vyhledávání v obchodu
[ rozšířené vyhledávání ]
Nákupní košík
Jméno
Heslo
[ registrovat ]
katalog seznam
Seřadit podle názvu ceny indetifikátoru Skladem
GSMCentrum.CZ » Mechanické prvky » Tlumiče chvění
BOSSARD 1412574 - Tlumiče chvění
skladem
cena s DPH2 020 Kč
ELESA+GANTER AVM-50-13 - Tlumiče chvění
Jen na objednávku
cena s DPH1 062 Kč
ELESA+GANTER AVM-50-25 - Tlumiče chvění
ELESA+GANTER AVM-50-35 - Tlumiče chvění
ELESA+GANTER AVM-50-50 - Tlumiče chvění
ELESA+GANTER AVM-50-80 - Tlumiče chvění
ELESA+GANTER AVM-50-115 - Tlumiče chvění
ELESA+GANTER AVM-50-135 - Tlumiče chvění
ELESA+GANTER AVM-50-155 - Tlumiče chvění
ELESA+GANTER AVM-50-200 - Tlumiče chvění
ELESA+GANTER AVM-80-15 - Tlumiče chvění
ELESA+GANTER AVM-80-35 - Tlumiče chvění
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... 41 »
Vyčkejte na SMS zprávu, informuje Vás, až bude zboží připraveno k odběru.
Pro Vaše dotazy se musíte registrovat