You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is the proposed functionality that we're going to need for the Helmholtz Cage (HC) to work.
Overview
The Basilisk Astrodynamics Simulator is going to simulator OreSat0.5 in low earth orbit. It's going to simulate the position and attitude of the satellite. From position and attitude, we can come up with a magnetic field strength and direction that we can apply to OreSat0.5 inside the HC. The magnetometers can then measure this field, and deduce the orientation. We hope down to a degree or so. Then OreSat0.5 can fire up its magnetorquers (MTs) and torque against this field, which we hope to measure using a sensitive torque meter. This will demonstrate end-to-end operation of our magnetic attitude control. We can perhaps get more complicated later by simulating the torque in Basilisk, or by actually rotating the satellite on an air bearing.
Proposed Steps to get there
Control the current in the coils
Identify the serial ports for each power supply so we can identify which is the X, Y, and Z power supplies.
Talk to each power supply and set the voltage and current, and on/off state, for each supply.
Reverse the supply current by talking to the Arduino Nano that runs the X, Y, and Z H bridges.
Now turn this into a driver or function that takes in a current, and runs the power supplies and H bridges correctly
Get the data from the Magnetometer (MAG)
The three axis magnetometer is read by the Arduino nano and thrown out the serial port. Grab this data.
Calibrate the coils
Write a calibration script that enables us to calibrate the relationship between coils in the wire and the magnetic field in the cage. For example: with the coils off, read and average the local magnetic from the magnetometer. Then ramp each coil from -1A to +1A in steps of 100 mA and read the magnetometer at each point. Use scipi to fit a line to this ramp, and solve for the Y=AX+B ramp for the transfer function between current (X) and measured magnetic field (Y), including the local magnetic field offset (B).
Control the HC magnetic field
Use this calibration to set the magnetic field inside the cage to any arbitrary value given by a set of magnetic field strengths (e.g., X,Y,Z).
Let Basilisk run the HC
Work with the Basilisk wranglers to get the magnetic field strength (X,Y,Z fields) from basilisk. Probably over the network, but it doesn't matter how it gets there. We can use the Raspi, or we can even plug the system right into the MDC. Don't care.
Continuously run the HC based off of the Basilisk data.
The text was updated successfully, but these errors were encountered:
Here is the proposed functionality that we're going to need for the Helmholtz Cage (HC) to work.
Overview
The Basilisk Astrodynamics Simulator is going to simulator OreSat0.5 in low earth orbit. It's going to simulate the position and attitude of the satellite. From position and attitude, we can come up with a magnetic field strength and direction that we can apply to OreSat0.5 inside the HC. The magnetometers can then measure this field, and deduce the orientation. We hope down to a degree or so. Then OreSat0.5 can fire up its magnetorquers (MTs) and torque against this field, which we hope to measure using a sensitive torque meter. This will demonstrate end-to-end operation of our magnetic attitude control. We can perhaps get more complicated later by simulating the torque in Basilisk, or by actually rotating the satellite on an air bearing.
Proposed Steps to get there
The text was updated successfully, but these errors were encountered: