there is one coil that is just an untouched coil factory wound, It's at the bottom on the back I used ferite welding rods for the core the rest of the three coils are wound around bolts and the Neo's are doubled up so 8mm of magnet! on both sides of the wheelN52 Neo's 25mm x 4mm coils made by me till I got bored of turning took pictures but not as many as I wanted getting those pics off of the camera later on about 1 hour when I rebuild out of more robust parts will be gettting pre-wound coils
got some dodgy arduino's too here they are
they don't come up with a com port in the arduino IDE don't know how to make them work
any how the lack of photo's will be sorted in the next few days due to time constraints couln't get all done that I wanted, tut!
#include <TimerOne.h>
const int pwmPin1 = 9; // PWM output for signal 1
const int pwmPin2 = 10; // PWM output for signal 2
const long frequency = 50; // Frequency in Hz
const long period = 1000000 / frequency; // Period in microseconds
const long deadTime = 50; // Dead time in microseconds
void setup() {
pinMode(pwmPin1, OUTPUT);
pinMode(pwmPin2, OUTPUT);
// Initialize Timer1
Timer1.initialize(period);
// Set up PWM outputs with complementary signals and dead time
Timer1.pwm(pwmPin1, 0); // Initialize with 0% duty cycle
Timer1.setPwmDuty(pwmPin2, 0);
// Set up the ISR to control the PWM signals and add dead time
Timer1.attachInterrupt(updatePWM);
}
void updatePWM() {
static bool toggleState = false;
// First half of the period (signal 1 is HIGH, signal 2 is LOW)
if (!toggleState) {
Timer1.setPwmDuty(pwmPin1, 511); // 50% duty cycle for signal 1
delayMicroseconds(deadTime); // Dead time
Timer1.setPwmDuty(pwmPin2, 511); // 50% duty cycle for signal 2
}
// Second half of the period (signal 2 is HIGH, signal 1 is LOW)
else {
Timer1.setPwmDuty(pwmPin2, 511); // 50% duty cycle for signal 2
delayMicroseconds(deadTime); // Dead time
Timer1.setPwmDuty(pwmPin1, 511); // 50% duty cycle for signal 1
}
toggleState = !toggleState; // Toggle between signal 1 and signal 2
}
void loop() {
// No logic in the loop. PWM signals are handled in the ISR.
}
you can see the capacitor bank in lots of the photo's!Hello,
You keep talking about a capacitor. What is the capacity and what is powering the capacitor?
A schematic would also help.
Bertus
awsome guy!! can you provide an example between to voltage sources please? I'm going for a session in less than an hour so if you can shed some light on how to get the arduino's working that would be great too! thank youUse the Phi(deg) parameter:
View attachment 62557

look at this see what you recon. As you see it does not work can anybody render it to full working order?
It’s only a simulator.
Real world characteristics kick in.
Temperature, tolerances, resistance, inductance, capacitance,reactance. It all makes a difference.
Is a driving simulator the same as driving on the road?.
look at this see what you recon. As you see it does not work can anybody render it to full working order? so the ac coils power the circuit I've provided both the schematics working one is "done_ski" and the one I want working is the "modelling machine with..."did you see this post I posted it like seconds before your comment?