DIYGadgets

Build | Fix | Re-use

DIY Magnetic Suspension Controled with Arduino

This Magnetic Suspension Demo System is a device that can suspend an object by magnetic force. A set of parameters to maintain an object in steady suspension state can be obtained via PID algorithm.
 

 

Step 1: Hardware

 

Part
Type
Quantity
Use

 

DC Regulated Power Supply
20v, 2A
1
Power Supply

 

UGN3503
3
Linear Hall Sensor For Magnetic Density Measurement

 

LM358N
1
Digital Current Amplifier

 

LM7809
1
To Supply 9v Output Voltage to Arduino

 

Resistance
100k, 2k
2, 2
For data acquisition circuit

 

Multi-turn Potentiometer
10k
2
For Setting Up No Load Voltage; Accurate Setup Is Required

 

Adjustment Potentiometer
10k
2
For Position Adjustment; High Accuracy Is Not Required

 

Lead
Stiff Core Is Recommended
Sufficient Quantity

 

Du Pont Connector
Sufficient Quantity

 

Du Pont Connector
Sufficient Quantity

 

Ring-Shaped Magnet
145*80*20
1
To Generate Repulsion Force To Suspend Floater

 

High-intensity Neodymium Iron Boron (NdFeB) Magnet
1
To Prepare Floater

 

One-yuan Coin
Balance Weight For Floater

 

Step 2: Hardware Preparation

a.Selection of Windings

The windings for this test are sourced ready-made from www.taobao.com (the Chinese ebay), but can also be self-made with enameled wire and winding hoop. Please be noted that there’re around 800 turns in one winding, and enameled wire with iron core shall not be selected for winding making.

b.Floater Selection

The floater shall be made of high-intensity neodymium iron boron (NdFeB) magnet. If possible, a layer of plastic bag shall be wrapped all over the floater during testing so as to protect it from damages caused due to collision between floater and baseplate magnet.

c.Circuit Connection

Since the linear Hall sensor is easy to damage during testing, it’s suggested to prepare several more for backup.

 

Step 3: Circuit Connection

 

During welding, it’s deemed easy to connect main control panel to amplifying circuit, while it’s a key step to fix the windings.

1) The ends with the same number in the two windings are connected to form a pair, and the other two ends are connected in the same way; as a result, the two sets of corresponding windings are in head-to-tail series connection, leading to repelling and attracting effect.

2)The Hall sensor shall be fixed on the axle of the winding, and right over the center point as much as possible.

3) One pair of windings will be connected to OUT1 and OUT2 of L298, and the other pair to OUT3 and OUT4 of L298N.

Please ensure that the specific windings connected to OUT1/2 and OUT3/4, and the specific leads to OUT1 or OUT2 are numbered and noted clearly, so that the matching will remain the same after disconnection and re-connection. In case the connections are mixed, you would have to adjust and do it again.(Marking numbers on windings will avoid to make mistakes- picture 3)

 

Step 4: Application of Mega168

There’re four types of IO interfaces in Android Mega, that is, analog input/output and digital input/output.

The analog input is marked as ANALOG IN, and can measure voltage at 0 – 5V; the reading range in the corresponding code is 0 – 1023; and the example code is shown below:

1. int readValue1 = analogRead(read1 Pin);

The analog output is actually the output of square waves on string, which generates
average voltage by means of duty-cycle of hi-and-low voltages; it’s marked as PWM on the circuit board; please be noted that though the output voltage is still 0 – 5V, the numeric value range is set to be 0 – 255; the example code is shown below:

1. analogWrite(power1Pin, Pid1.power);

For digital input and output, the mode of
base-pin shall be set up first; the example code is shown below:

1. pinMode(Pin1, OUTPUT); //Set to be output base-pin

2. pinMode(Pin2, INPUT); //Set to be input base-pin

3. digitalWrite(Pin1, HIGH); // Output hi-voltage

4. int v = digitalRead(Pin2); //Read the voltage of Pin2 and the returned result is either 0 or 1

All the 0 – 53 interfaces can be used for digital input/output interfaces, while only 2 – 13 are suitable for PWM analog output, and 0 – 15 for analog input, which are independent from the numbers stated above and will not mix up. It’s strongly suggested the connection numbers are noted at the beginning of the program collectively, so as to facilitate users to understand the connections straightward.

1. int adjust1Pin = ; // For regulating potentiometer on A direction

2. int adjust2Pin = 2; // For regulating potentiometer on B direction

3. int read1Pin = 4; // For connecting input A potentiometer

4. int read2Pin = 3; // For connecting input B potentiometer

5. int i1Pin = 36; // For connecting I1 interface on motor drive-plate

6. int i2Pin = 37; // For connecting I2 interface on motor drive-plate

7. int i3Pin = 39; // For connecting I3 interface on motor drive-plate

8. int i4Pin = 38; // For connecting I4 interface on motor drive-plate

9. int power1Pin = 5; // For connecting EA interface on motor drive-plate

10. int power2Pin = 6; // For connecting EB interface on motor-drive-plate

There’re four interfaces I1 to I4 in the above codes, which will be set to be digital output.

Application of L298N

L298N is directly connected to 20V power source, and supplies a 5V voltage to circuit by means of inboard power-connection. The circuit board has two current driving circuits in symmetry. Take I1, I2 and EA for an example,

1. In case of positive voltage output, when EA range is 0 – 255, the corresponding output voltage is 0 – +20V

2. I1=1;I2=0; //In case of negative voltage output, when EA range is 0 – 255, the corresponding output voltage is 0 – -20V

3. I1=0;I2=0; //Output voltage is always 0

4. I1=1;I2=1; //Output voltage is always 0

The digital outputs I1 and I2 can be used to control the voltage direction of windings, and analog output EA to control voltage. The functions of I3, I4 and EB are of the same. Moreover, please ensure that the grounding lines of Arduino, L298N and welding circuit shall be inter-connected as regulated.

A complete set of codes is hereby attached.

 

Step 5: PID Parameter Adjustment

The PID control can be briefly understood as a regulator control by means of P(proportional)-I(integral)-D(differential).

During adjustment, the regulation of P will lead to left-right swinging of floater in increasing magnitude. Some Kd can be added at beginning; when Kd is less than normal, the floater will look like vibrating, and while Kd is greater than normal, the swinging will not be stable and the floater might slip from side.

The principle of PID is not that complicated, but it could be a time-consuming process to adjust the PID parameters during practical testing. It’s suggested to add proper weight to floater when approaching the correct parameters, so as to achieve a remarkable stable effect.

Leave a Reply