電流探頭
高靈敏度電流探頭使精確的功率和負(fù)載分析易如反掌。
在當(dāng)今的電子產(chǎn)品設(shè)計(jì)中,精確的電流幅度測(cè)量是實(shí)現(xiàn)最高電源功效的關(guān)鍵。 泰克的電流探頭可提供業(yè)界領(lǐng)先的測(cè)量靈敏度,可以測(cè)量低至1毫安的電流。這對(duì)于精確地測(cè)量小電流和頻率分量非常關(guān)鍵。最新的泰克示波器和電流探頭協(xié)同運(yùn)行,可以自動(dòng)將測(cè)量范圍擴(kuò)展到數(shù)安培,大大縮短測(cè)量設(shè)置時(shí)間。
var products = {};var matches = {};var filters = new Array(4);products["CT4"] = true;products["A621"] = true;products["A622"] = true;products["CT2"] = true;products["CT1"] = true;products["CT6"] = true;products["TCP305"] = true;products["P6021"] = true;products["P6022"] = true;products["TCP312"] = true;products["TCP202"] = true;products["TCPA300"] = true;products["TCPA400"] = true;products["TCP303"] = true;products["TCP0030"] = true;products["TCP404XL"] = true;products["TCP0150"] = true;products["A6302"] = true;products["A6303"] = true;products["A6304XL"] = true;matches["CT4"] = "A3,B4";matches["A621"] = "A3,B4";matches["A622"] = "A3,B3";matches["CT2"] = "A1,B1";matches["CT1"] = "A1,B1";matches["CT6"] = "A1,B1";matches["TCP305"] = "A2,B2";matches["P6021"] = "A1,B1";matches["P6022"] = "A1,B1";matches["TCP312"] = "A1,B2";matches["TCP202"] = "A3,B2";matches["TCPA300"] = "";matches["TCPA400"] = "";matches["TCP303"] = "A2,B4";matches["TCP0030"] = "A1,B2";matches["TCP404XL"] = "A1,B4";matches["TCP0150"] = "A2,B4";matches["A6302"] = "A1,B2";matches["A6303"] = "A3,B3";matches["A6304XL"] = "A4,B4";filters[0] = new Array(4);filters[0][0] = "B1";filters[0][1] = "B2";filters[0][2] = "B3";filters[0][3] = "B4";filters[1] = new Array(4);filters[1][0] = "A1";filters[1][1] = "A2";filters[1][2] = "A3";filters[1][3] = "A4";filters[2] = new Array();filters[3] = new Array();function hide(row) { if (document.layers) { document.layers[row].display = 'none'; } else if (document.all) { document.all[row].style.display = 'none'; } else if (document.getElementById) { document.getElementById(row).style.display = 'none'; }}function show(row) { if (document.layers) { document.layers[row].display = ''; } else if (document.all) { document.all[row].style.display = ''; } else if (document.getElementById) { document.getElementById(row).style.display = ''; }}function filter() { // default: all products will display for (p in products) { products[p] = true; } // loop through all columns and eliminate products that don't match ANY selections in a given column for (p in products) { for (f in filters) { // for each filter column, the product only needs to match ONE criteria my_product_column_match = true; // default to "match", this way, if NO checkboxes are checked, the product still displays for (criteria in filters[f]) { // if the box is checked ... if (document.getElementById(filters[f][criteria]) && document.getElementById(filters[f][criteria]).checked) { // and the product matches... if( (matches[p]).index0f(filters[f][criteria]) != -1 ) { my_product_column_match = true; break; // we only need ONE match, so once we've got it, stop checking criteria } else { my_product_column_match = false; } } } if ( my_product_column_match && products[p] == true) { // if the product matches any checkbox for that column, // AND it hasn't been excluded before, then display it products[p] = true; } else { products[p] = false; } } } // display all products that aren't filtered product_display_count = 0; for (p in products) { if (products[p] === true) { show('row' + p); product_display_count++; } else { hide('row' + p); } } if ( product_display_count == 0 ) { // we didn't have a single product match all criteria document.getElementById('compare_message').innerHTML = "No products match your selected criteria. Please de-select some criteria to view more options.
"; } else { document.getElementById('compare_message').innerHTML = ""; }}function restart() { window.location.reload();}function compare() { var productsToCompare = new Array(); for (p in products) { if ( document.getElementById(p).checked ) { productsToCompare.push(p); } } // if no products are selected, display error message if ( productsToCompare.length < 1 ) { alert ("請(qǐng)選擇產(chǎn)品進(jìn)行比較。"); } else{ window.location = '/cgi-bin/compare/compare.cgi?cat=current_zh&compare=' + productsToCompare.join(","); }}