Quality & R&D Laboratory

  • 1. 落下測試機 .jpg

    Quality & R&D Laboratory

    Grand Dynasty Industrial(GDI) R&D Laboratory Equipment List: Includes precision measurement, material analysis, and environmental reliability testing instruments.




    Our in-house laboratory supports quality assurance through comprehensive testing and data-driven analysis. We perform material validation, mechanical testing, environmental simulation, and precision measurement to ensure consistent product performance including high-precision measurement systems such as Zeiss CMM. This enables reliable quality control from material selection to final production./div>

    ■ 1. Mechanical Testing

    Drop / tensile / impact / torque testing



    1. Drop Tester



    2. Computerized Tensile Testing Machine



    4. Impact Tester



    14. Ball Drop Tester



    16. Pencil Hardness Tester



    27. Torque Testing Machine



    32. Automatic Torque Testing Machine



    36. Stress Testing Machine



    37. High-Speed Impact Tester






    ■ 2. Material Analysis

    FTIR / DSC / TGA / MFI analysis



    3-1 FTIR



    3-2 FTIR



    7. Differential Scanning Calorimeter (DSC)



    8. Thermogravimetric Analyzer (TGA)



    17. Moisture Content Analyzer



    31. Heavy Metal Tester



    39. Melt Flow Index Testing






    ■ 3. Environmental & Reliability Testing

    UV weathering / temperature / humidity / salt spray



    18. Constant Temperature and Humidity Chamber



    19. High Temperature Testing Machine



    28. Positive and Negative Pressure Leak Tester



    29. Immersion Leakage Testing Device



    9. QUV Accelerated Weathering Tester



    24. Yellowing Resistance Tester



    25. RCA Abrasion Tester



    26. Abrasion Resistance Tester



    40. Salt Spray Tester






    ■ 4. Precision Measurement

    CMM / optical measurement / thickness / surface analysis



    5. Colorimeter



    6. MICRO-VU Precision Measurement



    10-1. High-Speed Camera



    10-2. High-Speed Camera



    11. 3D Measuring Machine



    12. Non-Contact Vision Measuring System



    15. Pantone Color Matching Light



    20. Integrating Sphere Luminous Flux



    21. Zeiss CMM



    22. 3D Surface Profiler



    23. Rockwell Hardness Tester



    30. Light Transmittance Tester



    33. Coating Thickness Gauge



    34. Destructive Coating Thickness Gauge



    35. Lens Surface Hardness Tester



    38. Reverse Engineering




    This ensures consistent quality, verified material performance, and reliable product durability across various applications.

    /* ── Category Section Layout ── */
    .category-section {
    margin-bottom: 50px;
    }

    .category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5em;
    font-weight: bold;
    color: #111;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    }

    .cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1a1a2e;
    color: #fff;
    font-size: 0.7em;
    border-radius: 4px;
    flex-shrink: 0;
    }

    .cat-icon-2 {
    background: repeating-linear-gradient(45deg,
    #333 0px, #333 4px,
    #fff 4px, #fff 8px);
    color: #333;
    }

    .cat-icon-3 {
    background: repeating-linear-gradient(45deg,
    #444 0px, #444 4px,
    #fff 4px, #fff 8px);
    color: #444;
    }

    .cat-icon-4 {
    background: repeating-linear-gradient(45deg,
    #555 0px, #555 4px,
    #fff 4px, #fff 8px);
    color: #555;
    }

    .cat-cn {
    font-size: 0.75em;
    font-weight: normal;
    color: #555;
    }

    .category-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 18px;
    padding-left: 4px;
    }

    .gdi-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 15px;
    justify-content: flex-start;
    perspective: 1000px;
    }

    /* ── Card Styles ── */
    .gdi-img-card {
    width: calc(20% - 15px);
    min-width: 150px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform-style: preserve-3d;
    text-align: center;
    display: flex;
    flex-direction: column;
    }

    .gdi-img-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 統一成正方形縮圖 */
    object-fit: contain;
    /* 確保產品圖片不被裁切 */
    display: block;
    padding: 10px;
    background: #f9f9f9;
    pointer-events: none;
    }

    .card-title {
    padding: 8px 5px;
    font-size: 13px;
    font-weight: bold;
    color: #004a99;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    @media (max-width: 1024px) {
    .gdi-img-card {
    width: calc(33.33% - 15px);
    }
    }

    @media (max-width: 600px) {
    .gdi-img-card {
    width: calc(50% - 15px);
    }
    }


    function openGdiLightbox(src) {
    const lb = document.getElementById('gdi-lightbox');
    const lbImg = document.getElementById('lb-img');
    lbImg.src = src;
    lb.style.display = 'flex';
    }

    function gdi3D(e, el) {
    const rect = el.getBoundingClientRect();
    const x = e.clientX - rect.left;
    const y = e.clientY - rect.top;
    const centerX = rect.width / 2;
    const centerY = rect.height / 2;
    const rotateX = ((y - centerY) / centerY) * -15;
    const rotateY = ((x - centerX) / centerX) * 15;
    el.style.transform = "rotateX(" + rotateX + "deg) rotateY(" + rotateY + "deg) scale(1.05)";
    }

    function gdiHover(el, color) {
    el.style.boxShadow = '0 0 20px ' + color;
    el.style.borderColor = color;
    }

    function gdiReset(el) {
    el.style.transform = "rotateX(0deg) rotateY(0deg) scale(1)";
    el.style.boxShadow = "0 2px 8px rgba(0,0,0,0.05)";
    el.style.borderColor = "#eee";
    }
    more