ATOM-40 Shake Table & the EERI Student Competition

At QuakeLogic, we believe that hands-on education is the foundation of innovation.

That’s why we are proud to announce the shipment of two ATOM-40 Portable Uniaxial Shake Tables—one to Texas A&M University and one to Florida Polytechnic University!

These high-performance, classroom-friendly shake tables are much more than machines. They are gateways to discovery, training tools for future earthquake engineers, and powerful enablers for students preparing for one of the most exciting global stages in seismic education—the EERI Seismic Design Competition.


Why the EERI Seismic Design Competition Matters

Every year, the Earthquake Engineering Research Institute (EERI) hosts its legendary Seismic Design Competition (SDC), bringing together the brightest young engineers from universities worldwide. The challenge? To design, build, and test scale models of tall buildings that must withstand seismic shaking on a shake table.

It’s not just a competition—it’s an unforgettable educational experience. Students work in teams, blending structural design, seismic analysis, and model-building creativity. When their models are placed on the shake table, the moment becomes electric. Will the building survive? Will it sway gracefully or crumble under simulated earthquake forces?

This competition ignites passion, teamwork, and innovation, preparing the next generation of engineers to tackle real-world seismic resilience challenges.


The ATOM-40: Built for Education, Perfect for EERI Training

To succeed at EERI’s Seismic Design Competition, students need tools that bring theory to life. That’s where the ATOM-40 Portable Uniaxial Shake Table shines.

🔧 Core Features:

  • Servo Motor Drive for precise and repeatable motion control
  • Top Table Dimensions: 40 × 40 cm—ideal for scale models of tall buildings
  • Capacity: ±1 g @ 50 kg payload, strong enough for robust classroom projects
  • Stroke: ±125 mm (250 mm total) for realistic seismic simulation
  • EASYTEST Windows-Based Software—intuitive and lab-ready, even for undergraduates

💡 Proven in Education:
At universities like Lehigh, the ATOM-40 has already become a staple for teaching structural dynamics, seismic response, and failure modes. Even with classes of 60+ students, these shake tables make every lab session interactive, exciting, and impactful.

By incorporating ATOM-40 into their curriculum, universities are not only teaching concepts—they are building confidence and sparking curiosity in their students.


Training for Victory at EERI

Imagine a team of students preparing for the EERI competition:

  • They’ve spent weeks designing a tall building model.
  • They’re learning to predict how earthquakes affect tall structures.
  • They’re running tests on the ATOM-40, fine-tuning their models, and gaining first-hand insight into failure modes, resonance, and structural stability.

By the time they step onto the competition floor, these students aren’t just guessing. They’re ready—prepared by real shake table experiments, equipped with confidence, and motivated to shine.

The ATOM-40 gives them the practical training edge that can transform preparation into performance, and performance into victory.


Accessories That Transform Learning

To further enrich education and competition training, the ATOM-40 comes with optional accessories that expand its capabilities:

  1. Plexiglass Modular Model Structure – visualize seismic response and collapse mechanisms.
  2. GeoBOX (SandBox) – explore soil liquefaction, lateral spreading, and landslides.
  3. Mini Digital Sensors + QL-VISIO software – monitor vibration and displacement in real time.
  4. Protective Transport Case – mobility and safety for labs, workshops, or competitions.

These add-ons make learning even more immersive, fun, and effective, giving students the tools to experiment, analyze, and innovate.


A Future Built on Knowledge and Resilience

At QuakeLogic, our mission is clear: to empower the next generation of engineers with the tools they need to create safer, more resilient communities. The ATOM-40 isn’t just about classroom experiments—it’s about preparing students to solve tomorrow’s seismic challenges, one shake at a time.

With the EERI Seismic Design Competition as their stage and the ATOM-40 as their training partner, students don’t just learn. They experience the thrill of discovery, the challenge of design, and the pride of resilience.

📩 Ready to prepare your students for success at the EERI competition and beyond? Contact us at sales@quakelogic.net today.

#QuakeLogic #ShakeTable #EarthquakeEngineering #STEM #EERI #SeismicDesignCompetition #Education #StructuralDynamics #EngineeringEducation #TexasAM #FloridaPoly #SeismicTesting #UniversityResearch #CivilEngineering


Galperin vs Orthogonal Seismometer Configurations: What’s the Difference and Why It Matters?

In seismic monitoring, triaxial seismometers are essential tools that capture ground motion in three dimensions. But not all triaxial sensors are designed the same way. Two dominant configurations exist: the orthogonal layout and the Galperin symmetric design. Understanding the difference between them is key when deciding how to choose a broadband seismometer or designing your seismic network.

Orthogonal Configuration: The Traditional Layout

Orthogonal seismometers use three sensing elements aligned at right angles:

  • X-axis (East-West)
  • Y-axis (North-South)
  • Z-axis (Vertical)

This configuration provides direct and intuitive measurements of ground motion along geographic axes. It is commonly found in strong-motion sensors and legacy seismic stations.

Pros:

  • Simple and direct mapping to geographic directions
  • Standard format for data processing
  • Useful in structural monitoring when orientation is controlled

Cons:

  • Requires precise alignment to true North and level installation
  • Uneven horizontal sensitivity
  • Prone to increased cross-axis coupling due to asymmetry

Galperin Configuration: The Modern Symmetric Design

First introduced by Evgeny Galperin, this configuration uses three identical sensors, each spaced 120° apart and tilted equally from vertical (typically ~35.26°). Rather than directly measuring along X, Y, and Z, these sensors capture intermediate components. Standard vertical and horizontal motion is then reconstructed through a simple mathematical transformation.

Galperin geometry forms the basis of modern broadband seismometers, including all broadband seismometers offered by QuakeLogic.

Pros:

  • Isotropic azimuthal sensitivity for uniform horizontal response
  • Mechanically balanced and compact design
  • Easier installation — no need for precise geographic orientation
  • Ideal for low-noise, high-fidelity broadband recording
  • Often includes self-leveling mechanisms

Cons:

  • Requires post-processing to derive standard components (Z, N, E)
  • May be unfamiliar to users expecting direct XYZ outputs

Coordinate Transformation in Galperin Systems

The raw sensor outputs (V1, V2, V3) from a Galperin layout are converted into vertical (Z) and orthogonal horizontal (X, Y or N, E) components through a transformation matrix. The result is functionally identical to orthogonal output — but with superior mechanical and dynamic performance.

To obtain standard seismic components — vertical (Z), north (N), and east (E) — from a Galperin-configured broadband seismometer, a mathematical transformation is applied to the raw outputs of the three equally tilted sensors.

Galperin sensors are mounted 120° apart in azimuth and tilted at approximately 35.26° from vertical. This symmetric geometry ensures equal sensitivity in all horizontal directions, making it ideal for high-fidelity broadband seismic recording.

The transformation to orthogonal components is handled by a fixed matrix derived from the Galperin geometry. Here’s a practical example in Python that demonstrates how to convert the raw Galperin outputs (V1, V2, V3) into Z, N, and E components:

import numpy as np

def galperin_to_orthogonal(V1, V2, V3):
    """
    Transforms Galperin outputs (V1, V2, V3) into orthogonal components (Z, N, E).
    
    Assumes Galperin sensors are tilted 35.26 degrees from vertical and 120 degrees apart in azimuth.
    """

    # Galperin angle in degrees and radians
    alpha_deg = 35.2643897  # approximately arccos(1/sqrt(3))
    alpha_rad = np.radians(alpha_deg)

    # Transformation matrix based on Galperin geometry
    # Source: Galperin 1985; commonly used form
    T = np.array([
        [np.cos(alpha_rad), np.cos(alpha_rad), np.cos(alpha_rad)],  # Z (vertical)
        [np.sin(alpha_rad), -0.5 * np.sin(alpha_rad), -0.5 * np.sin(alpha_rad)],  # N (North)
        [0, np.sqrt(3)/2 * np.sin(alpha_rad), -np.sqrt(3)/2 * np.sin(alpha_rad)]  # E (East)
    ])

    # Stack Galperin outputs into column vector
    V = np.array([V1, V2, V3])

    # Perform transformation
    Z, N, E = T @ V

    return Z, N, E

# Example usage
V1, V2, V3 = 0.1, 0.2, 0.15  # Example raw sensor outputs
Z, N, E = galperin_to_orthogonal(V1, V2, V3)

print("Vertical (Z):", Z)
print("North (N):", N)
print("East (E):", E)

This code is useful for researchers, engineers, or software developers integrating Galperin seismometers into their own data acquisition systems or post-processing pipelines.

Why Galperin Excels in Broadband Performance

Galperin-configured sensors offer lower cross-axis sensitivity, reduced internal noise, and azimuthal symmetry. This makes them particularly suited for high-precision seismological research.

Optimizing Your Network Design

Because Galperin-based instruments don’t require precise geographic orientation, they simplify field deployments and reduce installation error. This is especially helpful in large-scale projects and remote installations.

✅ QuakeLogic’s Seismometer Solution

At QuakeLogic, we exclusively offer Galperin-type broadband seismometers, engineered for superior sensitivity, symmetrical mechanical design, and fast, easy deployment. Our systems are:

  • Fully turnkey, with no licensing or calibration fees
  • Designed for broadband performance with low self-noise
  • Delivered with user-friendly software and optional remote monitoring tools
  • Compatible with standard seismic analysis workflows

Whether you’re deploying a temporary station or building out a national seismic network, Galperin configuration delivers the performance you need with the reliability you trust.

📞 Contact Us

Ready to upgrade your monitoring system? Reach out to our team at sales@quakelogic.net or browse our product line at products.quakelogic.net to explore QuakeLogic’s advanced broadband solutions.

Geobox: Revolutionizing Geotechnical Testing on Shake Tables

In the dynamic world of geotechnical engineering, precision, reliability, and adaptability are key to uncovering insights that drive innovation and safety. Geobox by QuakeLogic stands at the forefront of engineering excellence, meticulously designed to enhance the testing capabilities of shake tables for geotechnical research and experimentation.

Simulating Critical Geotechnical Phenomena

Geobox is engineered to simulate and analyze key geotechnical phenomena, empowering engineers and researchers to study complex soil-structure interactions under controlled seismic conditions. Its advanced design allows detailed testing of:

  • Liquefaction: Understanding how saturated soils lose strength during seismic events.
  • Lateral Spreading: Evaluating soil displacement caused by ground shaking and slope instability.
  • Slope Stability: Assessing the resilience of soil slopes under dynamic loading.

These capabilities make Geobox an essential tool for validating geotechnical models, advancing research, and improving infrastructure resilience in seismic-prone regions.


Seamless Integration with Shake Tables

A standout feature of Geobox is its compatibility with a wide range of shake tables offered by QuakeLogic. Whether for small-scale academic experiments or large-scale infrastructure projects, Geobox integrates effortlessly with various shake table systems.

Its easy-mount hardware simplifies setup, reducing time and effort required for deployment. Engineers can focus on their experiments without being bogged down by technical constraints, ensuring a seamless workflow from setup to data acquisition.


Customization for Project-Specific Needs

At QuakeLogic, we understand that no two projects are the same. That’s why the Geobox’s size can be fully customized to meet specific experimental requirements. Whether you’re simulating liquefaction on a small soil column or analyzing slope stability across a large soil mass, Geobox adapts to deliver accurate and reliable results.

This customization empowers researchers to align their testing processes with their project objectives, ensuring outcomes that are both meaningful and actionable. QuakeLogic produces Geobox in custom dimensions, from small-scale to large-scale configurations. Contact us today for a customized quotation.


Robust and Reliable Design

Built to withstand rigorous testing environments, the Geobox’s robust construction ensures durability and repeatability across multiple test cycles. Researchers can trust its performance, even under the most demanding experimental conditions, making it a valuable asset in both academic research labs and industry testing facilities.


Driving Innovation in Geotechnical Engineering

Geobox by QuakeLogic isn’t just a piece of equipment—it’s a gateway to innovation. By enabling detailed analysis of soil behavior under seismic stress, it empowers researchers and engineers to develop safer, more resilient infrastructure solutions.

With its versatility, precision, and robust design, Geobox is setting new standards for geotechnical testing, offering unparalleled value to educational institutions, research facilities, and industry partners worldwide.

Seeing is Believing! Experience the power of Geobox firsthand and discover how it can transform your geotechnical testing processes.

Contact QuakeLogic today to learn more about how the Geobox can be tailored to meet your project needs and drive your research forward. Visit GEOBOX product page by clicking HERE.

Proudly Made in the USA.

At QuakeLogic, we don’t just deliver products—we deliver solutions.

About QuakeLogic

QuakeLogic is a leading provider of advanced seismic monitoring solutions, offering a range of products and services designed to enhance the accuracy and efficiency of seismic data acquisition and analysis. Our innovative technologies and expert support help organizations worldwide to better understand and mitigate the impacts of seismic events.

Contact Information

Email: sales@quakelogic.net
Phone: +1-916-899-0391
WhatsApp: +1-650-353-8627
Website: www.quakelogic.net

For more information about our products and services, please visit our website or contact our sales team. We are here to help you with all your seismic monitoring needs.