Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use GB/T AC: Examples, Pinouts, and Specs

Image of GB/T AC
Cirkit Designer LogoDesign with GB/T AC in Cirkit Designer

Introduction

GB/T AC refers to a Chinese national standard for alternating current (AC) electrical systems. It defines the specifications for safety, performance, and interoperability of AC equipment, ensuring compatibility and reliability in various applications. This standard is widely used in industrial, commercial, and residential electrical systems in China.

Explore Projects Built with GB/T AC

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
ESP32C3-Based Smart AC Light Controller with Voltage Sensing
Image of plugins: A project utilizing GB/T AC in a practical application
This circuit appears to be a smart AC power control system. The XIAO ESP32C3 microcontroller is used to monitor AC voltage through the ZMPT101B module and to control a 12v Relay, which in turn switches an AC Bulb on or off. The Mini AC-DC module provides the 5V power required by the microcontroller and the relay, while the AC Wire provides the AC power to the system.
Cirkit Designer LogoOpen Project in Cirkit Designer
Wi-Fi Enabled AC Power Switch with RTL8720DN and 5V Relay
Image of Wiring Dehumidifier Controller: A project utilizing GB/T AC in a practical application
This circuit is designed to control an AC load using a 5V relay module, which is driven by a RTL8720DN microcontroller. The AC-DC PSU board converts 220V AC to 5V DC to power the microcontroller and the relay module. The microcontroller can switch the relay to turn the connected AC load on or off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Solar-Powered Home Energy System with Automatic Transfer Switch and Battery Backup
Image of CDP: A project utilizing GB/T AC in a practical application
This circuit is a solar power system with an automatic transfer switch (ATS) that manages power from both a solar panel and an AC supply. The solar panel charges a battery through a solar charge controller, and the power inverter converts the stored DC power to AC, which is then distributed through an MCB to a socket. The ATS ensures seamless switching between solar and AC power sources.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Motor Control with Voltage Monitoring and LED Indicator
Image of ckt: A project utilizing GB/T AC in a practical application
This circuit converts AC power to DC using a bridge rectifier to drive a 12V geared motor. It also includes a TP4056 module for charging a 3.7V battery, monitored by a mini digital volt/ammeter, and an LED indicator for power status.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with GB/T AC

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of plugins: A project utilizing GB/T AC in a practical application
ESP32C3-Based Smart AC Light Controller with Voltage Sensing
This circuit appears to be a smart AC power control system. The XIAO ESP32C3 microcontroller is used to monitor AC voltage through the ZMPT101B module and to control a 12v Relay, which in turn switches an AC Bulb on or off. The Mini AC-DC module provides the 5V power required by the microcontroller and the relay, while the AC Wire provides the AC power to the system.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Wiring Dehumidifier Controller: A project utilizing GB/T AC in a practical application
Wi-Fi Enabled AC Power Switch with RTL8720DN and 5V Relay
This circuit is designed to control an AC load using a 5V relay module, which is driven by a RTL8720DN microcontroller. The AC-DC PSU board converts 220V AC to 5V DC to power the microcontroller and the relay module. The microcontroller can switch the relay to turn the connected AC load on or off.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of CDP: A project utilizing GB/T AC in a practical application
Solar-Powered Home Energy System with Automatic Transfer Switch and Battery Backup
This circuit is a solar power system with an automatic transfer switch (ATS) that manages power from both a solar panel and an AC supply. The solar panel charges a battery through a solar charge controller, and the power inverter converts the stored DC power to AC, which is then distributed through an MCB to a socket. The ATS ensures seamless switching between solar and AC power sources.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of ckt: A project utilizing GB/T AC in a practical application
Battery-Powered Motor Control with Voltage Monitoring and LED Indicator
This circuit converts AC power to DC using a bridge rectifier to drive a 12V geared motor. It also includes a TP4056 module for charging a 3.7V battery, monitored by a mini digital volt/ammeter, and an LED indicator for power status.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Power distribution systems in residential, commercial, and industrial settings
  • Electrical equipment design and manufacturing
  • Testing and certification of AC devices for compliance with safety standards
  • Integration of AC systems in renewable energy solutions, such as solar inverters and wind turbines

Technical Specifications

The GB/T AC standard outlines the following key technical parameters for AC systems:

General Specifications

Parameter Value/Range Description
Voltage Range 220V (single-phase) / 380V (three-phase) Standard operating voltages in China
Frequency 50 Hz Standard AC frequency in China
Power Factor ≥ 0.8 Minimum acceptable power factor
Total Harmonic Distortion (THD) ≤ 5% Maximum allowable distortion in the AC waveform
Insulation Resistance ≥ 1 MΩ Minimum insulation resistance for safety

Pin Configuration and Descriptions

For devices adhering to the GB/T AC standard, the pin configuration typically follows the standard AC power plug and socket design. Below is a general description of the pin layout:

Pin Name Description Notes
Line (L) Live wire carrying the AC voltage Connected to the power source
Neutral (N) Return path for the current Completes the circuit
Earth (E) Ground connection for safety Prevents electric shock in case of faults

Usage Instructions

How to Use the Component in a Circuit

  1. Verify Voltage and Frequency Compatibility: Ensure that the device or system is designed to operate at 220V/50Hz (single-phase) or 380V/50Hz (three-phase) as specified by the GB/T AC standard.
  2. Connect the Wires Properly:
    • Connect the Line (L) wire to the live terminal of the device.
    • Connect the Neutral (N) wire to the neutral terminal.
    • Connect the Earth (E) wire to the ground terminal for safety.
  3. Use Proper Circuit Protection:
    • Install circuit breakers or fuses rated for the current and voltage of the system.
    • Use surge protectors to safeguard against voltage spikes.
  4. Test the System:
    • Measure the voltage and frequency using a multimeter to confirm compliance with the GB/T AC standard.
    • Check for proper grounding to ensure safety.

Important Considerations and Best Practices

  • Safety First: Always disconnect the power supply before working on the circuit to avoid electric shock.
  • Compliance: Use components and devices certified to meet the GB/T AC standard to ensure compatibility and safety.
  • Grounding: Proper grounding is essential to prevent electrical hazards and ensure system stability.
  • Load Balancing: For three-phase systems, distribute the load evenly across all phases to avoid overloading.

Example: Connecting a GB/T AC-Compliant Device to an Arduino UNO

While the Arduino UNO operates on DC power, you can use a relay module to control an AC device compliant with the GB/T AC standard. Below is an example code snippet for controlling an AC light using a relay module:

// Example: Controlling an AC light with Arduino and a relay module
// Ensure the relay module is rated for 220V/50Hz AC operation

const int relayPin = 7; // Pin connected to the relay module

void setup() {
  pinMode(relayPin, OUTPUT); // Set relay pin as output
  digitalWrite(relayPin, LOW); // Initialize relay to OFF state
}

void loop() {
  digitalWrite(relayPin, HIGH); // Turn ON the AC light
  delay(5000); // Keep the light ON for 5 seconds
  digitalWrite(relayPin, LOW); // Turn OFF the AC light
  delay(5000); // Keep the light OFF for 5 seconds
}

Note: Ensure proper isolation between the AC and DC sides of the circuit to prevent damage to the Arduino and ensure user safety.

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Voltage Mismatch:

    • Issue: The device does not operate or malfunctions.
    • Solution: Verify that the input voltage matches the GB/T AC standard (220V/50Hz or 380V/50Hz).
  2. Improper Grounding:

    • Issue: Electric shocks or unstable operation.
    • Solution: Check the ground connection and ensure it is properly installed.
  3. Overloading:

    • Issue: Circuit breakers trip frequently.
    • Solution: Reduce the load on the circuit or upgrade the breaker to a higher current rating, if appropriate.
  4. Harmonic Distortion:

    • Issue: Devices experience interference or reduced efficiency.
    • Solution: Use power conditioning equipment, such as filters, to reduce harmonic distortion.

Solutions and Tips for Troubleshooting

  • Use a multimeter to measure voltage, current, and resistance for diagnosing issues.
  • Inspect all connections to ensure they are secure and free from corrosion.
  • If using a relay module, verify that it is rated for the AC voltage and current of the load.
  • Consult the device's user manual for specific troubleshooting steps related to GB/T AC compliance.

By following this documentation, users can safely and effectively work with GB/T AC-compliant systems and devices.