Menu
Your Cart

Thermaltake TR2 S 550W 80 Plus Standard Power Supply

Thermaltake TR2 S 550W 80 Plus Standard Power Supply
Thermaltake TR2 S 550W 80 Plus Standard Power Supply
Thermaltake TR2 S 550W 80 Plus Standard Power Supply
Thermaltake TR2 S 550W 80 Plus Standard Power Supply
Thermaltake TR2 S 550W 80 Plus Standard Power Supply
  • Price: TK 4,000/-
  • Stock: In Stock
  • Model: 550W 80 Plus Standard Power Supply
TK 4,000/-
Ex Tax: TK 4,000/-

Key Features

    • Operation Temperature: 5℃ To +40℃
    • Fan Size: 120mm Fan
    • Voltage: 230v
    • Current: 550w
    Specification
    General Feature
    BrandThermaltake
    ModelThermaltake TR2
    Frequency50 Hz - 60 Hz
    Technical Info
    Wattage (W)550W
    Power
    Voltage230 Vac
    Warranty Information
    Warranty03 Years
    Description

    Thermaltake TR2 S 550W 80 Plus Standard Power Supply

    The Thermaltake TR2 S 550W 80 Plus Standard Power Supply is a high-quality PSU engineered to provide reliable and efficient power for a wide range of desktop systems. With a maximum power output of 550W, this PSU is an excellent choice for gaming rigs, professional workstations, and home PCs requiring dependable and steady power delivery.

    Certified with an 80 PLUS Standard rating, the TR2 S 550W ensures efficient energy use, reducing energy waste and lowering operating costs. Its high-efficiency performance ensures optimal power conversion, supporting both everyday computing tasks and demanding workloads. The single +12V rail design delivers stable power distribution to critical components, including modern CPUs and GPUs, ensuring smooth and uninterrupted operation.

    Equipped with a 120mm ultra-quiet cooling fan, the TR2 S 550W provides excellent heat dissipation while maintaining silent operation. Its non-modular design features durable pre-attached cables, allowing for straightforward installation and compatibility with most standard ATX cases. The sleeve cable design promotes better cable management, improving airflow within the case for efficient cooling.

    Built with multiple safety protections, including Over Voltage Protection (OVP), Over Current Protection (OCP), and Short Circuit Protection (SCP), the Thermaltake TR2 S 550W safeguards your system from power-related issues, enhancing the longevity of your components.

    BUYING SUGGESTIONS FROM DEAR IT SOLUTION

    At Dear IT Solution, we offer the Thermaltake TR2 S 550W 80 Plus Standard Power Supply at the best price in Bangladesh. This PSU is the perfect choice for users who prioritize performance, energy efficiency, and affordability.

    With its high efficiency, robust performance, and quiet operation, the TR2 S 550W ensures reliable power delivery for all your desktop needs. Whether you’re upgrading an existing system or building a new one, this power supply provides a balance of quality and value.

    Choose Dear IT Solution for the best quality product insured in Bangladesh, supported by our dedicated customer service team. We are committed to providing you with the most reliable and efficient components for your PC build.

    Upgrade your desktop’s power capabilities with the Thermaltake TR2 S 550W 80 Plus Standard Power Supply and experience superior stability and efficiency. Trust Dear IT Solution for your tech needs and enjoy unmatched service and product assurance.

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};