Menu
Your Cart

SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS

SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS
SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS
  • Price: TK 190,000/-
  • Stock: In Stock
  • Model: Castle Rack 6K
TK 190,000/-
Ex Tax: TK 190,000/-

Key Features

    • Model: Castle Rack 6K
    • Power Rating: 6000VA/5400W
    • Input Voltage Range: 110~275VAC
    • Output Voltage: 208/220/230/240 VAC
    • Backup time: Standard 15-20 minutes
    Specification
    General Feature
    BrandSANTAK
    ModelCastle Rack 6K
    Capacity6000 VA/5400 W
    Frequency50/60Hz±0.1Hz
    Display Features
    Display TypeLCD+LED: load rating/ battery capacity/ input/ output/ operating mode
    Output Features
    Backup TimeStandard 15-20 minutes
    Type of WavePure sinewave
    Technical Info
    Battery16PCS 12V 7Ah with EBM (External battery modules)
    Output Voltage208/220/230/240 VAC
    Physical Attributes
    ColorBlack
    Dimensions438* 86,3* 573 mm
    Weight14 kg
    Warranty Information
    Warranty02 Years
    Description

    SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS

    The SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS is a powerful and reliable backup solution designed for servers, data centers, networking systems, and critical industrial equipment. With a robust 6000VA/6000W capacity, this rack-mounted UPS ensures continuous power delivery and protection during power failures, voltage fluctuations, and unexpected surges.

    Built with True Double Conversion Technology, the SANTAK Castle Rack 6K Online UPS provides consistent, pure sinewave output, shielding your sensitive devices from harmful power disturbances. The seamless battery transition guarantees zero downtime, making it ideal for mission-critical operations and enterprise environments.

    Equipped with advanced microprocessor control, the SANTAK 6K Rack UPS ensures precise operation, quick response, and high efficiency. During a power outage, it offers sufficient backup time to secure important data and safely power down systems, reducing the risk of data loss and equipment damage.

    Comprehensive safety features like overload protection, short circuit protection, and battery deep discharge protection ensure complete reliability for your equipment. The LCD display delivers real-time monitoring of input/output voltage, battery status, and system load, making management intuitive and simple.

    With cold start functionality, the SANTAK Castle Rack 6K UPS can directly power your devices even when the main electricity supply is down. Its rack-mountable design, durable build, and energy-efficient performance make it a perfect choice for modern IT infrastructures and industrial applications.

    The SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS is engineered to deliver outstanding reliability, longer battery life, and top-tier performance for demanding environments.

    Buy SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS from Dear IT Solution

    Purchase the SANTAK Castle Rack 6K 6000VA Standard Backup Online UPS at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to safeguard your critical systems and keep operations running smoothly

    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};