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

How to Use SSR - 40da: Examples, Pinouts, and Specs

Image of SSR - 40da
Cirkit Designer LogoDesign with SSR - 40da in Cirkit Designer

Introduction

The SSR - 40DA is a Solid State Relay (SSR) designed for high-performance switching applications. Unlike traditional electromechanical relays, the SSR - 40DA uses semiconductor devices to switch loads, offering faster response times, silent operation, and extended durability. This relay is capable of handling loads up to 40 amps, making it suitable for industrial, commercial, and home automation applications.

Explore Projects Built with SSR - 40da

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Temperature-Controlled Heating System with SSR and Titanium Resistor
Image of Wire Cut Four Slider 33-2 & 33-3 (Old): A project utilizing SSR - 40da in a practical application
This circuit is a temperature control system that uses a temperature controller to regulate a heating titanium resistor via a solid-state relay (SSR). The power transformer supplies the necessary voltage to the temperature controller, which in turn controls the SSR to manage the heating element.
Cirkit Designer LogoOpen Project in Cirkit Designer
PID Temperature Control System with Thermocouple and SSR
Image of IR: A project utilizing SSR - 40da in a practical application
This circuit is a temperature control system that uses a thermocouple to measure temperature and a PID controller to regulate it. The PID controller drives a solid-state relay (SSR) to control an external load, with power supplied through an AC inlet socket.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino-Controlled Multi-Stage Coin-Operated Car Wash System with LCD Display
Image of 4in1: A project utilizing SSR - 40da in a practical application
This circuit is a coin-operated control system for a multi-stage process, such as a car wash, managed by an Arduino microcontroller. It includes solid-state relays to control high-power devices, an LCD for user interface, and arcade buttons for user input. The system allows users to insert coins to activate different stages, with settings adjustable via a long-press menu.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-Based Wi-Fi Controlled Servo Gate System with Pushbutton Activation
Image of Blastgate: A project utilizing SSR - 40da in a practical application
This circuit uses an ESP32 microcontroller to control five servos and two solid-state relays (SSRs) based on the state of five pushbuttons. The servos are used to open and close gates, while the SSRs control two motors, which are activated depending on the number of active gates.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with SSR - 40da

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 Wire Cut Four Slider 33-2 & 33-3 (Old): A project utilizing SSR - 40da in a practical application
Temperature-Controlled Heating System with SSR and Titanium Resistor
This circuit is a temperature control system that uses a temperature controller to regulate a heating titanium resistor via a solid-state relay (SSR). The power transformer supplies the necessary voltage to the temperature controller, which in turn controls the SSR to manage the heating element.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of IR: A project utilizing SSR - 40da in a practical application
PID Temperature Control System with Thermocouple and SSR
This circuit is a temperature control system that uses a thermocouple to measure temperature and a PID controller to regulate it. The PID controller drives a solid-state relay (SSR) to control an external load, with power supplied through an AC inlet socket.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of 4in1: A project utilizing SSR - 40da in a practical application
Arduino-Controlled Multi-Stage Coin-Operated Car Wash System with LCD Display
This circuit is a coin-operated control system for a multi-stage process, such as a car wash, managed by an Arduino microcontroller. It includes solid-state relays to control high-power devices, an LCD for user interface, and arcade buttons for user input. The system allows users to insert coins to activate different stages, with settings adjustable via a long-press menu.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Blastgate: A project utilizing SSR - 40da in a practical application
ESP32-Based Wi-Fi Controlled Servo Gate System with Pushbutton Activation
This circuit uses an ESP32 microcontroller to control five servos and two solid-state relays (SSRs) based on the state of five pushbuttons. The servos are used to open and close gates, while the SSRs control two motors, which are activated depending on the number of active gates.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Industrial motor control and heating systems
  • Home automation for high-power appliances
  • Temperature control systems (e.g., ovens, HVAC)
  • Lighting control in commercial and residential settings
  • Switching resistive and inductive loads

Technical Specifications

Key Technical Details

Parameter Value
Model SSR - 40DA
Load Voltage Range 24V AC to 380V AC
Load Current Rating Up to 40A
Control Voltage Range 3V DC to 32V DC
Trigger Current ≤ 7.5mA
On-State Voltage Drop ≤ 1.6V
Isolation Voltage ≥ 2500V AC
Response Time ≤ 10ms
Operating Temperature -30°C to +80°C
Mounting Type Panel Mount

Pin Configuration and Descriptions

Pin Number Name Description
1 Input (+) Positive control signal input (3V DC to 32V DC)
2 Input (-) Negative control signal input (ground)
3 Load (AC1) AC load terminal 1 (connect to one side of the AC load)
4 Load (AC2) AC load terminal 2 (connect to the other side of the AC load or AC supply)

Usage Instructions

How to Use the SSR - 40DA in a Circuit

  1. Control Signal Connection:

    • Connect the positive control signal to the Input (+) pin.
    • Connect the ground of the control signal to the Input (-) pin.
    • Ensure the control voltage is within the range of 3V DC to 32V DC.
  2. Load Connection:

    • Connect one terminal of the AC load to the Load (AC1) pin.
    • Connect the other terminal of the AC load to the Load (AC2) pin or the AC power supply.
  3. Power Supply:

    • Ensure the AC load voltage is within the range of 24V AC to 380V AC.
    • Verify that the load current does not exceed 40A.
  4. Mounting:

    • Secure the SSR - 40DA to a heat sink or panel using screws to ensure proper heat dissipation.

Important Considerations and Best Practices

  • Heat Dissipation: The SSR - 40DA generates heat during operation. Use a heat sink or cooling fan to prevent overheating.
  • Load Type: Ensure the load is compatible with the SSR. For inductive loads, consider using a snubber circuit to suppress voltage spikes.
  • Isolation: Maintain proper isolation between the control and load sides to prevent electrical hazards.
  • Wiring: Use appropriately rated wires for the load current to avoid overheating or fire hazards.

Example: Connecting SSR - 40DA to an Arduino UNO

The SSR - 40DA can be controlled using an Arduino UNO. Below is an example circuit and code to toggle an AC load using the relay.

Circuit Diagram

  • Connect the Input (+) pin of the SSR to Arduino digital pin 9.
  • Connect the Input (-) pin of the SSR to the Arduino GND.
  • Connect the AC load to the Load (AC1) and Load (AC2) pins of the SSR.

Arduino Code

// Define the SSR control pin
const int ssrPin = 9;

void setup() {
  // Set the SSR pin as an output
  pinMode(ssrPin, OUTPUT);
}

void loop() {
  // Turn the SSR on (AC load ON)
  digitalWrite(ssrPin, HIGH);
  delay(5000); // Keep the load ON for 5 seconds

  // Turn the SSR off (AC load OFF)
  digitalWrite(ssrPin, LOW);
  delay(5000); // Keep the load OFF for 5 seconds
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. SSR Not Switching the Load:

    • Cause: Insufficient control voltage or current.
    • Solution: Verify that the control voltage is within the range of 3V DC to 32V DC and the trigger current is sufficient.
  2. Excessive Heat Generation:

    • Cause: High load current or inadequate heat dissipation.
    • Solution: Use a heat sink or cooling fan to manage heat. Ensure the load current does not exceed 40A.
  3. Load Not Turning Off Completely:

    • Cause: Leakage current in the SSR.
    • Solution: Check the load's minimum operating current. If necessary, add a resistor in parallel with the load to dissipate the leakage current.
  4. SSR Fails Prematurely:

    • Cause: Overvoltage or overcurrent conditions.
    • Solution: Ensure the load voltage and current are within the SSR's rated limits. Use a snubber circuit for inductive loads.

FAQs

Q1: Can the SSR - 40DA be used with DC loads?
A1: No, the SSR - 40DA is designed for AC loads only. For DC loads, use a DC-specific SSR.

Q2: Is the SSR - 40DA polarity-sensitive on the load side?
A2: No, the load side terminals (AC1 and AC2) are not polarity-sensitive.

Q3: Can I control the SSR - 40DA with a 3.3V microcontroller?
A3: Yes, the SSR - 40DA can be triggered with a control voltage as low as 3V DC, making it compatible with 3.3V logic.

Q4: Do I need an external power supply for the SSR?
A4: No, the SSR - 40DA does not require an external power supply. It operates directly from the control signal and load connections.