Menu
Your Cart

Lenovo L18M3PD1 Battery for ThinkPad T14s/T490s/T495s

Lenovo L18M3PD1 Battery for ThinkPad T14s/T490s/T495s
Lenovo L18M3PD1 Battery for ThinkPad T14s/T490s/T495s
  • Price: TK 3,900/-
  • Stock: In Stock
  • Model: L18M3PD1
TK 3,900/-
Ex Tax: TK 3,900/-

Key Features

    • Model: Lenovo L18M3PD1
    • Battery Type: Li‑Polymer, 3‑Cell (Samsung cells)
    • Voltage: 11.5 V (11.52 V)
    • Capacity: 57 Wh (~4,950 mAh)
    • Color: Black
    • Compatibility: ThinkPad T14s Gen 1, T490s, T495s
    • Warranty: 6 Months
Specification
General Feature
BrandLenovo
ModelL18M3PD1 (replaces 02DL013–02DL016, SB10K9765x series)
Power
Battery TypeLi‑Polymer, 3‑Cell (Samsung)
Battery Capacity57 Wh (~4,950 mAh)
Physical Attributes
ColorBlack
Compatible WithThinkPad T14s Gen 1, T490s, T495s
Warranty Information
Warranty6 Months
Description

OEM Power Up: Lenovo L18M3PD1 Battery for ThinkPad T14s/T490s/T495s

The Lenovo L18M3PD1 is a genuine or OEM lithium-polymer battery designed for use in ThinkPad T14s Gen 1 (2020), T490s, and T495s models. It has a rated voltage of 11.5 V and a capacity of 57 Wh (≈ 4,950 mAh), providing around 5–7 hours of runtime depending on usage.

Built with high-grade Samsung cells and smart protection circuitry, the L18M3PD1 safeguards your laptop against overcharging, overheating, and short circuits. It replaces Lenovo part numbers 02DL013–02DL016, 5B10W13909–13955, SB10K97651–97654, and more. Expect a secure fit and reliable OEM-grade performance, backed by a 6 month warranty depending on the vendor.


Why Choose Dear IT Solution – Genuine, Guaranteed, Delivered Fast

At Dear IT Solution, we source only authentic or OEM‑equivalent Lenovo batteries like the L18M3PD1, rigorously tested for performance and quality. Enjoy quick delivery across Bangladesh, secure packaging, and a 6-month local warranty. Trust us to revive your ThinkPad’s endurance with reliability.

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