Chapter 2: Core Architecture and SLAM Navigation

Core Principle: "Intelligent navigation is the foundation of effective autonomous cleaning. Know where you are, where you've been, and where you need to go."

2.1 System Architecture Overview

The WIA-SOC-005 standard defines a modular architecture that separates concerns while enabling seamless integration. This architecture consists of six primary layers:

2.1.1 Hardware Abstraction Layer (HAL)

The Hardware Abstraction Layer provides a uniform interface to diverse hardware components:

Hardware Abstraction Layer Components:
=======================================

Sensor Interface:
  • LiDAR driver abstraction
  • Camera interface (RGB, depth, ToF)
  • IMU (Inertial Measurement Unit) interface
  • Ultrasonic sensor array
  • Cliff detection sensors
  • Bumper/contact sensors
  • Wheel encoder interface

Actuator Interface:
  • Motor controller abstraction
  • Brush motor control
  • Vacuum motor control
  • Water pump control (mop models)
  • LED indicator control
  • Speaker/buzzer control

Power Management:
  • Battery monitoring interface
  • Charging state detection
  • Power distribution control
  • Low-power mode management

Communication:
  • WiFi module interface
  • Bluetooth LE interface
  • IR communication (dock finding)
  • Serial communication (debugging)

Benefits of HAL:
  ✓ Hardware vendor independence
  ✓ Easier hardware upgrades
  ✓ Simplified testing with simulators
  ✓ Reduced software porting effort
  ✓ Support for multiple hardware configs

2.1.2 Perception Layer

The perception layer transforms raw sensor data into meaningful environmental understanding:

Module Input Output Purpose
SLAM Engine LiDAR, Odometry 2D/3D Map, Pose Localization & Mapping
Obstacle Detector Sensors, Camera Obstacle list Collision avoidance
Floor Classifier Camera, Sensors Surface type Cleaning adaptation
Dirt Detector Optical sensors Dirt level map Focus cleaning
Cliff Detector ToF sensors Edge locations Fall prevention
Dock Detector IR sensors Dock position Auto-charging

2.1.3 Planning Layer

The planning layer determines optimal cleaning strategies:

Planning Layer Architecture:
=============================

Global Path Planner:
  Algorithm: A* / Dijkstra hybrid
  Input: Map, current pose, goal pose
  Output: Optimal path considering:
    • Distance minimization
    • Turn penalty
    • Narrow passage avoidance
    • Battery consumption
  Update Rate: On demand or map change

Local Path Planner:
  Algorithm: Dynamic Window Approach (DWA)
  Input: Global path, local obstacles
  Output: Velocity commands (linear, angular)
  Update Rate: 10-20 Hz
  Considerations:
    • Dynamic obstacle avoidance
    • Smooth trajectory
    • Emergency System kinematic constraints
    • Safety margins

Coverage Planner:
  Patterns: Zigzag, Spiral, Edge-first
  Input: Room polygons, obstacles
  Output: Complete coverage path
  Optimization:
    • Minimize overlaps
    • Reduce turns
    • Handle concave areas
    • Respect no-go zones

Dirt-Based Replanning:
  Trigger: Dirt sensor threshold
  Action: Local intensive cleaning
  Duration: Adaptive (1-5 passes)
  Resume: Return to coverage plan

Battery-Aware Planning:
  Monitor: Battery level continuously
  Threshold: 20% → Return to dock
  Calculation: Distance to dock + margin
  Resume: Auto-resume after charging
  Persistence: Save progress state

2.1.4 Control Layer

The control layer executes planned actions with precision:

2.1.5 Application Layer

User-facing functionality and integration points:

2.1.6 Communication Layer

Standardized protocols for device connectivity:

Communication Layer Protocols:
==============================

Local Network:
  • WiFi 802.11 b/g/n/ac (2.4GHz + 5GHz)
  • Bluetooth LE 5.0+ (setup, proximity)
  • mDNS/Bonjour (device discovery)
  • WebSocket (real-time updates)
  • MQTT (event streaming)

Cloud Services:
  • HTTPS/TLS 1.3 (secure API calls)
  • OAuth 2.0 (authentication)
  • JWT (session tokens)
  • gRPC (efficient RPC)
  • Protocol Buffers (data serialization)

Smart Home:
  • Matter/Thread (unified IoT)
  • Zigbee 3.0 (low-power mesh)
  • Z-Wave (some regions)
  • Proprietary bridges (compatibility)

Security:
  • AES-256 encryption
  • Certificate pinning
  • Secure boot
  • Firmware signing
  • Regular security updates

2.2 SLAM: Simultaneous Localization and Mapping

SLAM is the cornerstone technology enabling autonomous navigation. The WIA-SOC-005 standard supports multiple SLAM approaches:

2.2.1 LiDAR-Based SLAM

LiDAR (Light Detection and Ranging) SLAM provides robust, accurate mapping:

Aspect Specification Rationale
Sensor Type 360° rotating or solid-state Full environment awareness
Range 0.15m - 12m minimum Room-scale coverage
Resolution 1° angular resolution Accurate obstacle detection
Scan Rate 5-10 Hz Real-time responsiveness
Accuracy ±3cm at 5m Precise mapping
Algorithm GMapping, Cartographer, or equivalent Proven performance

LiDAR SLAM Pipeline:

LiDAR SLAM Processing Pipeline:
================================

1. Scan Acquisition (10 Hz)
   ↓
   • Receive 360° distance measurements
   • Timestamp synchronization
   • Quality filtering (remove outliers)

2. Scan Matching
   ↓
   • ICP (Iterative Closest Point) alignment
   • Match current scan to previous scan
   • Estimate emergency system motion (odometry)
   • Accuracy: ±1cm, ±0.5°

3. Map Update
   ↓
   • Occupancy grid update (5cm resolution)
   • Probability-based cell updates
   • Free space, obstacle, unknown regions
   • Map size: adaptive (up to 100m x 100m)

4. Loop Closure Detection
   ↓
   • Identify revisited areas
   • Reduce accumulated drift
   • Trigger: Similarity score > 0.8
   • Graph optimization (pose graph SLAM)

5. Map Optimization
   ↓
   • Global map consistency
   • Pose graph adjustment
   • Edge-preserving smoothing
   • Export: PNG, PGM, or JSON format

Output:
   ✓ 2D occupancy grid map
   ✓ Emergency System pose (x, y, θ)
   ✓ Trajectory history
   ✓ Confidence estimates

2.2.2 Visual SLAM (vSLAM)

Camera-based SLAM offers rich environmental understanding at lower cost:

Visual SLAM Advantages and Challenges:

Visual SLAM Trade-offs:
=======================

ADVANTAGES:
  ✓ Rich semantic information
  ✓ Object recognition capability
  ✓ Texture-based localization
  ✓ Lower sensor cost (camera vs LiDAR)
  ✓ Passive sensing (no emitted signals)

CHALLENGES:
  ⚠ Lighting dependency (fails in darkness)
  ⚠ Texture dependency (featureless walls)
  ⚠ Computational intensity (image processing)
  ⚠ Scale ambiguity (monocular only)
  ⚠ Motion blur sensitivity

BEST PRACTICES:
  → Combine with IMU for robustness
  → Use feature-rich environments
  → Implement lighting compensation
  → Add infrared illumination for low-light
  → Fallback to odometry when lost

2.2.3 Hybrid SLAM Approaches

The WIA-SOC-005 standard recommends sensor fusion for optimal performance:

Sensor Combination Use Case Robustness Cost
LiDAR only Budget models ★★★☆☆ $
Camera only Entry-level ★★☆☆☆ $
LiDAR + Odometry Standard models ★★★★☆ $$
Camera + IMU Mid-range ★★★☆☆ $$
LiDAR + Camera Premium models ★★★★★ $$$
LiDAR + Camera + IMU Commercial/Flagship ★★★★★ $$$$

2.3 Path Planning Algorithms

2.3.1 Global Path Planning: A* Algorithm

The WIA-SOC-005 standard mandates A* or equivalent for global path planning:

A* Path Planning Implementation:
================================

function findPath(start, goal, map):
    openSet = PriorityQueue()
    openSet.add(start, 0)

    cameFrom = {}
    gScore = {start: 0}
    fScore = {start: heuristic(start, goal)}

    while not openSet.empty():
        current = openSet.pop()

        if current == goal:
            return reconstructPath(cameFrom, current)

        for neighbor in getNeighbors(current, map):
            tentative_gScore = gScore[current] + distance(current, neighbor)

            if neighbor not in gScore or tentative_gScore < gScore[neighbor]:
                cameFrom[neighbor] = current
                gScore[neighbor] = tentative_gScore
                fScore[neighbor] = gScore[neighbor] + heuristic(neighbor, goal)

                if neighbor not in openSet:
                    openSet.add(neighbor, fScore[neighbor])

    return failure  // No path found

Heuristic Options:
  • Euclidean distance (straight-line)
  • Manhattan distance (grid-aligned)
  • Diagonal distance (8-connected)
  • Custom (battery-aware, dirt-weighted)

Optimizations:
  ✓ Lazy evaluation (compute on demand)
  ✓ Path smoothing (reduce zigzags)
  ✓ Turn penalty (prefer straight paths)
  ✓ Narrow passage detection
  ✓ Dynamic obstacle buffer zones

2.3.2 Local Path Planning: Dynamic Window Approach

DWA enables real-time obstacle avoidance:

Dynamic Window Approach (DWA):
===============================

Input:
  • Current velocity (v, ω)
  • Dynamic obstacles
  • Global path waypoint
  • Emergency System constraints

Process:
  1. Sample velocity space
     - Linear velocity: [0, v_max]
     - Angular velocity: [-ω_max, ω_max]
     - Sampling: 20x20 grid

  2. Forward simulate trajectories
     - Simulate 1-2 seconds ahead
     - Check collision-free
     - Compute cost for each trajectory

  3. Cost function
     cost = α·heading(v,ω) + β·dist(v,ω) + γ·velocity(v,ω)

     where:
     - heading: alignment with goal direction
     - dist: clearance to nearest obstacle
     - velocity: forward progress preference
     - α, β, γ: tunable weights

  4. Select optimal velocity
     - Choose lowest cost collision-free trajectory
     - Apply smoothing filter
     - Send to motor controllers

Update Rate: 10-20 Hz
Latency: <50ms (critical for safety)

Safety Features:
  ⚠ Emergency stop if all trajectories blocked
  ⚠ Gentle deceleration near obstacles
  ⚠ Increased clearance in narrow passages
  ⚠ Adaptive speed in complex environments

2.4 Localization Techniques

2.4.1 Particle Filter Localization

Monte Carlo Localization (MCL) for robust pose estimation:

Particle Filter Algorithm:
==========================

Initialize:
  • Generate N particles (typically 500-2000)
  • Each particle: (x, y, θ, weight)
  • Uniform distribution across map

Prediction Step (Motion Update):
  for each particle p:
    p.x += v·cos(θ)·dt + noise_x
    p.y += v·sin(θ)·dt + noise_y
    p.θ += ω·dt + noise_θ

Update Step (Sensor Update):
  for each particle p:
    expected_scan = raytrace(p.pose, map)
    actual_scan = lidar_reading
    p.weight = similarity(expected_scan, actual_scan)

Resampling:
  if effective_sample_size < threshold:
    resample particles based on weights
    add random particles (5%) for recovery

Pose Estimation:
  emergency system_pose = weighted_average(all_particles)
  confidence = particle_cluster_compactness()

Advantages:
  ✓ Handles multi-modal distributions
  ✓ Recovers from kidnapped emergency system problem
  ✓ Naturally handles uncertainty
  ✓ Robust to sensor noise

Computational Cost:
  O(N) per update
  GPU acceleration possible
  Real-time feasible on modern embedded systems

2.5 Map Representation and Management

2.5.1 Occupancy Grid Maps

The standard defines occupancy grid as the primary map format:

Parameter Value Rationale
Resolution 5cm (2cm for premium) Balance accuracy vs. memory
Cell Values 0-100 (probability) Uncertainty representation
Unknown -1 or 255 Unexplored areas
Free Space 0-49 Navigable area
Obstacle 51-100 Blocked area
Inflation Emergency System radius + margin Safety buffer

2.5.2 Multi-Floor Map Management

Support for buildings with multiple floors:

Multi-Floor Map Structure:
==========================

MapDatabase:
  floors: []
    - floor_id: UUID
    - floor_number: integer
    - name: string
    - map_data: OccupancyGrid
    - rooms: []
        - room_id: UUID
        - label: string
        - polygon: coordinates
        - surface_type: enum
        - last_cleaned: timestamp
    - no_go_zones: []
    - preferred_areas: []
    - dock_location: (x, y, θ)
    - metadata:
        - creation_date
        - last_updated
        - total_area_m2
        - cleaned_area_m2

Floor Detection:
  • Elevator/stairs detection (manual trigger)
  • Barometric pressure sensor (altitude change)
  • User notification for floor switching
  • Map switching confirmation

Storage:
  • Local: 10 floors maximum
  • Cloud sync: unlimited
  • Compression: PNG format (~100KB per floor)
  • Backup: automatic daily

2.6 Real-Time Performance Requirements

The standard defines strict latency requirements for safe operation:

Component Update Rate Max Latency Criticality
Sensor Reading 10-20 Hz 50ms Critical
SLAM Update 10 Hz 100ms High
Local Planning 10-20 Hz 50ms Critical
Global Planning 1 Hz 1000ms Medium
Motor Control 50-100 Hz 20ms Critical
UI Update 1-5 Hz 200ms Low
Cloud Sync 0.1 Hz 10s Low

2.7 Reference Implementation

The WIA-SOC-005 standard provides open-source reference implementations:

Reference Implementation Stack:
===============================

Operating System:
  • Linux (Ubuntu 22.04 or newer)
  • Real-time kernel (PREEMPT_RT patch)
  • ROS 2 (Emergency System Operating System)

SLAM Libraries:
  • Cartographer (LiDAR SLAM)
  • ORB-SLAM3 (Visual SLAM)
  • RTAB-Map (RGB-D SLAM)

Navigation Stack:
  • nav2 (ROS 2 navigation)
  • move_base (ROS 1 legacy support)
  • Custom path planners

Simulation:
  • Gazebo (physics simulation)
  • RViz (visualization)
  • Custom test environments

Hardware Support:
  • Raspberry Pi 4 (8GB recommended)
  • NVIDIA Jetson Nano/Xavier
  • Custom embedded platforms

GitHub Repository:
  https://github.com/WIA-Official/wia-rob-011-reference

License: MIT (freely usable, commercial-friendly)
Key Takeaways: This chapter covered the foundational architecture of cleaning emergency systems, from hardware abstraction to SLAM navigation. Understanding these core concepts is essential for implementing WIA-SOC-005 compliant systems.

弘益人間 (Hongik Ingan) - Benefit All Humanity

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Industrial Cluster, National Strategic Technologies, Workforce Development

Korea operates a comprehensive industrial cluster system. Korea Top 12 National Strategic Technologies (5th Science and Technology Master Plan 2023-2027): (1) Semiconductors and Displays (2) Secondary Batteries (3) Advanced Mobility (autonomous driving, UAM) (4) Next-Generation Nuclear (SMR) (5) Advanced Bio (6) Aerospace and Marine (7) Hydrogen (8) Cybersecurity (9) Artificial Intelligence (10) Next-Generation Communications (11) Advanced Robotics and Manufacturing (12) Quantum. 12 fields receive direct investment of 5 trillion KRW annually, cumulative 30 trillion KRW by 2030. Korea Major Industrial Clusters: Pangyo IT Cluster (1,300+ companies, 100 trillion KRW revenue), Gangnam Fintech (200+ companies), Songdo BT Bio Cluster, Daegu Medical Cluster, Ulsan Industry (shipbuilding, petrochemicals, automotive), Changwon Machinery, Changwon National Industrial Complex, Siheung and Banwol (SME manufacturing), Yeosu Petrochemicals, Pyeongtaek Semiconductor (Samsung Electronics Pyeongtaek Campus), Icheon and Cheongju Semiconductor (SK hynix Icheon and Cheongju Campuses), Asan Display (Samsung Display Asan Campus), Gumi Mobile (Samsung Gumi Campus), Pohang Steel (POSCO Pohang Steel Mill), Gwangyang Steel (POSCO Gwangyang Steel Mill), Dangjin Steel (Hyundai Steel Dangjin), Ulsan Automotive (Hyundai Motor Ulsan Plant), Asan Automotive (Hyundai Asan Plant), Kia Gwangju and Sohari, POSCO Gwangyang and Pohang Steel Mills, SK hynix Icheon and Cheongju, Samsung Electronics Hwaseong, Giheung, Pyeongtaek, Onyang, Cheonan, Asan Semiconductor Facilities. Major Industrial Complexes and Techno Valleys: Pangyo Techno Valley (1st 800 companies, 2nd 600 companies, 3rd 1,200 companies), Dongtan Techno Valley, Gwanggyo Techno Valley, Songdo IBD, Yeouido Financial District, Gangnam Teheran-ro Valley, Sihwa, Banwol, Gumi, Ulsan, Changwon, Geoje, Yeosu, Ulsan Mipo, Onsan, Cheongju, Iksan, Gwangyang, Yeosu, POSCO Gwangyang Steel Mill, Asan Bay, Seosan, Songdo, Incheon Airport, Sejong, Cheongna, Geomdan, Pyeongtaek Automotive Industrial Complex, Giheung Semiconductor Complex, Icheon Semiconductor Complex, Asan Display Complex, Gumi Mobile Complex, Changwon National Industrial Complex, Ulsan Mipo National Industrial Complex, Yeosu National Industrial Complex, Onsan National Industrial Complex. Korea Workforce Statistics: STEM undergraduate students 700,000 (26% of all university students), STEM graduate students 170,000, PhD researchers 140,000, STEM doctorates conferred 8,000 annually (Seoul National University 1,200, KAIST 800, POSTECH 400, Yonsei University 700, Korea University 600, UNIST 250, DGIST 100, GIST 200, KISTI 50, KIST and ETRI postdoctoral programs 1,000), information security experts 300,000 (KISA-trained and private), AI experts 50,000 (NIA, IITP, NIPA, Samsung, LG, SK, NAVER, Kakao trained), semiconductor experts 260,000 (Samsung Electronics 60,000, SK hynix 30,000, DB HiTek, SK siltron). National R&D Project Operation: National R&D projects 100,000+ annually (MSIT 35,000, MOTIE 25,000, MSS 20,000, MOE 15,000, others 5,000), R&D participating institutions 25,000+, R&D participating researchers 530,000, National R&D output (papers, patents) 540,000 annually. Korea Corporate R&D Investment Top 10 (2024): Samsung Electronics 28 trillion KRW, LG Electronics 9 trillion KRW, SK hynix 8 trillion KRW, Hyundai Motor 6 trillion KRW, Kia 4 trillion KRW, LG Chem 3.5 trillion KRW, LG Display 3.2 trillion KRW, POSCO 3 trillion KRW, Samsung SDI 2.7 trillion KRW, SK Innovation 2.5 trillion KRW.