Menu
Your Cart

SANTAK Castle C2KS 2000VA Long Backup Online UPS

SANTAK Castle C2KS 2000VA Long Backup Online UPS
SANTAK Castle C2KS 2000VA Long Backup Online UPS
  • Stock:
  • Model: Castle C2KS
TK 0/-
Ex Tax: TK 0/-

Key Features

    • Model: Castle C2KS
    • Power Rating: 2000VA/1800W
    • Input Voltage Range: 100 ~ 300 VAC
    • Output Voltage: 220/230/240VAC
    • Backup time depends on customer configuration
    Specification
    General Feature
    BrandSantak
    ModelCastle C2KS
    Capacity3000VA/2700W
    Frequency50 / 60 ±0.05Hz
    Display Features
    Display TypeLCD: load rating / battery capacity / input / output / operating mode
    Output Features
    Backup TimeDepends on customer configuration
    Type of WavePure sine wave
    Transfer TimeBattery Mode<-->InverterMode: 0ms Inverter Mode<-->BypassMode: 4ms (typical)
    Technical Info
    BatteryExternal batteries required
    Physical Attributes
    ColorBlack
    Dimensions102X327X390mm
    Weight6.4 kg
    Warranty Information
    Warranty02 Years
    Description

    SANTAK Castle C2KS 2000VA Long Backup Online UPS

    The SANTAK Castle C2KS 2000VA Long Backup Online UPS is a high-performance, long-backup power solution specially crafted to protect your servers, workstations, network devices, and sensitive electronics. With a powerful 2000VA capacity, this UPS guarantees uninterrupted power supply and stable performance during power outages, voltage spikes, and electrical disturbances.

    Designed with True Double Conversion Technology, the SANTAK Castle C2KS Online UPS delivers pure sinewave output, ensuring your critical equipment remains protected against any power irregularities. The seamless transfer to battery mode ensures zero interruption, making it perfect for critical IT environments and industrial applications.

    Featuring advanced microprocessor control, the SANTAK C2KS 2000VA UPS offers highly precise operation and fast response to power issues. During blackouts, it provides sufficient backup time to save important data and shut down systems securely, helping prevent data corruption and hardware damage.

    This UPS is equipped with a range of safety features including overload protection, short circuit protection, and deep battery discharge protection, offering comprehensive safety for your valuable devices. The integrated LCD display provides real-time monitoring of input/output voltage, battery health, and load status, making system management effortless.

    Thanks to its cold start capability, the SANTAK Castle C2KS UPS can start devices directly from battery power when mains electricity is unavailable. Its compact design, durable construction, and energy-efficient performance make it ideal for both office and industrial environments needing long backup power.

    The SANTAK Castle C2KS 2000VA Long Backup Online UPS is engineered to deliver outstanding reliability, extended battery life, and top-tier performance for all your essential applications.

    Buy SANTAK Castle C2KS 2000VA Long Backup Online UPS from Dear IT Solution

    Purchase the SANTAK Castle C2KS 2000VA Long 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 keep your systems protected and ensure continuous operation without interruptions

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